Find users who have unlimited quota on a tablespace
Here is a query to find users that have unlimited quota on a tablespace.
Here is a query to find users that have unlimited quota on a tablespace.
select username,tablespace_name,max_bytes from dba_ts_quotas;If the max_bytes values is -1, that user has unlimited quota on the corresponding tablespace.