Problems with Datafile [message #55759] |
Fri, 14 February 2003 00:17 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
Vijay Singh Shekhawat
Messages: 2 Registered: February 2003
|
Junior Member |
|
|
I want to remove 3 datafiles named MISSING00017 etc from my DB. I have tried to recreate the controlfile after removing these file names. It works in mount mode but as soon as I open the DB, I the V$DATAFILE again shows me these three files.
|
|
|
|
Re: Problems with Datafile [message #55788 is a reply to message #55759] |
Sun, 16 February 2003 12:50 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
Olamide
Messages: 2 Registered: February 2003
|
Junior Member |
|
|
Remi while dont you try the method of multiplexing your control file before shuting down your database and then open your database in mount state,check the v$datafile and when you've seen whats up you can then open your database.Please make sure you check your alartsid.log to know if you have other problems first.
|
|
|
Re: Problems with Datafile [message #55844 is a reply to message #55759] |
Thu, 20 February 2003 00:26 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
Trifon Anguelov
Messages: 514 Registered: June 2002
|
Senior Member |
|
|
You can use this command:
SQL>ALTER DATABASE DATAFILE 'path/datafilename.dbf' OFFLINE DROP;
This will take the datafiles offline, but you still need them. If you delete then - Oracle will comlain that they are missing. To eliminate them completely you have to export the tablespace (in 9i there's such option), drop the tablespace, recreate it and then import the data back.
Hope that helps,
clio_usa
OCP - DBA
Visit our Web site
|
|
|