Jun 20, 2002 #1 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
Jun 25, 2002 #2 ththiel Technical User Jun 25, 2002 1 DE 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 Upvote 0 Downvote
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