Restoration of cold backup on differnet server

Question: 1) I have cold backup of sunday using User managed backup on A server & all archivelogs upto wednesday on A server.
2) I transfer my cold backup & archivelogs on B server.
3) Now I need to recover my B server's database upto wednesday.
Note: 1) I have different location of datafiles,controlfiles.redologs on B server as of A server..
2) OS is AIX 5.3
3) Oracle databse version 10.2.0.4 on both server

duplicate thread
rman backup optimization question
Aman....

Similar Messages

  • Restoration of Cold backup on another server

    Hi ALL,
    Question: 1) I have cold backup of sunday using User managed backup on A server & all archivelogs upto wednesday on A server.
    2) I transfer my cold backup & archivelogs on B server.
    3) Now I need to recover my B server's database upto wednesday.
    Note: 1) I have same location of datafiles,controlfiles.redologs on B server as of A server..
    Please Help
    Regards

    user13364785 wrote:
    Hi ALL,
    Question: 1) I have cold backup of sunday using User managed backup on A server & all archivelogs upto wednesday on A server.
    2) I transfer my cold backup & archivelogs on B server.
    3) Now I need to recover my B server's database upto wednesday.
    Note: 1) I have same location of datafiles,controlfiles.redologs on B server as of A server..
    Please Help
    RegardsIf your OS is windows then you have to create OracleService using oradim utility,then create need directory for data/control/log files and according background/diag/trace also parameter file.
    After creating these directories startup mount database using STARTUP MOUNT PFILE='PFILELOCATION' then issue command RECOVER DATABASE USING BACKUP CONTROLFILE in this case oracle will read default location of archive logs and will apply,if this directory is different then main server then execute RECOVER DATABASE USING BACKUP CONTROLFILE UNTIL CANCEL and apply archive logs manually and open database with ALTER DATABASE OPEN RESETLOGS.

  • Restore from cold backup (rac server)

    Hi All,
    Oracle version : 10g
    OS : SunOS dixie1 5.10 Generic_118855-36 i86pc i386 i86pc
    I am having cold backup of RAC server (2 nodes), I want to restore from cold backup.
    The problem is that : when i performed the cold backup using rman at that time Oracle was having 3 ASM diskgroups.But unforunately that disk is no more in use due to some fault.
    Now my question is how can i restore from the cold backup as when i'll restore from the cold backup this will ask for the same ASM diskgroups.Even more if i creates the same diskgroup with the same name and same configuration then my doubt is that rman will allow me to restore the same from the cold backup as ASM disk header changed now ?
    Thanks,
    Vipin

    VipinK wrote:
    Hi All,
    Oracle version : 10g
    OS : SunOS dixie1 5.10 Generic_118855-36 i86pc i386 i86pc
    I am having cold backup of RAC server (2 nodes), I want to restore from cold backup.
    The problem is that : when i performed the cold backup using rman at that time Oracle was having 3 ASM diskgroups.But unforunately that disk is no more in use due to some fault.
    Now my question is how can i restore from the cold backup as when i'll restore from the cold backup this will ask for the same ASM diskgroups.Even more if i creates the same diskgroup with the same name and same configuration then my doubt is that rman will allow me to restore the same from the cold backup as ASM disk header changed now ?
    Yes.You can do these and restore/recover your database.First you need startup your ASM instance then create your ASM disk groups and do following:
    1.Edit pfile and change controlfile location to diskgroup(Consder that +dgr1)
    2.Restore controlfile to this disk group using backup of controlfiles(you say that is cold backup)
    rman target /
    /*Instance  need starting up from pfile*/
    startup nomount ;
    /*then restore controlfile,give full path of controlfile from coldbackup*/
    restore controlfile from 'coldbackup_location\coltrolfile';
    alter database mount;
    catalog start with 'coldbackup_location';
    backup as copy database format  '+dgr1';
    switch database to copy;
    alter database open;

  • How to restore the Password backup in sql server 2005

    How to restore the Password backup in sql server 2005

    Hello,
    THANKS............ BUT
    I executed this query 
    RESTORE DATABASE new_data1
    FROM DISK = 'd:\UK_DETAILS.bak'
    with password ='selfinity123'
    WITH MOVE 'UK_DETAILS.bak' TO 'D:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data\new_data1.mdf',
    MOVE 'UK_DETAILS.bak' TO 'D:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data\new_data1.ldf'
    I got the error 
    Msg 319, Level 15, State 1, Line 4
    Incorrect syntax near the keyword 'with'. If this statement is a common table expression or an xmlnamespaces clause, the previous statement must be terminated with a semicolon.

  • A question about restoring from cold backup(control file backup not clear)

    Hi,
    I had another question about restoring the cold backup. My database is in noarchivelog mode and after taking a consistent cold backup, all I need to do is to restore the backup right? -Why I got this question is because: when I backup my control file to trace, I see statements like this:-----
    -- Commands to re-create incarnation table
    -- Below log names MUST be changed to existing filenames on
    -- disk. Any one log file from each branch can be used to
    -- re-create incarnation records.
    -- ALTER DATABASE REGISTER LOGFILE '/uo1/app1/arch1_1_647102958.dbf';
    -- Recovery is required if any of the datafiles are restored backups,
    -- or if the last shutdown was not normal or immediate.
    RECOVER DATABASE
    -- Database can now be opened normally.
    ALTER DATABASE OPEN;
    My database is in noarchivelog mode now so don't know why these statements (of register the logfile) is there in the backup of control file? so when I restore the cold backup of this database, it will still work correct? (there is no logfile I have only CRD files in cold backup -no archive log files.)
    thanks
    Nirav

    Thanks for your inputs! It is most useful to me.
    Regards
    Nirav

  • How to restore cold backups on other server

    Hi all
    On Oracle9i production server, we have windows scheduled job to take the cold backups every day night. The size of the database is 2GB.
    Now, the cold backup consists of
    - Database files & Log files
    - Parameter file
    - Control file.
    I am required to check the validity of the cold backup we have. So, I need to restore the database in another server.
    So, please provide me the steps I need to do to restore the database.
    Thanks.

    See Chapter 3 "Performing User-Managed Restore Operations" of the
    "Oracle9i User-Managed Backup and Recovery Guide Release 2 (9.2)" (Part Number A96572-01)
    http://download.oracle.com/docs/cd/B10501_01/server.920/a96572/osrestore.htm#26029
    Best to start with Chapter 1 "Introduction ..."
    http://download.oracle.com/docs/cd/B10501_01/server.920/a96572/intro.htm#431510
    and Chapter 2 "Making User-Managed Backups"
    http://download.oracle.com/docs/cd/B10501_01/server.920/a96572/osbackups.htm#10000
    If you are on Windows note that besides installing the sofwtare you must also create the Oracle Service before you restore a database backp to another server.
    See Chapter 6 "Backing Up and Recovering Database Files" in the Oracle Database Administrator's Guide for Windows
    http://download.oracle.com/docs/cd/B10501_01/win.920/a95491/backup.htm#1004903

  • Database Restore from COLD Backup

    Dear all,
    I .m trying to restore a production database from a COLD backup. Before the COLD BAckup, we have take a HOT backup as usual and then shutdown the database to perform the Cold Backup.
    After restirong all the oracle files and arch redo log, i have tried to restart the datbase but it failed with the followgin error message:
    SVRMGR> connect internal
    Connected.
    SVRMGR> startup
    ORACLE instance started.
    Total System Global Area 625729520 bytes
    Fixed Size 69616 bytes
    Variable Size 133795840 bytes
    Database Buffers 491520000 bytes
    Redo Buffers 344064 bytes
    Database mounted.
    ORA-01113: file 1 needs media recovery
    ORA-01110: data file 1: '/usr/oracle/8.1.6/disk1/IF1/system01.dbf'
    SVRMGR> exit
    Server Manager complete.
    root@dbserver#su - oracle
    Sun Microsystems Inc. SunOS 5.8 Generic Patch October 2001
    Then i have recovered but it seems that the Oracle process do not started and here is what i have found in alert log file:
    Errors in file /usr/oracle/8.1.6/admin/IF1/bdump/if1_smon_609.trc:
    ORA-00600: internal error code, arguments: [4194], [52], [52], [], [], [], [], []
    Mon Mar 8 11:42:46 2004
    Recovery of Online Redo Log: Thread 1 Group 1 Seq 29954 Reading mem 0
    Mem# 0 errs 0: /usr/oracle/8.1.6/disk2/IF1/redo1a.rdo
    SMON: terminating instance due to error 600
    Instance terminated by SMON, pid = 609
    WARNING! Recovering data file 1 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 2 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 3 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 4 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 5 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 7 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 8 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 9 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 26 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 27 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 29 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 31 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 34 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 36 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 40 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 43 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 49 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 53 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 54 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 55 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    WARNING! Recovering data file 58 from a fuzzy backup. It might be an online
    backup taken without entering the begin backup command.
    Media Recovery Log
    Could someone explain to me what i did wrong?
    Thank you
    ORA-01113
    ORA-01110
    ORA-00600: internal error code, arguments: [4194], [52], [52], [], [], [], [], []

    Please do not confuse between the backup copies you have. Ensure that you have the latest copy whether cold or hot. If you have COLD copy then simply replace all the data files, redo log files, and the control files and start the database it should start. I do not understand your back up strategy because if you have a Hot backup then why do you need a cold backup. Please let me know in what mode your database is running?
    Regards,
    DJ

  • Partial restore from Cold backup

    Hi,
    I want to create a copy of our dev database to another server.
    We have Oracle 10.2.0.4 server running on Solaris 10 OS.
    This database is @ 120GB in size and has got lots of application data.
    Now I want to create a copy of this DB without having the application data.
    Can I do the following?
    1. Take cold backup of this database.
    2. copy the oracle binaries, controlfile, logfile to target server.
    3. copy the datafiles only for SYSTEM, UNDO, TEMP and SYSAUX tablespace to target.
    4. restore / create the new database? - will you pls provide me the steps for this?
    Thanks,
    DR

    Hi,
    In order to create a clone of your dev database trough the copy procedure you have to follow these steps:
    1. Take a cold backup of your database files (and i mean ALL the files: controlfile, data files, etc)
    2. Take a "cold" backup of oracle binaries (with your instance down, copy $ORACLE_HOME dir)
    3 You have to ensure you have the directory structure in the new server.
    4. The new server must accomplish with all the libraries requiered for clean installation (that's because you have to relink oracle binaries)
    5. Once the oracle binaries are in $ORACLE_HOME, run "relink all". If everything is fine, you don't have to see any errors; if not, check the log.
    6. After a succesful relink, you have to copy the database files on their corresponding directories.
    7. Start the instance.
    I know, it's not a friendly process, but it works.
    I offer you another way.
    1. Install another engine (same as your dev server).
    2. Clone your dev database with one of the following procedures:
    2.a. RMAN Clone
    2.b. Directly import with oracle data pump.
    regards

  • ORA-00313: open failed for members during restore from COLD backup

    Hi all,
    I took a cold backup of an 11.1 database using RMAN (database in mount state).
    I used the following command to restore it:
    restored the controlfile and then
    RESTORE DATABASE FROM TAG 'TAGxxxxxxxxxx';
    Now I'm restoring it and it's taking too much time. When checking alert log it says:
    ORA-51106: check failed to complete due to an error. See error below
    ORA-48318: ADR Relation [HM_FINDING] of version=3 cannot be supported
    ORA-00313: open failed for members of log group 1 of thread 1
    ORA-00312: online log 1 thread 1: '/oracle1/oradata/******/redo1_02.log'
    ORA-27037: unable to obtain file status
    HPUX-ia64 Error: 2: No such file or directory
    Additional information: 3
    RMAN is still in progress, why does it complain about redo?
    I'm not doing recovery since it was a cold backup.
    Thanks in advance.

    Hi Michael,
    Yes, it's the correct one because it says "full restore complete":
    ORA-00312: online log 1 thread 1: '/oracle1/oradata/******/redo1_01.log'
    ORA-27037: unable to obtain file status
    HPUX-ia64 Error: 2: No such file or directory
    Additional information: 3
    Tue Apr 30 14:38:14 2013
    Full restore complete of datafile 32 /oracle1/oradata/******/apr_sesm_index_01.dbf. Elapsed time: 1:25:42
    checkpoint is 12652187135448
    last deallocation scn is 12651877642745
    Tue Apr 30 15:38:04 2013
    Full restore complete of datafile 34 /oracle1/oradata/******/apr_stage_data_01.dbf. Elapsed time: 6:42:52
    checkpoint is 12652187135448
    last deallocation scn is 12651877637877
    thanks,

  • Cold Backup on windows Server

    Hi All;
    OS: Windows
    DB: 10.2.0.3
    I am trying to schedule a cold backup, I was wondering if I can just down the oracle database service and then directly copy the files using copy command and post the completion of copy of the files I will up the oracle services.
    Will this method work I cannot test the same as I do not have access to the server right now.
    Regards,
    Sphinx

    Yes you can, by default stopping the service will execute a SHUTDOWN IMMEDIATE. To check this, look at the registry keys named something like
    HKEY_LOCAL_MACHINE\SOFTWARE\Oracle\KEY_OraDb12c_home1\ORA_ORCL_SHUTDOWN
    HKEY_LOCAL_MACHINE\SOFTWARE\Oracle\KEY_OraDb12c_home1\ORA_ORCL_SHUTDOWNTYPE
    and you'll see the settings.
    John Watson
    Oracle Certified Master DBA
    http://skillbuilders.com

  • ORA-00314 -  Restoring from Cold Backup.  ( Redologs on Raw Disk startup)

    Greetings,
    We're running Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production ( Solaris Sparc )
    we've recently switched to redologs on raw disks to improve DB write performance. Have taken a cold backup of db , But db denies to open normally after restoration.
    Any ideas what could be wrong? and how to fix this?
    TIA,
    SQL> startup;
    ORACLE instance started.
    Total System Global Area 1.0737E+10 bytes
    Fixed Size 1996520 bytes
    Variable Size 3640658200 bytes
    Database Buffers 7063207936 bytes
    Redo Buffers 31555584 bytes
    Database mounted.
    ORA-00314: log 1 of thread 1, expected sequence# doesn't match
    ORA-00312: online log 1 thread 1: '/dev/rdsk/c1t4d0s3'
    ORA-00312: online log 1 thread 1: '/dev/rdsk/c1t5d0s3'

    Try this ..
    First i create a backup of control file:
    SQL> alter database backup controlfile to trace;
    Database altered.
    Then i check udump directory. There are some trace files To find out which one contains control file, i simply make a text search :
    testdb oracle@aurora:/data06/app/oracle/admin/testdb/udump> grep 'CREATE CONTROLFILE REUSE DATABASE' *.*
    testdb_ora_181267.trc:CREATE CONTROLFILE REUSE DATABASE "testdb" NORESETLOGS NOARCHIVELOG
    testdb_ora_181267.trc:CREATE CONTROLFILE REUSE DATABASE "testdb" RESETLOGS NOARCHIVELOG
    I execute the commands which is included with CREATE CONTROLFILE REUSE DATABASE
    SQL> startup nomount
    ORACLE instance started.
    Total System Global Area 314572800 bytes
    Fixed Size 1302944 bytes
    Variable Size 106700384 bytes
    Database Buffers 205520896 bytes
    Redo Buffers 1048576 bytes
    SQL> CREATE CONTROLFILE REUSE DATABASE "testdb" RESETLOGS NOARCHIVELOG
    2 MAXLOGFILES 4
    3 MAXLOGMEMBERS 4
    4 MAXDATAFILES 1000
    5 MAXINSTANCES 1
    6 MAXLOGHISTORY 4544
    7 LOGFILE
    8 GROUP 1 '/data07/oradata/testdb/redo01.log' SIZE 50M,
    9 GROUP 2 '/data07/oradata/testdb/redo02.log' SIZE 50M,
    10 GROUP 3 '/data07/oradata/testdb/redo03.log' SIZE 50M
    11 DATAFILE
    12 '/data07/oradata/testdb/system01.dbf',
    13 '/data07/oradata/testdb/undo01.dbf',
    14 '/data07/oradata/testdb/sysaux01.dbf',
    15 '/data07/oradata/testdb/users01.dbf',
    16 '/data07/oradata/testdb/data01.dbf',
    17 '/data07/oradata/testdb/work01.dbf',
    18 '/data07/oradata/testdb/ascs01.dbf',
    19 '/data07/oradata/testdb/uccs_data01.dbf',
    20 '/data07/oradata/testdb/uccs_index01.dbf'
    21 CHARACTER SET WE8ISO8859P9
    22 ;
    Control file created.
    Then recover db.
    SQL> RECOVER DATABASE USING BACKUP CONTROLFILE

  • Restoring inconsistent cold backup

    Hello all.
    Here's the scenario: I have a 9.2.0.1 database, in noarchivelog mode, running on Windoze XP. While the database is running, I took a backup of all the datafiles, control files and online logs using copy and paste on windoze. After the copy was done, I have shut down the database. I copied back into the original location the backup of the datafiles I made earlier.
    My question is: How I go about to restore this database ? I dont care wether it is consistent or not, I just want to open it to make an export out of it
    Things I have tried so far unsuccessfully:
    allowresetlogs_corruption
    allowreadonly_corruption
    If you could shed some light on it on the steps I would need to make, that would be appreciated.
    Thanks

    What have you tried to far (specifics please, not general statements)?
    I have done something close to what you want do a couple of years ago for an Oracle 9.2.0.4 DB on Linux and am looking for my notes. One key thing I found was to not try to change anything but just get a DB up and running that would let me get the data out. That means don't try to use different file paths or anything other changes.
    It involved creating a new minimal database from scratch by hand that has the same name, paths, block size as the old one. In my case this minimal DB only had the system_01.dbf, undotbs_01.dbf and users_01.dbf data files even though I ultimately needed access to about 40 others.
    The idea is to get a template DB in place that refers to the same paths, then shut it down and replace the minimal system_01.dbf file with the one from your backup. It turned out for me that Oracle could open, load and use my old system tablespace even though it referred to tablespaces that didn't exist yet in the new minimal system; obviously I couldn't use them yet but they didn't cause Oracle to fail to start.
    1. You can toss the redo logs since there is nothing in them you need or can use and you will never be able to read them anyway.
    2. You will need to create the instance and DB using the same version of Oracle that you had. There were key differences between the early Oracle 9 versions and I wasn't able to get around them.
    3. Create an instance for the correct DB version if you don't have one. The easiest way to create a new one is to do a default installation from the original set up files but DO NOT create a database. When given choices use the same values (character set, paths, etc) as your old DB.
    4. You will need a text version of the init.ora file in the same location (name and path) where it was before - the character set and block size have to match what you had before. If you have a copy of this file you can try it first. If you don't then create a minimal file; that is, no entries that are not necessary. Oracle comes with a sample with a lot entries commented out.
        a. use the same db_name= parameter in the init.ora file
        b. use a db_files= parameter that is large enough for all of the data files that you will later need access to
        c. use a compatible- parameter that is 9.2.0 and no later
    5. You won't be able to use your old, copied, control files since they are binary files and the content won't match the new database; trying to use them will not get you anywhere.
    6. Once you can bring up this new DB the first thing you should do is shut it down and take a cold backup.
    7. Replace the new system_01.dbf and users_01_dbf files with the ones you copied from the old DB. The new control file can mount and open the old tablespace file and users file since the control file (old Oracle systems only, mind you) have NAME and PATH information but do not care about actual content (how many users, etc).
    8. Make sure you can now open and access the DB with your swapped system and user tablespaces. You won't be able to access objects from the system tables that refer to data files that aren't known to the control file so don't even try to yet.
    9. You can add your other data files to the DB by doing a CREATE CONTROLFILE command, when unmounted, that adds the other data files that you will want access to. Obviously don't add them all at once; add one and then test to make sure that things are ok. You won't be
    It turns out that the control file has the list of datafiles including their names and paths but does not have the sizes; the system tables have the size info and physical info. So you can add a datafile to the control file by path and name without needing to know how big it was supposed to be; that size info will still be in your old system tablespace.I may have missed something and if I fiind my notes will repost with anything else I think of.

  • RMAN Restore from cold backup ?

    Hi ,
    I am trying to restore the database from production db using the RMAN cold Backup. Both the prod and test(Restore database) are on the same machine. And also I wanted to have the restore db name should be different.
    And the restore db name should be different. What are the options I have ?

    refer the thread:-
    RMAN Restore using RMAN COLD Backup!!
    RMAN Restore using RMAN COLD Backup!!

  • Restore 11g rman cold backup on same server.

    Hi All,
    I have a requirement , where we have to clone one development database's to other database's sitting on the same host.
    I have taken the cold rman backup and copy it different database's local folder.
    I changed the db_name in target pfile and did the nomount , but when I tries to restore the controlfile , it throws me below errors.
    Just to add to to it, I was ale to restore the controlfile to the location specified in pfile.
    now , when I tries to mount the database , it throws me following errors
    Snippet from target database's
    SQL> startup mount pfile=/db/epmtrain/oracle/11.1.0/dbs/initepmtrain.bkp
    ORACLE instance started.
    Total System Global Area 1.3696E+10 bytes
    Fixed Size                  2132152 bytes
    Variable Size            6173202248 bytes
    Database Buffers         7516192768 bytes
    Redo Buffers                4362240 bytes
    ORA-00205: error in identifying control file, check alert log for more info
    RMAN> run {
    2> restore controlfile from '/db/epmtrain/export/rman/EPMDEV_06ogm377.bkp';
    3> }
    Starting restore at 07-AUG-13
    using channel ORA_DISK_1
    channel ORA_DISK_1: restoring control file
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of restore command at 08/07/2013 07:12:21
    ORA-19870: error while restoring backup piece /db/epmtrain/export/rman/EPMDEV_06ogm377.bkp
    ORA-19504: failed to create file "/db/epmtrain/oracle/11.1.0/dbs/db/epmtrain/data1/epmtrain/control01.ctl'"
    ORA-27040: file create error, unable to create file
    HPUX-ia64 Error: 2: No such file or directory
    Regards

    940856 wrote:
    I restored the controlfile to the path mentioned in pfile. after that , when I tries to mount the database , it throws me the following errors.
    ---------- Snippet from alert.log ------
    ORA-00210: cannot open the specified control file
    ORA-00202: control file: '/db/epmtrain/data1/epmtrain/control01.ctl''
    ORA-27037: unable to obtain file status
    HPUX-ia64 Error: 2: No such file or directory
    Additional information: 3
    ORA-205 signalled during: ALTER DATABASE   MOUNT...
    ------------ controlfile location in pfile ---------
    *.control_files=/db/epmtrain/data1/epmtrain/control01.ctl','/db/epmtrain/data1/epmtrain/control02.ctl'
    --------------- show parameter control output -------------
    SQL>  show parameter control
    NAME                                 TYPE                             VALUE
    control_file_record_keep_time        integer                          7
    control_files                        string                           /db/epmtrain/data1/epmtrain/co
                                                                          ntrol01.ctl', /db/epmtrain/dat
                                                                          a1/epmtrain/control02.ctl
    control_management_pack_access       string                           DIAGNOSTIC+TUNING
    Regards
    So present proof that "/db/epmtrain/data1/epmtrain/control01.ctl" actually exists .....

  • Recovery of Database -- Restore from Cold Backup

    Hi All
    I was trying to understand the possible failures so as to enhance my recovery capabilities of Oracle database 10.2.0.4.
    We take weekly hot back up of the database on every sunday including archive logs. Archive logs are also backed up when the log_archive_dest_1 disk space utilization grows beyond 80%. All the backup goes into an alterate disk made available on the host. The archive back up is triggered mostly twice a week, on one of the thursday/friday/Saturday depending on the redo generation in that week.
    Imagine we have a failure on thursday leading me to restore the complete database from backup taken on the earlier sunday. I also realise there is 1 archive log from tuesday missing and its not backed up for sure. I restore from backup and try to recover. As all the archive logs are available since Sunday till the point of failure except for that one missing file from Tuesday, I want to recover the database until the point of failure although there is one log sequence missing in archive destination. how can I do that? Is it possible? Please advice.
    I remember reading on net that recover database command can be hinted by an init parameter so as it does not check for sequece numbers and continue to apply archives (does not check sequence numbers) as they are available. But I am not able to recollect it exactly. while I was searching on net, I came to this forum hoping if some one knew it.
    Let me know if you know how to go about this. Thanks in advance.
    Sarat.

    You cannot skip an archivelog (there is no init parameter to do so).
    Think about this :
    Imagine that there is one very long transaction. A transaction that deletes or updates 1 million records. With the redo logs being, say, 100MB each, the transaction spans multiple redo logs.
    These redo logs are archived as, say, sequence #121 to 128.
    Supposing that sequnece #123 is deleted by mistake.
    Can you recover the database with sequence# 121, 122, 124-128 ? Can that transaction be consistent ?
    OR think about this :
    A redo log file is 99% full. A transaction for 1000 rows begins. All the redo entries for that transaction do not fit into that last 1%. The transaction spans into the next redo log file.
    Can recovery be done with either of these missing ?
    If you think through these scenarios, you will see that there will almost always be transactions spanning redo logs. That means, that you cannot skip redo logs during recovery.
    Hemant K Chitale
    http://hemantoracledba.blogspot.com

Maybe you are looking for

  • Quality inspection lot creation during GR for STO

    Dear Friends, I have a Scenario for Quality inspection lot creation during GR with respect to STO can use inspection type 01 or is there any other inspection type to create inspection lot during GR for STO Thanks & Regards Raj

  • Report Web Server

    Hi, I downloaded the Oracle by Example series for the latest verison of 9i (enterprise) on Windows 2000. I installed oracle OK and then created a Management Server repository on the same machine, but in a different database (as the doc's say to do).

  • Cannot add objects in the role

    Hi, i have created a role in sap portal, but i cannot see the properties of this role by clicking on properties button in the role editor. other problem: i cannot add any object in this role, when i open the role and trying to add a page object for e

  • Reset user password using Apple ID

    I have a problem with resetting a forgotten administrator password in OS X Lion. I know that it is possible to reset the password with the Apple ID by typing in a wrong one 3 times at the login window. But what if I have allowed automatic login and t

  • Leica V-Lux 4 camera calibration

    When could I expect the profile will be aded to the camera calibration panel ?