管理員權限用戶: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;--授予 查詢 任何字典