Thursday, October 15, 2009

Oracle: How to check quota on tablespace for users


To check the quota on tablespace for users you can use the following sql:
select username,
       tablespace_name,bytes/(1024*1024) as used_mb,
       max_bytes/(1024*1024) as max_mb
   from dba_ts_quotas;

No comments:

Post a Comment