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

c - Bitwise operation with (signed) enum value -

xslt - Unnest parent nodes by child node -

YouTubePlayerFragment cannot be cast to android.support.v4.app.Fragment -