Jump to content

corrupted DBF file - no longer open


Recommended Posts

  • 2 weeks later...

The information about database data files and online redo log files along with their paths is stored in the control file(s). The information about the control file path is stored in initialization parameter file (pfile) or in server parameter file (spfile).
So if you moved your data files, online redo log files and/or control file(s) you should update the paths in the appropriate files to reflect the changes before you can mount and open the database.
First, you alter you parameter file with new information after you successfully started the instance:
http://www.dbf.viewertool.com/
SQL> startup nomount;
SQL> alter system set control_files = '/oracle/data/control.dbf';
Then you mount the database so control file can be read and written:
SQL> alter database mount;
After database is mounted you can use RENAME FILE command to set the new pats to data files and online redo log files:
http://www.geekstogo.com/forum/topic/352967-how-to-open-dbf-file/
SQL> alter database rename file '/u01/data/sysaux.dbf'
to '/oracle/data/sysaux.dbf';

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy