Mount Database [message #116733] |
Thu, 21 April 2005 13:47 |
seek
Messages: 3 Registered: March 2005 Location: Cuba
|
Junior Member |
|
|
I have the my DB files, now, but I don't have a Server, How I do to use these on a new database(*.CLT, *.LOG,*.DBF),
Thanks
|
|
|
Re: Mount Database [message #117078 is a reply to message #116733] |
Sun, 24 April 2005 10:59 |
girish.rohini
Messages: 744 Registered: April 2005 Location: Delhi (India)
|
Senior Member |
|
|
HI
You have got the entire database with you, provided all files are in consistent state.
Install Oracle software & then start the instance with initialization file referring to these control files & try opening database.
Then check for the error messages, if any encountered.
Regds
Girish
|
|
|
Re: Mount Database [message #117183 is a reply to message #116733] |
Mon, 25 April 2005 11:31 |
bmahireddy
Messages: 14 Registered: March 2005
|
Junior Member |
|
|
1. Edit the INIT.ORA file to change the path of "control_files"
2. STARTUP MOUNT PFILE=INIT.ORA
3. ALTER DATABASE RENAME FILE "old_file_name" TO "new_file_name" ;
4. ALTER DATABASE OPEN ;
5. SHUTDOWN ; -- Take a cold backup
|
|
|