database - List only Oracle Temp Table Space -
is there way list temp tablespaces in oracle? found following query listing tablespaces, need temp tablespaces.
sql> select tablespace_name dba_tablespaces; tablespace_name ------------------------------ system sysaux undotbs1 temp users
you can filter list contents column:
select tablespace_name dba_tablespaces contents = 'temporary' as described in oracle database online documentation dba_tablespaces.
Comments
Post a Comment