Download as doc, pdf, or txt
Download as doc, pdf, or txt
You are on page 1of 2

How to solve ORA-25153 : Temporary Tablespace is Empty

The problem occurred when :

1) no datafile defined for temporary tablepsace


2) if datafile existed, set it as default temporary
How to solve problem (1) :

1) create temporary tablespace psaptmp tempfile


'/oracle/TCC/sapdata3/tmp_1/tmp.data1' size 1000M autoextend on next 500M
maxsize 5000M extent management local

2) alter database default temporary tablespace psaptmp

You might also like