oracle数据库安装完后,如何创建用户?

如题所述

默认的:最高权限用户:system 密码:manager
管理员权限用户:sys 密码:change_on_install
普通用户:scott 密码:tiger
登陆管理员或超级管理员用户可以自己建立属于自己的用户 :
命令:create user userName identified by password;
创建用户名为: userName, 密码为 password 的用户
分配权限:
grant dba to userName; --授予DBA权限
grant unlimited tablespace to userName;--授予不限制的表空间
grant select any table to userName; --授予查询任何表
grant select any dictionary to userName;--授予 查询 任何字典
温馨提示:答案为网友推荐,仅供参考
相似回答