Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Resize Temp Datafile

Status
Not open for further replies.

Gauci

IS-IT--Management
Jun 10, 2002
1
US
Oracle 7.3.4 - If you can, what is the syntax to resize a Temp Datafile in Tablespace Temp. Thx
 
Hello,
you should try this sql statement:

alter database
datafile 'name of datafile for tablespace temp'
resize >size<;

The datafile`s name can be found by:

select file_name,tablespace_name
from dba_data_files;

The size can be any number with extension M for megabytes
or K for kilobytes.

I hope it will help you.

Thorsten Thiel
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top