您好,登錄后才能下訂單哦!
--創建表空間
create tablespace test_tps
datafile 'D:\app\Administrator\oradata\orcl\test_tps.dbf'
size 1500M
autoextend on next 5M;
--創建用戶并制定表空間
create user test_tps identified by test_tps
default tablespace test_tps;
--賦權限
grant connect,resource to test_tps;
grant create any sequence to test_tps;
grant create any table to test_tps;
grant delete any table to test_tps;
grant insert any table to test_tps;
grant select any table to test_tps;
grant unlimited tablespace to test_tps;
grant execute any procedure to test_tps;
grant update any table to test_tps;
grant create any view to test_tps;
--賦權DBA
grant sysdba to test_tps;
--撤回dba權限
revoke dba from 用戶
---------------------------------------------------------------
--授權命令:
--GRANT {DBA|RESOURCE|CONNECT} TO {PUBLIC|user-list}
--PUBLIC|user-list:全部或指定的用戶。
--三種權限居且僅居其一,事務處理過程中不要執行GRANT語句。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。