ORACLE 創建用戶,權限等

默認的:最高權限用戶:system  密碼:manager(我自己system)              
管理員權限用戶: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;--授予 查詢 任何字典

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章