-- create the user
create user personnel_manage
identified by "mwq"
default tablespace users
temporary tablespace temp
profile default
quota 1024m on sysaux;
-- grant/revoke role privileges
grant aq_administrator_role to personnel_manage with admin option;
-- grant/revoke system privileges
grant administer any sql tuning set to personnel_manage with admin option;
Oracle建立新使用者
1.以dba身份登入 sqlplus sys eastcom orcl as sysdba 在命令視窗下 也可以使用pl sql 2.建立臨時表空間 create temporary tablespace zjph newuser temp tempfile e oracle product 10....
Oracle建立新使用者
黑視窗輸入 sqlplus as sysdba連線資料庫 輸入create tablespacetestdatafile d oracle oradata test.dbf size50m 建立資料庫表空間 test表空間名稱 d oracle oradata test.dbf表空間檔案路徑 檔名稱...
建立新使用者
新增新使用者 允許本地 ip 訪問 localhost,127.0.0.1 create user test localhost identified by 123456 允許外網 ip 訪問 create user test identified by 123456 為新使用者分配許可權 授予使用...