view the segment temp [message #150483] |
Thu, 08 December 2005 02:12 |
raddisonlee
Messages: 29 Registered: March 2005
|
Junior Member |
|
|
hi , i do select DISTINCT TABLESPACE_name from dba_segments ;
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
TABLESPACE_NAME
------------------------------
BLOCK
CWMLITE
DRSYS
EXAMPLE
ODM
RADDISON
SYSTEM
TOOLS
UNDOTBS1
USERS
XDB
11 rows selected.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
but cannot find what i want to ,i want to make it clear that how the temp segment work .
my d.b surely have the temp tablespace as follow ....
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
SQL> select tablespace_name from dba_tablespaces;
TABLESPACE_NAME
------------------------------
SYSTEM
UNDOTBS1
TEMP
CWMLITE
DRSYS
EXAMPLE
INDX
ODM
TOOLS
USERS
XDB
TABLESPACE_NAME
------------------------------
BLOCK
RADDISON
13 rows selected.
>>>>>>>>>>>>>>>>>>>>>>>>>>>
oracle 9.1.0.0 on win2k , thanks u
|
|
|
Re: view the segment temp [message #150485 is a reply to message #150483] |
Thu, 08 December 2005 02:25 |
kengheng
Messages: 5 Registered: July 2005
|
Junior Member |
|
|
hi, start from 9i, oracle introduce Oracle-managed files include the temporary tablespace.
you can get more info about your temp data file as below:
select * from dba_temp_files
|
|
|
|
|