Restore from newer backupset

Running 11g. I did a full backup of the source machine using the following commands:
RMAN> backup database;
RMAN> backup archivelog all not backed up delete all input;
RMAN> allocate channel for maintenance type disk;
RMAN> delete obsolete device type disk;
RMAN> yes
RMAN> release channel;
I moved the files over to a target machine. I also moved over an updated control file (probably created at the time because CONTROLFILE AUTOBACKUP is ON.
On the target machine I run:
run
set controlfile autobackup format for device type disk to '/ora-local/snap/%F';
allocate channel c1 device type disk;
restore controlfile from autobackup;
It ignores the newer control files I placed on the machine and goes for the one did the day before. I guess the newer control files are not considered an autobackup?
When I get around to the RESTORE DATABASE part, it again restores from the backupset of the day before even though the newer backupset is there.
What do I need to do to get the RMAN on the target machine to "see" the newer backupset?
=== Al

I found the problem. When I transferred the files / backupset to the target machine, they had different ownership permissions.
RMAN doesn't tell you that.
Actually it will if you attempt to
RMAN> catalog backuppiece 'somefile'
But with the other commands, it just says that it can't find a backupset.

Similar Messages

  • ORA-01152 when restoring from RMAN backupset in NOARCHIVELOG mode

    Hi all,
    I got the error ORA-01152 when I tried restoring an Oracle 10g R1 database from an RMAN backupset into a new server. The error returned when it reached to the level of opening the database in resetlogs.
    The database runs on NOARCHIVELOG mode and on Windows 2003 Server SP2 32-bit.
    Following is what I did in RMAN:
    set ORACLE_HOME=D:\oracle\product\10.1.0\db_1
    set ORACLE_SID=DAWA
    set PATH=D:\oracle\product\10.1.0\db_1\bin;%PATH%
    cd %ORACLE_HOME%\bin
    rman target sys/mypassword
    Recovery Manager: Release 10.2.0.1.0 - Production on Tue Feb 13 00:36:55 2007
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    connected to target database (not started)
    RMAN> startup nomount pfile=X:\temp\DawaPFILE.ORA
    connected to target database (not started)
    Oracle instance started
    Total System Global Area 1048576000 bytes
    Fixed Size 792200 bytes
    Variable Size 551807352 bytes
    Database Buffers 494927872 bytes
    Redo Buffers 1048576 bytes
    RMAN> restore controlfile from
    'X:\temp\Flash_Rec\DAWA\AUTOBACKUP\2011_07_16\O1_
    MF_S_756655133_7226R018_.BKP';
    Starting restore at 19-JUL-11
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=270 devtype=DISK
    channel ORA_DISK_1: restoring controlfile
    channel ORA_DISK_1: restore complete
    output filename=D:\ORACLE\ORADATA\DAWA\CONTROL01.CTL
    output filename=D:\ORACLE\ORADATA\DAWA\CONTROL02.CTL
    output filename=D:\ORACLE\ORADATA\DAWA\CONTROL03.CTL
    Finished restore at 17-AUG-11
    alter database mount;
    database mounted
    catalog backuppiece 'X:\temp\PUMHJATD_1_1';
    catalog backuppiece 'X:\temp\PTMHJ91Q_1_1';
    /* Rename the Redologfiles,so that they can be created in new locations
    the database is opened in resetlogs */
    SQL>conn sys as sysdba
    -- get registered files from SELECT * FROM V$LOGFILE
    SQL> alter database rename file
    'D:\ORACLE\PRODUCT\10.1.0\ORADATA\DAWA\REDO01.LOG' to
    'X:\oracle\oradata\dawa\REDO01.LOG';
    alter database rename file 'D:\ORACLE\PRODUCT\10.1.0\ORADATA\DAWA\REDO02.LOG'
    to 'X:\oracle\oradata\dawa\REDO02.LOG';
    alter database rename file 'D:\ORACLE\PRODUCT\10.1.0\ORADATA\DAWA\REDO03.LOG'
    to 'X:\oracle\oradata\dawa\REDO03.LOG';
    alter database rename file 'D:\ORACLE\PRODUCT\10.1.0\ORADATA\DAWA\REDO04.LOG'
    to 'X:\oracle\oradata\dawa\REDO04.LOG';
    alter database rename file 'D:\ORACLE\PRODUCT\10.1.0\ORADATA\DAWA\REDO05.LOG'
    to 'X:\oracle\oradata\dawa\REDO05.LOG';
    alter database rename file 'D:\ORACLE\PRODUCT\10.1.0\ORADATA\DAWA\REDO06.LOG'
    to 'X:\oracle\oradata\dawa\REDO06.LOG';
    alter database rename file 'D:\ORACLE\PRODUCT\10.1.0\ORADATA\DAWA\REDO07.LOG'
    to 'X:\oracle\oradata\dawa\REDO07.LOG';
    /* Now in RMAN: restore the datafiles
        to new locations and recover. */
    RMAN> run{
    set newname for datafile
    'E:\ORACLE\PRODUCT\10.1.0\ORADATA\DAWA\UNDOTBS201' TO
    'D:\oracle\oradata\dawa\UNDOTBS201';
    set newname for datafile
    'E:\ORACLE\PRODUCT\10.1.0\ORADATA\DAWA\UNDOTBS202' TO
    'D:\oracle\oradata\dawa\UNDOTBS202';
    restore database;
    switch datafile all;
    alter database open resetlogs;
    .../*  alter database open resetlogs returned the errors: */
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of alter db command at 08/18/2011 08:44:45
    ORA-01152: file 2 was not restored from a sufficiently old backup
    ORA-01110: data file 2: 'D:\ORACLE\ORADATA\DAWA\UNDOTBS206'Thanks in advance.

    SYS @ DAWA> shutdown immediate
    ORA-01109: database not open
    Database dismounted.
    ORACLE instance shut down.
    SYS @ DAWA> startup mount
    ORACLE instance started.
    Total System Global Area 1048576000 bytes
    Fixed Size                   792200 bytes
    Variable Size             551807352 bytes
    Database Buffers          494927872 bytes
    Redo Buffers                1048576 bytes
    Database mounted.
    SYS @ DAWA> recover database using backup controlfile until cancel;
    ORA-00279: change 329012 generated at 03/08/2005 16:24:46 needed for thread 1
    ORA-00289: suggestion :
    X:\ORACLE\ORADATA\FLASH_REC\DAWA\ARCHIVELOG\2011_08_18\O1_MF_1_6_%U_.ARC
    ORA-00280: change 329012 for thread 1 is in sequence #6
    Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
    ORA-00308: cannot open archived log
    'X:\ORACLE\ORADATA\FLASH_REC\DAWA\ARCHIVELOG\2011_08_18\O1_MF_1_6_%U_.ARC'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below
    ORA-01152: file 1 was not restored from a sufficiently old backup
    ORA-01110: data file 1: 'X:\ORACLE\ORADATA\DAWA\SYSTEM01.DBF'You can download the alert log from here:
    http://ahmedbaraka.com/temp/alertdawa.log

  • My Iphone 4S goes into search mode (no service)about once every week or two and the only thing that will temporaraly fix it is to do a complete restore from new. Apple has given me 2 new phones plus new sim card, I've spent hours with customedr support...

    Has anyone else had this issue? I can't continue to reset my phone, it takes over an hour each time to reset and re enter all the settings and email accts. If I'm out of town when it happens, I have no phone till I get back home. I asume it must be a software problem, I've deleted most of my apps, don't know what else to do

    I have the same problem ios 5.0.2 will resolve the issue.

  • RMAN restore from active database, ASM

    I'm attempting to refresh a stage database from a prod database using RMAN restore from active database. Both are on ASM. After working through various hurdles, I've got one issue I'm a bit stuck on. I've got a handful of data files that do NOT have OMF names (ie MSTRDATA/mstrmdpd/datafile/gsa_indx instead of MSTRDATA/mstrmdpd/datafile/gsa_indx.351.714779777) and these are failing when I do the restore. The syntax I'm using in RMAN is as follows:
    duplicate target database to dwstage
    from active database
    spfile parameter_value_convert 'dwprod','dwstage'
    SET DB_FILE_NAME_CONVERT '+DWPROD','+DWSTAGE'
    SET LOG_FILE_NAME_CONVERT '+DWPROD','+DWSTAGE';
    The error message I'm getting is this:
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 04/21/2011 13:26:24
    ORA-17628: Oracle error 19505 returned by remote Oracle server
    continuing other job steps, job failed will not be re-run
    Normally from what I've seen/read this error can be traced back to needing to pre-create the directories for the controlfiles etc, but since 90% of the datafiles copied correctly...
    Any suggestions as to a way around this, or am I going to be forced to restore from a backupset?

    This fails saying that "ORA-12528: TNS:listener: all appropriate instances are blocking new connections" which is quite normal given that the listener is havig a handle in BLOCKED state for this AUXDB as it is in NOMOUNT state.
    Could you please help me on how to proceed?
    One option can be to create the controlfile manually and mount the instance before doing the duplicate. I hope Rman can continue from there.
    Another option is to go for backup based duplicate.
    Is there any other way to go?
    Provide static registration on AUXILIARY side for your auxiliary instance and try again.For example change listener.ora file as
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (GLOBAL_DBNAME = AUXDB)
          (ORACLE_HOME = <your oracle home>)
          (SID_NAME = AUXDB)
    LISTENER =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = <auxiliary host/ip>)(PORT = 1521))
      )And restart listener on auxiliary host then try again

  • Restore to new host from tape, can't find autobackups

    Thankfully this is just a test, but I'm having trouble restoring a cold backup from a production host to a test/dev host. I tried the following:
    rman target /
    RMAN> set dbid 1600196320;
    executing command: SET DBID
    RMAN> startup nomount;
    startup failed: ORA-01078: failure in processing system parameters
    LRM-00109: could not open parameter file '/app/oracle/product/10.2/dbs/initedi.ora'
    starting Oracle instance without parameter file for retrival of spfile
    Oracle instance started
    Total System Global Area 159383552 bytes
    Fixed Size 2069720 bytes
    Variable Size 67111720 bytes
    Database Buffers 83886080 bytes
    Redo Buffers 6316032 bytes
    RMAN> run
    2> {
    3> allocate channel t1 device type sbt;
    4> send 'NB_ORA_SERV=pobackup01, NB_ORA_POLICY=jdeoracle, NB_ORA_SCHED=hotfull';
    5> restore spfile to pfile '/dbexport/oracle/bckup/test_restore/edipfile_new.ora' from autobackup;
    6> shutdown abort;
    7> }
    using target database control file instead of recovery catalog
    allocated channel: t1
    channel t1: sid=36 devtype=SBT_TAPE
    channel t1: Veritas NetBackup for Oracle - Release 6.5 (2008052301)
    sent command to channel: t1
    Starting restore at 14-MAY-09
    channel t1: looking for autobackup on day: 20090514
    channel t1: looking for autobackup on day: 20090513
    channel t1: looking for autobackup on day: 20090512
    channel t1: looking for autobackup on day: 20090511
    channel t1: looking for autobackup on day: 20090510
    channel t1: looking for autobackup on day: 20090509
    channel t1: looking for autobackup on day: 20090508
    channel t1: no autobackup in 7 days found
    released channel: t1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of restore command at 05/14/2009 10:27:37
    RMAN-06172: no autobackup found or specified handle is not a valid copy or piece
    Here is the log file from when the backup was taken on 5/10, that was the last backup of this db.
    RMAN> connect target *
    2>
    3> show all;
    4> run {
    5> shutdown immediate;
    6> startup mount;
    7> backup database;
    8> alter database open;
    9> }
    10>
    connected to target database: EDI (DBID=1600196320)
    using target database control file instead of recovery catalog
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 3;
    CONFIGURE BACKUP OPTIMIZATION OFF; # default
    CONFIGURE DEFAULT DEVICE TYPE TO 'SBT_TAPE';
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE SBT_TAPE TO '%F'; # default
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE DEVICE TYPE SBT_TAPE PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE SBT_TAPE TO 1; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE SBT_TAPE TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE CHANNEL DEVICE TYPE 'SBT_TAPE' SEND 'NB_ORA_SERV=pobackup01, NB_ORA_POLICY=jdeoracle, NB_ORA_SCHED=hotfull';
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ENCRYPTION FOR DATABASE OFF; # default
    CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/sapp/oracle/product/10.2/dbs/snapcf_edi.f'; # default
    database closed
    database dismounted
    Oracle instance shut down
    connected to target database (not started)
    Oracle instance started
    database mounted
    Total System Global Area 356515840 bytes
    Fixed Size 2070976 bytes
    Variable Size 314574400 bytes
    Database Buffers 33554432 bytes
    Redo Buffers 6316032 bytes
    Starting backup at may-10-2009 08:00:19
    allocated channel: ORA_SBT_TAPE_1
    channel ORA_SBT_TAPE_1: sid=157 devtype=SBT_TAPE
    channel ORA_SBT_TAPE_1: Veritas NetBackup for Oracle - Release 6.5 (2008052301)
    channel ORA_SBT_TAPE_1: starting full datafile backupset
    channel ORA_SBT_TAPE_1: specifying datafile(s) in backupset
    input datafile fno=00007 name=/sdb4/oradata/edi/data01.dbf
    input datafile fno=00006 name=/sdb5/oradata/edi/indx01.dbf
    input datafile fno=00008 name=/sdb2/oradata/edi/undo01.dbf
    input datafile fno=00001 name=/sdb1/oradata/edi/system01.dbf
    input datafile fno=00004 name=/sdb2/oradata/edi/sysaux01.dbf
    input datafile fno=00002 name=/sdb4/oradata/edi/tools01.dbf
    input datafile fno=00005 name=/sdb4/oradata/edi/users01.dbf
    channel ORA_SBT_TAPE_1: starting piece 1 at may-10-2009 08:00:20
    channel ORA_SBT_TAPE_1: finished piece 1 at may-10-2009 08:08:55
    piece handle=2jkeljgl_1_1 tag=TAG20090510T080020 comment=API Version 2.0,MMS Version 5.0.0.0
    channel ORA_SBT_TAPE_1: backup set complete, elapsed time: 00:08:34
    Finished backup at may-10-2009 08:08:55
    Starting Control File and SPFILE Autobackup at may-10-2009 08:08:55
    piece handle=c-1600196320-20090510-00 comment=API Version 2.0,MMS Version 5.0.0.0
    Finished Control File and SPFILE Autobackup at may-10-2009 08:09:50
    database opened
    Recovery Manager complete.
    Do I need to pass in the source host name when configuring the channel? So instead of
    send 'NB_ORA_SERV=pobackup01, NB_ORA_POLICY=jdeoracle, NB_ORA_SCHED=hotfull';
    i would need,
    send 'NB_ORA_SERV=pobackup01, NB_ORA_CLIENT=newhost, NB_ORA_POLICY=jdeoracle, NB_ORA_SCHED=hotfull';
    ??

    Ok, problem solved. Here's the complete process for recovering a non-archivelog mode data base to a new host from a cold backup from veritas 6.5 tape library.
    I used the "until time 'SYSDATE-5'" option because the cold backup was taken 5 days ago, and while rman will look back up to 7 days, it was taking forever to search for the autobackup. This let it start searching on the day the backup was made. The original problem I was having was due to the fact that the backup was taken from one host and the restore was going to another and I wasn't sending the old host name as the NB_ORA_CLIENT parameter. So it was searching backups from the new host for the data.
    oracle_sandbox1> rman target /
    Recovery Manager: Release 10.2.0.2.0 - Production on Thu May 14 14:05:02 2009
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    connected to target database (not started)
    RMAN> set dbid 1600196320;
    executing command: SET DBID
    RMAN> startup nomount;
    startup failed: ORA-01078: failure in processing system parameters
    LRM-00109: could not open parameter file '/app/oracle/product/10.2/dbs/initedi.ora'
    starting Oracle instance without parameter file for retrival of spfile
    Oracle instance started
    Total System Global Area 159383552 bytes
    Fixed Size 2069720 bytes
    Variable Size 67111720 bytes
    Database Buffers 83886080 bytes
    Redo Buffers 6316032 bytes
    RMAN>run {
    2> allocate channel t1 device type 'SBT_TAPE';
    3> send 'NB_ORA_SERV=pobackup01, NB_ORA_CLIENT=sent1, NB_ORA_POLICY=jdeoracle, NB_ORA_SCHED=hotfull';
    4> restore spfile to pfile '/dbexport/oracle/bckup/test_restore/edipfile_new.ora' from autobackup until time 'SYSDATE-5';
    5> }
    using target database control file instead of recovery catalog
    allocated channel: t1
    channel t1: sid=36 devtype=SBT_TAPE
    channel t1: Veritas NetBackup for Oracle - Release 6.5 (2008052301)
    sent command to channel: t1
    Starting restore at 15-MAY-09
    channel t1: looking for autobackup on day: 20090510
    channel t1: autobackup found: c-1600196320-20090510-00
    channel t1: SPFILE restore from autobackup complete
    Finished restore at 15-MAY-09
    released channel: t1
    RMAN> shutdown abort;
    Oracle instance shut down
    \/\/\\/\/\//\//\/\/\/\/\ edit pfile from another session to remove references to old host
    RMAN> startup force nomount pfile='/dbexport/oracle/bckup/test_restore/edipfile_new.ora';
    Oracle instance started
    Total System Global Area 356515840 bytes
    Fixed Size 2070976 bytes
    Variable Size 314574400 bytes
    Database Buffers 33554432 bytes
    Redo Buffers 6316032 bytes
    RMAN> run {
    2> allocate channel t1 device type 'SBT_TAPE';
    3> send 'NB_ORA_SERV=pobackup01, NB_ORA_CLIENT=sent1, NB_ORA_POLICY=jdeoracle, NB_ORA_SCHED=hotfull';
    4> restore controlfile from autobackup until time 'SYSDATE-5';
    5> }
    allocated channel: t1
    channel t1: sid=156 devtype=SBT_TAPE
    channel t1: Veritas NetBackup for Oracle - Release 6.5 (2008052301)
    sent command to channel: t1
    Starting restore at 14-MAY-09
    channel t1: looking for autobackup on day: 20090510
    channel t1: autobackup found: c-1600196320-20090510-00
    channel t1: control file restore from autobackup complete
    output filename=/dbexport/oracle/bckup/test_restore/control01.ctl
    output filename=/dbexport/oracle/bckup/test_restore/control02.ctl
    Finished restore at 15-MAY-09
    released channel: t1
    RMAN> alter database mount;
    database mounted
    RMAN> @reco_2.rman
    RMAN> run
    2> {
    3> allocate channel t1 device type 'SBT_TAPE';
    4> send 'NB_ORA_SERV=pobackup01, NB_ORA_CLIENT=sent1, NB_ORA_POLICY=jdeoracle, NB_ORA_SCHED=hotfull';
    5> set newname for datafile 1 to '/dbexport/oracle/bckup/test_restore/system01.dbf';
    6> set newname for datafile 2 to '/dbexport/oracle/bckup/test_restore/tools01.dbf';
    7> set newname for datafile 4 to '/dbexport/oracle/bckup/test_restore/sysaux01.dbf';
    8> set newname for datafile 5 to '/dbexport/oracle/bckup/test_restore/users01.dbf';
    9> set newname for datafile 6 to '/dbexport/oracle/bckup/test_restore/indx01.dbf';
    10> set newname for datafile 7 to '/dbexport/oracle/bckup/test_restore/data01.dbf';
    11> set newname for datafile 8 to '/dbexport/oracle/bckup/test_restore/undo01.dbf';
    12> sql "ALTER DATABASE RENAME FILE ''/sdb1/oradata/edi/redo03.log'' TO ''/dbexport/oracle/bckup/test_restore/redo3.rdo'' ";
    13> sql "ALTER DATABASE RENAME FILE ''/sdb1/oradata/edi/redo02.log'' TO ''/dbexport/oracle/bckup/test_restore/redo2.rdo'' ";
    14> sql "ALTER DATABASE RENAME FILE ''/sdb1/oradata/edi/redo01.log'' TO ''/dbexport/oracle/bckup/test_restore/redo1.rdo'' ";
    15> sql "ALTER DATABASE RENAME FILE ''/sdb1/oradata/edi/redo05.log'' TO ''/dbexport/oracle/bckup/test_restore/redo5.rdo'' ";
    16> sql "ALTER DATABASE RENAME FILE ''/sdb1/oradata/edi/redo04.log'' TO ''/dbexport/oracle/bckup/test_restore/redo4.rdo'' ";
    17> restore database;
    18> switch datafile all;
    19> recover database noredo;
    20> }
    allocated channel: t1
    channel t1: sid=156 devtype=SBT_TAPE
    channel t1: Veritas NetBackup for Oracle - Release 6.5 (2008052301)
    sent command to channel: t1
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    sql statement: ALTER DATABASE RENAME FILE ''/sdb1/oradata/edi/redo03.log'' TO ''/dbexport/oracle/bckup/test_restore/redo3.rdo''
    sql statement: ALTER DATABASE RENAME FILE ''/sdb1/oradata/edi/redo02.log'' TO ''/dbexport/oracle/bckup/test_restore/redo2.rdo''
    sql statement: ALTER DATABASE RENAME FILE ''/sdb1/oradata/edi/redo01.log'' TO ''/dbexport/oracle/bckup/test_restore/redo1.rdo''
    sql statement: ALTER DATABASE RENAME FILE ''/sdb1/oradata/edi/redo05.log'' TO ''/dbexport/oracle/bckup/test_restore/redo5.rdo''
    sql statement: ALTER DATABASE RENAME FILE ''/sdb1/oradata/edi/redo04.log'' TO ''/dbexport/oracle/bckup/test_restore/redo4.rdo''
    Starting restore at 15-MAY-09
    channel t1: starting datafile backupset restore
    channel t1: specifying datafile(s) to restore from backup set
    restoring datafile 00001 to /dbexport/oracle/bckup/test_restore/system01.dbf
    restoring datafile 00002 to /dbexport/oracle/bckup/test_restore/tools01.dbf
    restoring datafile 00004 to /dbexport/oracle/bckup/test_restore/sysaux01.dbf
    restoring datafile 00005 to /dbexport/oracle/bckup/test_restore/users01.dbf
    restoring datafile 00006 to /dbexport/oracle/bckup/test_restore/indx01.dbf
    restoring datafile 00007 to /dbexport/oracle/bckup/test_restore/data01.dbf
    restoring datafile 00008 to /dbexport/oracle/bckup/test_restore/undo01.dbf
    channel t1: reading from backup piece 2jkeljgl_1_1
    channel t1: restored backup piece 1
    piece handle=2jkeljgl_1_1 tag=TAG20090510T080020
    channel t1: restore complete, elapsed time: 00:04:55
    Finished restore at 15-MAY-09
    datafile 1 switched to datafile copy
    input datafile copy recid=8 stamp=686913242 filename=/dbexport/oracle/bckup/test_restore/system01.dbf
    datafile 2 switched to datafile copy
    input datafile copy recid=9 stamp=686913242 filename=/dbexport/oracle/bckup/test_restore/tools01.dbf
    datafile 4 switched to datafile copy
    input datafile copy recid=10 stamp=686913242 filename=/dbexport/oracle/bckup/test_restore/sysaux01.dbf
    datafile 5 switched to datafile copy
    input datafile copy recid=11 stamp=686913242 filename=/dbexport/oracle/bckup/test_restore/users01.dbf
    datafile 6 switched to datafile copy
    input datafile copy recid=12 stamp=686913242 filename=/dbexport/oracle/bckup/test_restore/indx01.dbf
    datafile 7 switched to datafile copy
    input datafile copy recid=13 stamp=686913242 filename=/dbexport/oracle/bckup/test_restore/data01.dbf
    datafile 8 switched to datafile copy
    input datafile copy recid=14 stamp=686913242 filename=/dbexport/oracle/bckup/test_restore/undo01.dbf
    Starting recover at 15-MAY-09
    Finished recover at 15-MAY-09
    released channel: t1
    RMAN> **end-of-file**
    RMAN> alter database open resetlogs;
    database opened
    RMAN> exit
    Edited by: PktAces on May 18, 2009 8:04 AM

  • IPad 2, restore & setup as new, then restore from backup?

    Confused yet? I am!
    So here we go, yes, I'm new to the forum, I've had my iPad 2 since Oct. 2011. And No, this problem isn't in my head.
    Last week, I finally updated to iOS 5.1.1, and I deeply regret doing so. I had NO issue before the update, and now, my battery is garbage.
    I used to be able to go 2 - 3 days before having to charge and that's with an average of 4 hours a day. Now, after just a few hours (5) I have to charge and it takes forever. I've been working with Apple, but they having given me an option I'm happy with.
    1) Mail my unit back to them to switch out with a refurb. I am against this option as I like my unit. I didn't originally buy a refurb and I should have to accept one now. The screen on my unit is perfect, no bleed or dead pixels. I've taken immaculate care of mine and I'm afraid I'll get a unit I'm not happy with. Plus, it will be running iOS 6, which I'm not ready for.
    Option two is...and this needs to be done whether I return my unit or not, is a restore and setup as new. Which means I would loose all my information buried deep within my apps. This would also install iOS 6 on my unit.
    My question is this...
    If I do a Restore, Setup as new, can I then go back in and do a restore from back up, to put all my stuff back in its place.
    I'd love to hear from anyone that has any insight, suggestions, experience, or comments about this.
    How did you handle it?
    What was the outcome?
    Did you involve Apple in the resolution?
    Or,
    Is it just not worth dealing with and I should just keep using it until it won't take a charge.
    I know there have been a million posts about this, and I've read a lot of them, but I just haven't found a solution yet.
    And before anyone states the obvious, ALL locations are off, all email accounts are set to manual, there are no notifications set.
    In the past week, I've done 3 reset all settings, drained battery until system shut down, and did an uninterrupted full charge.
    I've reset network settings. I make sure apps are closed by double tapping Home button, and done a hard reset by holding power button and home button until apple icon appears. I'm at a loss, and don't know what else to do.

    First, make sure you are using the most current version of iTunes 11.1.3 (8).  Second, what version of iOS 7 was your old phone running, i.e. 7.0, 7.0.1, 7.0.2? If your back-up was made with a version of iOS that is newer than the version on your new phone, it will not sync. For example, if your back-up was of a phone running iOS 7.0.4, and your new phone was running 7.0.2 out of the box, the back up will not sync to the new phone until it is updated to iOS 7.0.4.

  • I want to install hybrid drive in Macbook pro. I bought my Mac book with lion and am now running mountain lion. I was told I needed install disk to set up new drive before restoring from my time capsule.Is this correct and if so how do I get disk osx10?

    I purchased a Mac book Pro in Aug 2012 with lion and have upgraded to mountain lion. I currently am looking to install the segate 750 gig hybrid drive. I watching video I shows me needing a OSX 10 disk to boot off of when the new disk is in and the use time capsule to restore system from back up drive to new hybrid. Hope I got this correct so far. that being said my Mac Book did not come with a disk therefore is one available, when I get to point of restoring from back up with it be the same mountain lion system I had. Sorr if this sounds redudant.. Thank you in advance

    Connect the new hybrid drive to your MBP.  Start up your MBP holding the OPTION key, the two HDD icons will appear.  Select the 'restore' icon on the right.  When you get to the menu where you have 4 options, select Disk Utility.  Format the drive and then you can use the option of restoring it from Time Machine.
    Ciao.

  • My computer says it's been synced with another device besides my own, and it wont let me do anything in itunes until I either start up the device as a new one, or restore from another back up, and i dont know what to do!

    I got the new ipad several weeks ago, and since i had the ipad 2 before it, i transfered the data from it to my computer and gave the ipad 2 (techinally new since it had nothing on it) to a family member. Now, when I go to itunes on my computer with the new ipad, it says that the computer has already been synced with another device, and my only two options are to set the ipad up as a new one or to restore from a backup (my up-to-date backup for the new ipad does not come up on itune's list of backups that went to my computer). So now because of this, there is no way i can put anything from my computer to the ipad, or even look at it through Itunes on the computer! Is there any other option for me?! I need help now!!

    I found this article some time ago when I was trying to help someone else in this same situation. This is a copy and paste from the website. The website is provided below for you to read before you try this.
    Plug your phone into iTunes
    Click setup as a new device
    Immediately unplug your phone from the computer
    Give it about 30 seconds and iTunes will give a message (I don’t remember the specific, but regarding you unplugging the device and it not completing)
    Plug your phone back in
    Viola! no restore occurred and you can access everything again
    This computer has previously synced with an iPhone or another iOS device.

  • HT1766 I am trying to restore a new replacement phone from an icloud backup but it is telling me there is a problem with backup data. The backup was done under 7.1 and I think the new phone still just has 7.04. My itunes backup was lost last week...sugges

    I am trying to restore from icloud but it appears the 7.1 it was backed up in and the 7.04 on the new phone won't allow it. My itunes library was lost last week due to computer crashing and having to be restored. I have a clean very current icloud back up done on March 21st but I cant seem to get it there. Suggestions please?

    You will have to update the iPhone to iOS 7.1 if that is the iOS the backup was done in. You cannot restore a newer iOS update to a phone with older iOS. Once you update the phone, you will be able to restore the backup.

  • I am trying to restore a new iPad from iCloud but it is saying there 'are no iCloud backups are compatible with the version of iOS (6.0) on this ipad' my previous back ups had been iOS 6.1.2

    Please help

    I think that imobl hit the nail on the head.
    The OP is trying to restore an iOS 6.1.2 backup on his new iPad that is only running 6.0. You can't restore from a newer iOS backup to an older iOS. The OP has to update the new iPad to iOS 6.1.2 and then it will work.

  • Should I "restore" a new macbook pro retina from a time machine backup of old mackbook pro?

    I'm considering buying a new Macbook Pro Retina. 15".
    Now I'm using a 2007 2.4 GHz Core 2 Duo MBP 15" running Lion.  It works fine most of the time. Occasionally an application will freeze and I need to force quit.
    It seems like the most convenient option would be to restore the new machine from the last Time Machine backup of the old. The benefit is that I'd feel confident that all of my stuff is on the new machine. The downside is that maybe glitches that had developed in the current system over the ~5 years would be transferred over to the new machine.
    Or I could make a fresh start with the new machine and invest the time needed to transfer over the iPhoto, iTunes libraries and Documents folder and reinstall all the third party applications. I have an external optical drive to use the installation disks where necessary. The benefit would seem to be that any glitches that had developed in the old system might be avoided. The downside is that this would take a very long time.
    What's the recommened method of migrating from an old machine to a new one?

    Instead of a restore from Time Machine, I would suggest that you use Setup Assitant that comes up the first time you start the new Mac.
    Connect the TM drive to the new Mac before you power it up
    Then when the new Mac asks if you wish to recover from an older Mac say yes
    Then select from Time Machine
    This will keep everything in the system for the new hardware and bring over everything else.
    Allan

  • How can I restore an app and its data from an old ipad to a new ipad without restoring from backup?

    When I purachsed and iPad 2 to replace my old iPad I did not want to restore it from backup for obvious reasons.  However, there are apps that have data stored in them that I have lost the data for, what can I do to get the app and data back on the new iPad without losing the data that was already in the app?

    griffaroo wrote:
    When I purachsed and iPad 2 to replace my old iPad I did not want to restore it from backup for obvious reasons. 
    The reasons may be obvious to you, but it makes no sense to me. I would think that you would want all of the content that you had transfered onto your new iPad.
    However, there are apps that have data stored in them that I have lost the data for, what can I do to get the app and data back on the new iPad without losing the data that was already in the app?
    If you lost the data in the apps, you can't get it back unless you restore from a backup - assuming that the backup DID have that data in the apps..
    The only way that you can get the apps PLUS the app data onto the new iPad is to restore the new iPad from a backup of the original iPad and sync the apps back onto the new iPad if necessary.

  • I did the new software update and now my phone wont work at all and keeps saying it needs to be restored from back up

    I had my phone plugged in to my iTunes yesterday and downloaded the new software. I then went to install the new software and it crashed half way through with an error message. Then it went off completely and wiped everything. I tried to restore from back up and now it says it has restored from yesterdays back up, restarts afterwards and says it needs to restore from back up again. and just goes round and round doing that. Even if i try an earlier back up. I also tried wiping everything back to factory settings and restoring from back up and that did the same as above. Please help!!

    Something in your backup may be corrupt. Try wiping it and setting it up as a new device, then sync your apps, data and media back to it from iTunes. DO NOT resotre from your backup. If the problem is contained in the backup, it will bring it right back again if you restore.

  • If I restored my new iPhone from iCloud backup, and I delete the old iPhone backup to make room on iCloud to back up my new phone, will it delete everything on the new phone?

    If I restored my new iPhone from iCloud backup, and I delete the old iPhone backup to make room on iCloud to back up my new phone, will it delete everything on the new phone?

    I have this exact same issue.  Replaced my iPhone 4s with the new iPhone 5s, setting up my new iPhone 5s to restore from iCloud.  This completed and now I am unable to delete my old iPhone 4s iCloud backup (consuming 15.1 GB of my 20GB allocation).  How can I delete it, so that I get my 15 GB back?  I am not going to invest in additional iCloud storage, because I will be 15 GB down from the off.

  • HT1766 If I restore my new iphone from my last backup will it delete all of the new things that i have on my phone

    If i restore my new iphone from my last backup will it delete all of the new content that I currently have on my phone? would it be better off to set it up as a new iphone? and if i set it up as a new iphone what will that do?

    If you restore from your last backup, it will replace what you now have on your phone. If you set it up as new, you will have a phone just out of the box without any of your data on it. You can download any apps again. You can sync your music through iTunes.

Maybe you are looking for

  • RFBIBL00 usage

    I am hoping someone can help me out with the usage of RFBIBL00 with some sample code and tips.  I am trying to submit the program with a flexible dsn generated from file_get_name with no success. Also a format for the subsequent submission of RSBDCSU

  • Transaction RERAPP - Reconcil.acct is missing in master record; correct mas

    Hi gys. I have problems during the execution of the transaction RERAPP. Occurs the following message: Reconcil.acct is missing in master record; correct master record Message no. F5144 What it´s this master record that is informed? Tks Lucas

  • How do I fix error 1003

    I am trying to play the iTunes Radio and get the following error message; "Unable to check for available downloads.  An unkionwn error occured (1003)." How do I fix this error?

  • MSI MPOWER Renesas USB 3 problem WINDOWS 8 64x

    Hi This morning, all my 4 usb 3 RENESAS ports stop working...Intel ports work well. Looking for driver update but doesnt found for WINDOWS 8 64x... If you have beta driver i take it ! Thanks

  • When will the commited Changes progate to Datafiles ?

    Hi Experts, I have gone through the bellow link . In other words, you are absolutely correct to say that the data is already in the data files. But DBWR flushes regardless of whether something is committed or not. Therefore the data files during norm