Hi
You need to create a new temporary tablespace before dropping the default temporay tablespace.
Create a new temporary tablespace
then make it default temporary tablespaceCode:create temporary tablespace temp2 tempfile 'e:\oracle\oradata\orcl\temp2_01.dbf' size 500M;
now try to drop the temp tablespaceCode:alter database default temporary tablespace temp2;
HTH






Reply With Quote