授予用戶unlimited tablespcae的權限有兩種方式
grant unlimited tablespace to A;
alter user A quota unlimited on <tbs_name>;
第二種的授予方式會在 dba_ts_quotas中留下記錄
select * from dba_quotas;
第一種的授予方式,會有一個問題,如果回收用戶的dba權限,該權限也會“偷偷”地被回收,因此要注意。
--End
Mason
grant unlimited tablespace to A;
alter user A quota unlimited on <tbs_name>;
select * from dba_quotas;
--End
Mason