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;--授予 查詢 任何字典
上一篇DB2如何導出部分表結構
下一篇load讀什么文件