Home » RDBMS Server » Server Administration » Export Utility gives errors "Temporary Tablespace empty"
Export Utility gives errors "Temporary Tablespace empty" [message #64062] Sat, 11 December 2004 00:23 Go to next message
Chandan Singh Bhamra
Messages: 1
Registered: December 2004
Junior Member
I am running Export Utility but when it runs gives errors "Temporary Tablespace Empty". What could be the reason for giving this error ?

Regards

Chandan Singh

 

 
Re: Export Utility gives errors "Temporary Tablespace empty" [message #64063 is a reply to message #64062] Sat, 11 December 2004 00:28 Go to previous messageGo to next message
dilip kumar
Messages: 111
Registered: December 2003
Senior Member
Hi

which version your using and pls post the exact error msg...

the reason for this error temporary segments has not cleaned up properly it seems...

create a another temporary tablespace and assigned this tablespace as a default temporary tablespace for your current instance...this will work...

regards

D.Dilip
Re: Export Utility gives errors "Temporary Tablespace empty" [message #64064 is a reply to message #64063] Sat, 11 December 2004 03:27 Go to previous messageGo to next message
Nino
Messages: 6
Registered: November 2004
Junior Member
Hi,

I agree with Dilip. No sort segment could be allocated or something like that.
You cann create a new temporary tablespace and set it to default:
create temporary tablespace <temptbl> tempfile 'file' size ... ;
alter database default temporary tablespace <temptbl>;

or if you already have have a temporary tablespace sed to default, then it probably has no tempfile assigned.

select * from database_properties where property_name = ('DEFAULT_TEMP_TABLESPACE');

check out in the v$tempfile and v$tablespace the tempfile assignment to the temporary tablespace. You can check the v$sort_segment as well.

Hope I could help
Nino
Re: Export Utility gives errors "Temporary Tablespace empty" [message #64090 is a reply to message #64062] Tue, 14 December 2004 01:15 Go to previous message
Uwe
Messages: 260
Registered: February 2003
Location: Zürich, Switzerland
Senior Member
Sometimes after an Restore or other rebuild operations the Temporary tablespace lost its Datafile.
take a look into DBA Studio and take care that the temp has its tempfile. It is stil on Disc, but missing for oracle.
Simple adding the old file to the tablespace will help than.

regards
Uwe
Previous Topic: how to convert oracle table data into text file
Next Topic: no repostory & service name
Goto Forum:
  


Current Time: Fri Jan 24 23:20:03 CST 2025