Search notes:

DBA_TS_QUOTAS

dba_ts_quotas records tablespace quotas assigned to users.
select /*+ parallel(16) */
  username,
  tablespace_name,
  round(bytes/1024/1024/1024, 2) gb,
  max_bytes,
  blocks,
  max_blocks
from
  dba_ts_quotas
order by
  username,
  tablespace_name;
Github repository Oracle-Patterns, path: /Installed/data-dictionary/ts_quotas/show.sql

See also

ORA-01950: no privileges on tablespace '…'
Oracle's data dictionary

Index