用户系统权限
select * from dba_sys_privs where grantee='USER01' ;
用户默认表空间配额
select a.tablespace_name ,a.username ,a.bytes/1024/1024 ,a.max_bytes/1024/1024 from dba_ts_quotas a WHERE A.username='USER01';
在表空间TableSpace01给用户USER01 200M的限额
alter user USER01 quota 200M on TableSpace01 ;
用户表空间不限额,针对所有表空间(因为USER01的对象也可以建在其它表空间中)
grant unlimited tablespace to USER01 ;
阅读(2032) | 评论(0) | 转发(0) |