Free Newsletters:
Database Daily  
DBASupport

 The Knowledge Center for Oracle Professionals

Search DBAsupport:
 
HOME 11g Central 10g Central 9i Central 8i Central Oracle News Scripts FAQ OCP Zone Resources Technical Docs Tools & Utilities Forums
internet.com

» HOME
» FEATURES
    11g Central
    10g Central
    9i Central
    8i Central
    Oracle News
» COMMUNITY
    Scripts
    Forums
    FAQ
    OCP Zone
» RESOURCES
    Resources
    Technical Docs
    Tools & Utilities
    Tech Jobs
Marketplace Partners
Become a Marketplace Partner


internet.commerce
Be a Commerce Partner












internet.com
IT
Developer
Internet News
Small Business
Personal Technology

Search internet.com
Advertise
Corporate Info
Newsletters
Tech Jobs
E-mail Offers


   DBAsupport.com > Oracle > Oracle 9i Central > Listen Software Solutions' "How To" Series




Oracle Developer Jr - READY TO HIRE!
Next Step Systems
US-CA-Thousand Oaks

Justtechjobs.com Post A Job | Post A Resume

Listen Software Solutions' "How To" Series:

Performing an Incomplete Recovery

By David Nishimoto



Database Recovery

Creating the Backup Control File

Step 1: SQL=alter database backup controlfile {path&name} reuse

Recover the Database using the Backup Control File

Step 1: Use the Backup Control File as the control file name in the initialization file.

Step 2: Start the database up in Mount Mode.
SQL=startup pfile="d:\orant\database\initsid.ora" mount

Step 3: SQL=SQL=recover until cancel using backup controlfile

Recovery until a stable state. The problem with archive files is that they can put
your tablespace in a state that needs further recovery. Recovery until cancel
allows you to achieve an incomplete recovery and start your database.

Step 4: SQL=alter database open resetlogs


Back to the LSS "How To" Series Main Page