計算機-->管理-->應用程序與服務-->(OracleOraDb11g_home1TNSListener 和 OracleServiceORCL 服務)->啓動服務ide
打開Oracle應用程序->輸入用戶名sys->輸入密碼->鏈接爲SYSDBA->SQL windowspa
建立用戶:code
1 Create user 用戶名 2 3 Identified by 密碼 4 5 Default tablespace users 6 7 Temporary tablespace temp 8 9 Quota unlimited on users;
修改用戶:對象
Alter user 用戶名 identified by 口令(密碼) default tablespace users //默認表空間 Temporary tablespace temp //臨時表空間 Quota unlimited on users
刪除用戶:blog
Drop user 用戶名[cascade]繼承
cascade 將會刪除這個用戶所擁有的全部對象。it
受權:io
授予用戶dba的權限table
Grant dba to 用戶;class
[with admin option] (權限繼承)