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

Popular posts from this blog

Upgrade php version of xampp not success -

amazon web services - S3 and apache mod_proxy with basic authentication -

powershell - This solution contains one or more assemblies targeted for the global assembly cache -