Thaks for your clarification. I knew that, but I was confused bcoz I was getting error in Oracle 8i while starting up my database.
I feel the difference is HOW I HAVE created those tablespaces. In 8i I created a Temp tablespace with a data file. I did not create a temp file. While in 9i I created with Tempfile clause.
If tempfile does not exist when the database is brought up, DBWR writes to a trace file indicating the tempfile is not found, but the database opens normally.
You can offline drop those tempfiles, drop the tablespace and create a new one.
HTH
Sanjay G.
Oracle Certified Professional 8i, 9i.
"The degree of normality in a database is inversely proportional to that of its DBA"
considering itīs a temp tablespace and tempfiles I dnt think need to recreate the tablespace when you lose a tempfile, I believe you simply add a tempfile to the temp tablespace (9i)
Originally posted by pando considering itīs a temp tablespace and tempfiles I dnt think need to recreate the tablespace when you lose a tempfile, I believe you simply add a tempfile to the temp tablespace (9i)
You are right pando, no need to drop tablespace.
Just do this.
Code:
alter database tempfile 'E:\ORACLE\ORA92\BUCHKU\TEMP01.DBF' drop;
alter tablespace temp add tempfile 'E:\ORACLE\ORA92\BUCHKU\TEMP01.DBF' size 10m;
Sanjay G.
Oracle Certified Professional 8i, 9i.
"The degree of normality in a database is inversely proportional to that of its DBA"
Bookmarks