Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Database cold dump

Status
Not open for further replies.

zircon06

Technical User
Jan 8, 2007
81
Can anyone help me with steps to take datbase cold dump

Thanks
 
Zircon,

Oracle provides a package called "RMAN" that you can read up about that can help you.

But, to do cold backups manually (as I do), here are the steps:

1) Before shutting down the database, have Oracle display a list of all of the files in your database (to which you can refer during step 3, below. Your vital database data files include:

a) Control files (select name from v$controlfile;)
b) On-line redo log files (select member from v$logfile;)
c) Database datafiles (select name from v$datafile;)
d) TEMP datafiles (select name from v$tempfile;)

2) Gracefully shutdown the database. (e.g., SHUTDOWN IMMEDIATE).

3) Use your operating system's "copy" command to copy each of your files, above, to your backup area of choice.
(e.g. "% cp <file_name(s)> <target location>)

4) Re-start your database. (e.g. STARTUP).

Let us know if you have additional questions.

[santa]Mufasa
(aka Dave of Sandy, Utah, USA)
[I provide low-cost, remote Database Administration services: www.dasages.com]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top