RMAN recover automatic backup spfile

Hello
I'm just working in a recovery situation

the spfile has been removed.

I can't start to oracle and rman still works

When I run the command

SPFile to restore automatic backup, I get the following errors
RMAN> restore spfile from autobackup;

Starting restore at 20-MAY-09
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of restore command at 05/20/2009 15:20:11
RMAN-12010: automatic channel allocation initialization failed
RMAN-06403: could not obtain a fully authorized session
ORA-01034: ORACLE not available
ORA-27101: shared memory realm does not exist
thoughts of MRE

I put the DBID of rman

Set the dbid = 687281559

the door on

startup nomount force;

but getting the following errors
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of startup command at 05/20/2009 15:35:59
RMAN-06403: could not obtain a fully authorized session
ORA-00600: internal error code, arguments: [15435], [SYS], [X$DBMS_BACKUP_RESTOR
E], [], [], [], [], []
ORA-04031: unable to allocate 1040 bytes of shared memory ("shared pool","X$DBMS
_BACKUP_RESTORE","PL/SQL DIANA","PAR.C:parapt:Page")
RMAN-04015: error setting target database character set to WE8MSWIN1252
concerning

Published by: 595165 on May 20, 2009 07:36

Try again with

set dbid=687281559;
restore spfile from autobackup recovery area 'yours_flash_recovery_area_path' db_name 'yours_db_name';

IE I have Flash recovery area is to the path 'd:\oracle\product\flash_recovery_area' and dbname is prod

set dbid=687281559;
restore spfile from autobackup recovery area 'd:\oracle\product\flash_recovery_area' db_name 'PROD';

Khurram

Tags: Database

Similar Questions

  • SPFile automatic backup restoration

    Hello

    I tried to restore a spfile from automatic backup - using the rman catalog.

    The database is down, I restarted forcefully startup nomount and set the database id.
    Autobackup controlfile and spfile are defined, too.

    When I published "spfile automatic backup restoration" the restored failed, because no valid backup piece has been found.

    The command restore spfile to autobackup db_recovery_file_dest = db_name "/ u03/data/DB01/flash" = "DB01"; did the trick.

    In my mind it's a bit strange. Yes, this is not the default value for flashback_area.  But I expect that the opportunity db_recovery_file_dest (under backuppath) are stored in the recovery catalog.

    This behavior is normal? or "user of a stupid mistake?

    Concerning

    Christian

    If you use the command in RMAN catalog below should work.

    RMAN target / catalog user/pass@rcvcat

    RMAN >

    Set the DBID =;

    startup nomount force;

    restoring automatic backup SPFile;

    stop immediately;

    Run {}

    until time to_date (timestamp,)

    startup nomount

    Restore controlfile;

    bootable media;

    restore the database;

    recover the database;

    }

  • Behavior of abnormal (Tag Date and place of automatic backup) RMAN script

    Hi all

    I have 11 GR 1 material running on Sun SOLARIS 10.

    The parameter default RMAN for backup of control file is on DISK (format: u02/oracle/backup/rman/control/%F.ctl)


    I have the RMAN script following (L0.rman):
    Run {}
    allocate channels ch1 type SBT_TAPE parms 'ENV=(TDPO_OPTFILE=/opt/tivoli/tsm/client/oracle/bin64/tdpo.opt) ';
    tag backup "${CURRENT_DATETIME}" additional 0 filesperset 3 format 'DB_%T_%U.dbf' database more archivelog;
    output channel ch1.
    }
    host ' cp /oracle/app/oracle/product/11.1.0/db_1/network/admin/tnsnames.ora/u02/oracle/backup/rman/$(echo $CURRENT_DATETIME) /';


    This is called by the following (L0.sh) script:
    #! / bin/bash
    CURRENT_DATETIME = "$(date + 20 %y %m %d %H %M)»;) export CURRENT_DATETIME
    export ORACLE_SID = EDWH
    export ORACLE_HOME=/oracle/app/oracle/product/11.1.0/db_1
    mkdir/u02/oracle/backup/rman/$(echo $CURRENT_DATETIME)
    RMAN nocatalog target / cmdfile = L0.rman log = L0_EDWH_$ CURRENT_DATETIME.log


    The anomalies are as follows:

    1. the backupsets are created with a literal tag "${CURRENT_DATETIME}" instead of "201010051915" - why?
    FYI, the command 'host' at the bottom of L0.rman successfully copies the file in the right directory (/ u02/oracle/backup/rman/201010051915 /).

    2. after the backup finishes, the automatic backup for the control and spfile is taken on SBT_TAPE instead of DISK - why?

    Any help will be appreciated.

    1. well, this $CURRENT_DATETIME is variable shell, RMAN does not interpret it (she can't and doesn't have to.) HOST calls the external commands by spawning the shell in non-interactive mode and when placing the order for her, and since you have exported the variable is available to all processes having engineered and develop properly, then files are copied in the expected location. If you remove the '; CURRENT_DATETIME export"from your shell script, you will see files copied in/u02/oracle/backup rman / / because the variable will not be in the environment of the layed shell (it will be local to the script) and will expand to the empty string. You must pass $CURRENT_DATETIME to the RMAN script as a variable substitution so that the shell expands it before calling RMAN, like this:

    L0. RMAN: {code}
    Run {}
    allocate channels ch1 type SBT_TAPE parms 'ENV=(TDPO_OPTFILE=/opt/tivoli/tsm/client/oracle/bin64/tdpo.opt) ';
    backup format tag & 1 extra strength 0 filesperset 3 'DB_%T_%U.dbf' database archivelog;
    output channel ch1.
    }
    host ' cp /oracle/app/oracle/product/11.1.0/db_1/network/admin/tnsnames.ora/u02/oracle/backup/rman / $ CURRENT_DATETIME /';
    {code}
    L0.sh: {code}
    #! / bin/bash
    CURRENT_DATETIME = "$(date + 20 %y %m %d %H %M)»;) export CURRENT_DATETIME
    export ORACLE_SID = EDWH
    export ORACLE_HOME=/oracle/app/oracle/product/11.1.0/db_1
    mkdir/u02/oracle/backup/rman / $ CURRENT_DATETIME
    RMAN nocatalog target / cmdfile = L0.rman using $CURRENT_DATETIME log = L0_EDWH_$ CURRENT_DATETIME.log
    {code}

    Note the * & 1 * variable substitution in the RMAN script and * using * keyword in the RMAN command line.

    2. control file record is taken to the same media, that the last backup, this is normal. You can't "CONFIGURE CONTROLFILE AUTOBACKUP ON the DISC" or something like that, you can only enable or disable it and specify format for various types of devices. Default device type does not play here, you are precisely the configured default device type substitution tape backup.

  • RMAN > recover DB with backup controlfile > RMAN-06025: no backup of...

    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0
    on RHEL 5

    I am trying to execute the following commands to RMAN in a TEST instance and receive errors. I don't have the archive logs in the test OS instance (they were deleted manually... "I know it's a big mistake). Is there a way to always run 'restore database using backup controlfile until Cancel' successfully?

    Step 1:

    SQL > restore database using backup controlfile until cancel;
    ORA-00279: change 40600690589 September at 2010-04-18 19:38:24 to
    thread 1
    ORA-00289: suggestion: /u001/dbsvr/deverp1/arch_575406629_1_122104.arc
    ORA-00280: change 40600690589 thread 1 is in sequence #122104

    Specify the log: {< RET > = suggested |} Filename | AUTO | CANCEL}

    Auto

    ORA-00308: cannot open archived log
    ' / u001/dbsvr/deverp1/arch_575406629_1_122104.arc'
    ORA-27037: unable to get file status
    Linux-x86_64 error: 2: no such file or directory
    Additional information: 3


    ORA-01547: WARNING: RECOVER succeeded but OPEN RESETLOGS would get below error
    ORA-01194: file 1 needs a recovery more match
    ORA-01110: data file 1: '+ DATA2/prod/datafile/system.291.716736657 '.


    ==========================================================
    Step 2:

    rman target $ /.
    RMAN >
    run
    {
    allocate channel d1 type disk;
    define archivelog destination to ' / u001/dbsvr/deverp1 / ";
    restore the logseq 122104 than logseq 122204 thread 1 all archivelog;
    output channel d1;
    }

    allocated channel: d1
    channel d1: sid = 1971 devtype = DISK

    executing command: SET DESTINATION ARCHIVELOG

    From restoration to April 19, 10

    output channel: d1
    RMAN-00571:
    RMAN-00569:
    = FOLLOWS THE ERROR MESSAGE BATTERY =.
    RMAN-00571: ===========================================================
    RMAN-03002: failure of the restore command at 19/04/2010 19:45:29
    RMAN-06026: some targets not found - abandonment of restoration
    RMAN-06025: no thread 1 122116 lowscn found 40607234921 seq log backup to restore
    RMAN-06025: no thread 1 122115 lowscn found 40606700559 seq log backup to restore

    RMAN >

    Published by: CipherDBA on April 19, 2010 18:43

    I see you are using ASM. In this case, I strongly suggest forgetting all about giving orders for recovery of any kind in SQL * more and make sure that you have completely mastered RMAN. RMAN is the only reliable tool that can be used to do anything in ASM. In general, it is a very bad idea to mix managed by users and managed by RMAN recovery mechanisms: you ask just for confusion all round!

    Also, I see someone suggesting 'Restoration until the 122114 seq archivelog', but it is false. If you run the syntax in this way, eventually you recovery until the end of the log 122113 and not enforce a 122114 again, that seems to exist. Numbers you put in an rman command "set until" are not exhaustive, so if you are missing journal 115, it's that you defined up to the number. You do not go around off delimbing a 1 or so just in case where, unless you plan to perform a recovery more incomplete than you can actually go out with.

    Overall, the most appropriate RMAN recovery command in this case would be, I would say:

    crosscheck archivelog all;
    crosscheck backup;
    run {
    set until logseq 122115;
    restore database;
    recover database;}
    

    More seriously: I have no idea why you are trying to recover with a bit of 'backup controlfile' in your syntax. It is only necessary if you have actually lost the original control file and have restored a backup. But since I don't see you do that ('Restore automatic backup controlfile' would be the usual thing to do with RMAN), then there is no need to specify that little bit of syntax in your orders. Now that you once asked Oracle to think he's working with a backup controlfile, however, all bets are off, so if I were you, in view of this is that a test system, I put things in a working state, and then start your recovery from scratch test. Just say 'using backup controlfile' If you actually are. If you simply mount the original controlfile that has not been lost by the disaster, so there no need to mention and the above commands should work properly.

  • RMAN-06729: no backup of the SPFILE found to restore

    Dear all,

    I'm doing the database using RMAN backup copy,

    Server1 (test BD)

    Linux

    Oracle 11g R2

    At the database

    A RMAN backup

    Server2 (DBNEW)

    Linux

    Oracle 11g R2

    At the Instance

    I did the Setup correctly on both servers and I copied the Server2 RMAN backup and then I run the command duplicate rman

    :

    DBNEW duplicate target database

    SPFile

    parameter_value_convert "Test BD", "DBNEW".

    Set db_unique_name = "DBNEW".

    Set db_file_name_convert = "/ test BD / ', ' / DBNEW / '.

    Set log_file_name_convert = "/ test BD / ', ' / DBNEW / '.

    Set control_files='/u01/app/oracle/oradata/DBNEW.ctl"

    Set log_archive_max_processes = '5'

    Set audit_file_dest = ' / u01/app/oracle/admin/DBNEW/adump.

    Set db_recovery_file_dest ='/ backup_files'

    nofilenamecheck;

    When I run it, it gave this error:

    WARNING: A moment of the restoration was based on the supplied until THE SNA

    channel ORA_AUX_DISK_1: from the restore backup set data file

    channel ORA_AUX_DISK_1: restore SPFILE

    output file name=/u01/app/oracle/product/11.2.0/dbhome_1/dbs/spfileDBNEW.ora

    channel ORA_AUX_DISK_1: reading from the backup /backup_files/DBTEST/autobackup/2014_11_23/o1_mf_s_864404426_b73qrybx_.bkp piece

    channel ORA_AUX_DISK_1: ORA-19870: error when restoring the backup /backup_files/DBTEST/autobackup/2014_11_23/o1_mf_s_864404426_b73qrybx_.bkp piece

    ORA-19505: impossible to identify the file ' / backup_files/DBTEST/autobackup/2014_11_23/o1_mf_s_864404426_b73qrybx_.bkp '.

    ORA-27037: unable to get file status

    Linux error: 2: no such file or directory

    Additional information: 3

    switch to the previous backup

    WARNING: A moment of the restoration was based on the supplied until THE SNA

    RMAN-00571: ===========================================================

    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.

    RMAN-00571: ===========================================================

    RMAN-03002: failure of Db in dual at 24/11/2014 14:23:52

    RMAN-05501: abandonment of duplicate target database

    RMAN-03015: an error has occurred in the script stored memory Script

    RMAN-06026: some targets not found - abandonment of restoration

    RMAN-06729: no backup of the SPFILE found to restore

    Please advice

    Hello

    you receive the error:

    channel ORA_AUX_DISK_1: ORA-19870: error when restoring the backup /backup_files/DBTEST/autobackup/2014_11_23/o1_mf_s_864404426_b73qrybx_.bkp piece

    ORA-19505: impossible to identify the file ' / backup_files/DBTEST/autobackup/2014_11_23/o1_mf_s_864404426_b73qrybx_.bkp '.

    Please copy this backup in the Server2: ' / backup_files/test BD/autobackup and try again the duplicate.»

  • syntax to enable AUTOMATIC backup for file server settings

    According to the document of the oracle's RMAN can be configured to automatically back up the control file and the server settings file every time that metadata from database structure in control of changes in the file and each time a backup folder is added. Automatic backup RMAN can recover data even if the current control file and catalog file server settings are lost. »

    I found the instruction for the control file, like:
    RMAN > CONFIGURE CONTROLFILE AUTOBACKUP ON;

    but, what is the syntax to enable AUTOMATIC backup for file server settings?

    help please, thank you!

    automatic backup will take place of the control file and SPFILE. also whenever you have a backup statement in your RMAN script (e.g. database backup more archive), an automatic backup will be generated.

    To activate the automatic backup of control file:

    rman> CONFIGURE CONTROLFILE AUTOBACKUP ON;
    
  • automatic backup controlfile recovery

    Hi all,

    I'm practisisng RMAN backup and restore of oracle 10g xe. My database is in noarchivelog mode. And I want to recover from the loss of controlfile. I'm performing following steps:

    RMAN > STARTUP
    $ mv ~/oradata/XE/control.dbf cc.bak
    RMAN > SHUTDOWN ABORT
    RMAN > STARTUP NOMOUNT
    RMAN > backup RESTORE CONTROLFILE AUTOMATIC;
    RMAN > ALTER DATABASE MOUNT;
    RMAN > RESTORE database;
    RMAN > RECOVER NOREDO of DATABASE;
    RMAN > ALTER DATABASE open RESETLOGS;

    and database restored successfully. But I read the oracle docs that says before restoring controlfile autobackup, we must first set dbid. How can one above the steps I make also a success.

    Published by: sonidba on February 25, 2011 19:46

    sonidba wrote:
    Thnks werner for your answer.
    Mine is using the flash recovery area. I would also like to know if I am performing the right steps in my scenario. Are there other steps or options that can be used instead to retrieve the control file.

    Your steps above are correct.

  • Cannot retrieve automatic backup controlfile

    Hallo! I am a newbie to oracle studying for certification in Database Administration OCP Oracle 10 g.
    During his studies, I proposed using the instructions below for the resumption of the controlfiles

    SQL > ALTER DATABASE BACKUP CONTROLFILE to TRACE;

    RMAN > CONFIGURE CONTROLFILE AUTOBACKUP ON;

    To see if I could pick up the controlfiles once lost, I deleted all instances of the controlfiles, and then I ran the statement that caused the errors below

    RMAN > restore controlfile autobackup.

    From restoration to October 23, 10
    using channel ORA_DISK_1

    field of recovery destination: / u01/app/oracle/flash_recovery_area
    name of database (or unique name of database) used for research: ORCL
    channel ORA_DISK_1: no record not found in the recovery area
    Autobackup search outside the recovery zone not tempted because DBID has not been set.
    RMAN-00571: ===========================================================
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: ===========================================================
    RMAN-03002: failure of the restore command at 2010-10-23 17:25:17
    RMAN-06172: no autobackup couldn't find or handle specified is not a valid copy or a piece

    How is that possible when I had already created the AutoSave?

    Please help me.

    Thank you.

    Here is the procedure.

    # controlfile recovering using RMAN and no FRA and nocatalog

    RMAN target /.
    Set the DBID = 1188930158
    startup nomount;
    Restore automatic backup controlfile;
    change the editing of the database;
    recover the database;
    ALTER database open resetlogs;

    Have you taken the RMAN backup after you configure controlfile autobackup

    RMAN > backup database archivelog;

    Concerning
    Asif Kabir

    Handle: * 4joey1 *.
    Status level: Beginner
    Join date: April 28, 2009
    Messages total: 63
    Total Questions: * 40 (34 pending) *.

    -brand your helpful post as correct/good and close all answered threads.

  • Can I import my Firefox bookmarks from an automatic backup to a new MacBook Pro computer?

    I backed up my MacBook Pro 11 OS X Lion with Time Machine system and then got a new MacBook Pro 13 OS X Mountain Lion system. I can't use Time Machine to restore my system. I was able to drag and drop my files, but I forgot to backup my Firefox bookmarks HTML. Are automatic backups .json accessible Firefox for me on my external drive for Time Machine? Can I find one of these backups and restore it on my new laptop? I did not all new bookmarks, crushing would not be a problem.

    Have you already found the Firefox profile folder in this Time Machine backup?

    • < User > /users//Library/Application Support / Firefox/Profiles/< profile >.

    In Mac OS X v10.7 and later versions, the file $HOME/Library is a hidden folder.

  • RMAN issues - no backup or copy of the data file found

    Oracle 11 g 2

    Linux RHEL 6.5

    I inherited a database backup and restore question since the DBA is OoO.

    Here is the script used for the backup:

    Configure default device the disk type;
    Configure controlfile autobackup on;
    Configure controlfile autobackup peripheral type disc format in ' / u01/app/oracle/bkp/controlfile/%F.ctl';
    Configure retention policy to recovery of 30-day window;
    View all;
    Run {}
    stop immediately;
    bootable media;
    allocate channel dup1 device type disk;
    allocate channel dup2 device type disk;
    SQL "create pfile =" /u01/app/oracle/bkp/pfile/initpfile.ora "of spfile;
    backup format ' / u01/app/oracle/bkp/cold_db/cold_bkp_%U' database;
    output channel dup1;
    output channel dup2;
    ALTER database open;
    }

    When I try the following restore script:

    run
    {
    Start pfile='/u01/app/oracle/bkp/pfile/initpfile.ora' nomount;
    Restore controlfile to ' / u01/app/oracle/bkp/controlfile/c-123131414-20140509-00.ctl';
    change the editing of the database;
    restore the database;
    ALTER database open resetlogs;
    }

    I get error RMAN-06023: no backup or copy of the data file found

    I'm trying to restore a database backup from 5 days ago and I use this backup control file.

    I'll close this discussion and continue to involve the Oracle.  Thank you all for your help.

  • RMAN-06024: no backup or copy of the file of control found to restore

    I have installed oracle 11.2 on virtual machine and made two copy of this vm i.e vm1 and vm2

    I took the backup with rman vm1 and automatic backup of the control file.


    Now I want to restore this backup on vm2, I configured for this channel and other settings.

    running following command

    Catalogue start with "\\server3\database_backup\rman\C-3507808503-20130531-00";

    "C 3507808503-20130531-00" is the name of the control file backup.


    RESTORE CONTROLFILE;

    It gives me error

    RMAN-06496: must use the TO clause when the database is mounted or open

    can I use after a command

    RESTORE CONTROLFILE to 'C:\oracle\Administrator\oradata\slate ';

    then it gives me error
    RMAN-06024: no backup or copy of the file of control found to restore

    can someone help me how to restore the control for vm2 file

    Hello

    909855 wrote:
    I have installed oracle 11.2 on virtual machine and made two copy of this vm i.e vm1 and vm2

    I took the backup with rman vm1 and automatic backup of the control file.

    Now I want to restore this backup on vm2, I configured for this channel and other settings.

    running following command

    Catalogue start with "\\server3\database_backup\rman\C-3507808503-20130531-00";

    "C 3507808503-20130531-00" is the name of the control file backup.
    RESTORE CONTROLFILE;

    It gives me error

    RMAN-06496: must use the TO clause when the database is mounted or open

    can I use after a command

    RESTORE CONTROLFILE to 'C:\oracle\Administrator\oradata\slate ';

    then it gives me error
    RMAN-06024: no backup or copy of the file of control found to restore

    can someone help me how to restore the control for vm2 file

    Why use the network path?

    Copy all the files backup on VM2 for example C:\Backup folder and try

     set DBID ...
     restore controlfile from 'C:\Backup\C-3507808503-20130531-00';
     alter database mount;
     catalog start  with 'C:\bakup';
     restore database;
    

    If you are using same directories for databases on VM1 and VM2, not catalog must start with command.
    Because RMAN Catalog backup VM1 information in the control of catalog file repository.

    Concerning
    Mr. Mahir Quluzade

  • What is the automatic backup folder?

    Hi all

    30%

    I checked our auto backup folder, and I see this file:
    oracle@sdb51:/u01/app/oracle/flash_recovery_area/PROD/autobackup/2013_04_30> ls
    o1_mf_s_814110141_8qypfxjy_.bkp
    
    head *
    ÂÀÿcø@}|{z Âÿÿÿÿÿÿ1p
    ξ¨FTEST1]0@½U0TAG20130430T134221       ÝÅ2     /0Þ°&ÿÿÂ@ÿÿÿÿÿÿ×LL/0Å2  /0×:½U0ÿÿÿÿÒ(0Rÿÿ'Âÿÿÿÿÿÿ&©test1.__db_cache_size=1040187392
    test1.__java_pool_size=16777216
    test1.__large_pool_size=16777216
    test1.__shared_pool_size=486539264
    test1.__streams_pool_size=33554432
    *.audit_file_dest='/u01/app/oracle/admin/PROD/adump'
    *.background_dump_dest='/u01/app/oracle/admin/PROD/bdump'
    *.compatible='10.2.0.3.0'
    *.control_files='/u01/app/oracle/oradata/PROD/control01.ctl','/u01/app/oracle/oradata/PROD/control02.ctl','/u01/app/oracle/oradata/PROD/control03.ctl'#Restore Controlfile
    What is the controlfile or the spfile? It resembles a spfile?


    Thank you very much

    What is the controlfile or the spfile? It resembles a spfile?

    Both. An AUTOMATIC backup is made up both the controlfile the spfile. It's a backuppiece containing two backups (controlfile and spfile).

    See the first line to
    http://docs.Oracle.com/CD/B19306_01/backup.102/b14192/setup004.htm#sthref232

    Hemant K Collette

  • Restore, recover the backup hot inevitably will be OPEN RESETLOGS

    DB version: 11.2
    Platform: Solaris / AIX



    Cold backup is performed when the DB is in editing mode, and when no recovery is generated during the backup.
    So when you restore this backup, you can open the database with
    alter database open;
    But when we take the backup hot of a DB, we will never be able to redo backup generated in restoration online logs when the hot backup. Thus, during recovery, we can apply only archived redo logs from the source DB and we are obliged to skip applying entries online to the DB of the Source again.
    Thus, hot backup recovery will inevitably end up by in OPEN RESETLOGS.
    alter database open resetlogs
    These assumptions are good?

    If you restore and recover to the same server with the current controlfile and remake online still present newspapers, you would be able to make a full recovery. In such a case it is not necessary to OPEN RESETLOGS.
    All other cases of hot backup are incomplete recoveries and require an OPEN RESETLOGS.

    In the case of a cold backup taken by RMAN, you should always an OPEN RESETLOGS because RMAN does not include online of Redo Log files.
    http://hemantoracledba.blogspot.com/2008/05/RMAN-cold-consistent-backup-and-restore.html

    Hemant K Collette

  • FRA - DISABLE THE AUTOMATIC BACKUP

    Hello

    I'm using oracle 11g on windows 7.

    I configured recoery Flash area. Because of the auto backup is stored in FRA, the space is filled immediately.
    I manually take the weekly backup. So is it possible to completely stop the AutoSave?
    will there be problems in advanced due to the deactivation of the automatic backup.

    Need your advice.

    What autobackup is set up? If it's a working RMAN, find work and simply turn it off.

    Aman...

  • RMAN-06023: no backup or copy of the data file

    Hi all

    Database: 10.2.0.1.0

    During the restoration of database of rman backup, using the recovery catalog, I am getting error below:

    RMAN-00571: ===========================================================
    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.
    RMAN-00571: ===========================================================
    RMAN-03002: failure of the restore command at 2010-07-06 16:44:12
    RMAN-06026: some targets not found - abandonment of restoration
    RMAN-06023: no backup or copy of the file 4 found to restore
    RMAN-06023: no backup or copy of datafile 3 found to restore
    RMAN-06023: no backup or copy of datafile 2 found to restore
    RMAN-06023: no backup or copy of datafile 1 found to restore.

    I did the entire task required as backup, backup of the datafile overlap list #;

    These orders showing as backup status: AVAILABLE

    Please help me to restore the database:

    Thank you
    Vipin

    VipinK wrote:
    Hi Alex,

    RMAN > list incarnation of database;

    List of Incarnations of the database
    DB key Inc key STATE ID DB name DB reset reset time SNA
    ------- ------- -------- ---------------- --- ---------- ----------
    1 8 TEST 2020618919 PARENT 1 30 AUGUST 05
    1 2 TEST CURRENT 2020618919 534907 JUNE 23, 10
    1 314 TEST THE 2020618919 ORPHAN 1228265 2 JULY 10

    Also I tried to reset the database incarnation to 2; but no use same problem occurs again:

    Don't need to reset need reset 2, 314 (ORPHAN 1228265 2 July 10) database and try again as follows:

    rman target /
    reset database to incarnation 314;
    restore database;
    recover database;
    

Maybe you are looking for