Restore from rman - kindly help

Hi,
I'm new with RMAN and need some help from experts here.
my database is in archivelog.
version: 10.2.0.3
rman with recovery catalog.
I have backup my database (online) using rman by executing the following:
RMAN> run
allocate channel c1 type disk1;
backup database format 'db_%u_%d_%s';
backup format 'log_t%t_s%s_p%p'
(archivelog all);
after backup up, i deleted my datafiles, controlfiles, redologs, archivelogs. may i know how can i restore the db using the backup set?>
thanks

You need to startup the database using the snapshot controlfile then connect to the database using RMAN
rman target /
Then you can commence an incomplete recovery. Do a 'list backup summary' or even better 'list backup' to check that the backup/s is/are listed in there. One method is to work out what point in time you can restore using 'set until scn|time', the maximum point at your last backup (usually max/last SCN on the last archivelog -1). Remember, because it is an incomplete recovery you need to open database resetlogs and regardless of complete/incomplete recreate TEMP (although this may already get recreated in 10g).
As recommended see the documentation.

Similar Messages

  • Trying to restore from Time Machine - HELP please

    I tried to restore from time machine this morning...and am getting this error :good morning, "an error occurered (2) while copying, there is no such file or directory"
    any idea?????
    TIA

    lol, it didn't say goodmorning.
    Last night my mac froze, i had to turn it off buy the button on the back...i tried to turn it on, it just hangs at the gray screen with the apple on it and the little circle things goes around and around and around. I put in my leopard OS disk and went to utilities to do a disk scan repair, it said no valid packages found...i dont know what to do with that...Ithought i could do a simple restore from my time machine...what you saw above is the error i got...
    I don't know what to do or how to get my machine back to normal.
    Can you help me?

  • 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

  • Restoring from RMAN tablespace backup ; Few questions

    11.2.0.3/RHEL 5.8
    We have a RAC DB which is used by more than 20 applications. One schema for each application and one tablespace for each schema.
    We have a schema with 130gb in size. All Objects in this schema use a single tablespace MCS_DATA.
    This weekend we are applying some changes involving DDL, Code and Data .Usually we take an expdp backup of the schema before the activity starts and later if something goes wrong with script deployment we'll revert to old state by dropping the schema and doing an impdp from the expdp backup.
    Question1.
    Can we do an RMAN tablespace only backup and if something goes wrong with script deployment can we drop the schema and the tablespace and then create an empty schema and then restore from the tablespace backup ?
    Question2.
    If the above is possible , can you explain how it is going to work out because we are essentially plugging (restore,recover) in a tablespace to the database. Any potential problems ?
    Question3. If the above (Question1) is possible, will restore/recover of this tablespace require a downtime for the entire DB ?

    Tom;
    If you are talking about RMAN TSPITR then yes you can. See - Purpose of RMAN TSPTIR in Backup and Recovery User's Guide E10642-03.
    The problem with TSPTIR is bulk. You need a lot of disk space to create a copy and then data pump the information out and back in. I just tested this on 11.2.0.3 and its slow. RMAN created a script which produced an AUX instance and did the data pump, but I had clean up afterwards. If it errors out you can have an AUX instance hanging out in the background.
    For TSPTIR you will need an area on the disk to server as an auxiliary destination large enough to hold what you are recovering plus the SYSTEM, UNDO and TEMP tablespaces.
    I would probably look at Transportable tablespaces as a possible option too.
    http://docs.oracle.com/cd/E25054_01/backup.1111/e10642/rcmttbsb.htm
    E10642-03 has a section for recovering a tablespace in chapter 2. The Tablespace must be offline, but the database can be up.
    This uses "restore tablespace" and "recover tablespace" commands. You would perform this type of recovery when you are say missing a datafile. You can recover any tablespace except SYSTEM and UNDO with this.
    Data Pump might be an option too, but given your tablespace size I would have worries about recovery time. Oracle lets you set compression
    and a limit to each file produced.
    expdp TABLESPACES=YOUR_DATA dumpfile=DATA_PUMP_DIR:ts_dumps_%U.dmp LOGFILE=DATA_PUMP_DIR:ts_dumps_log.log parallel=2 filesize=10G compression=ALL
    Given the size of your database a better option might be something like Data Guard as your recovery time would be brutal.
    Best Regards
    mseberg

  • I want to erase from Leopard and restore from Time Machine, help!

    I'm about to reinstall Leopard and I want to zero all of my internal hard drives and start fresh. (im trying to get to the bottom of a kernel problem).
    Anyways last night I did a Time Machine backup to a new 2TB WD HD. Everything appears to be backed up fine, but I want to make sure I can restore from Time Machine before I go and do this.
    Please let me know if there are any precautions I should take into consideration or if there is a good way to go about doing this.
    Thanks!

    You could try restoring your backup to a new drive before you over-write your working system. That will allow you to test your backup and skills before risking too much down time.
    Add a drive large enough to restore the backup to and boot from the Leopard DVD. After you choose your language you can get to the Utility menu to restore Leopard from a TM drive.
    Here's a pretty good "walk thru" on the entire process:
    http://duncandavidson.com/blog/restoringfrom_timemachine/

  • HT201269 I bought a new 4GS and I'm trying to restore my apps and such. I've gone through the 'restore from backup' process twice and iTunes still wants to set up as a new phone or restore from backup. Help?

    The title tells you my predicament. I can't put music and such on until I get past this screen in iTunes.

    If iTunes is on the computer is giving you the option to 'Restore from backup' or 'Set up as new phone' then select 'Set up as new'
    Basically, it's you telling iTunes that this is the first time this device has connected. You won't lose anything, and you'll then be able to sync.

  • Spfile restore from RMAN Tape backup to different server

    Hi All,
    First of all let me thank you to the forum from which I keep updating my knowledge on oracle.
    I am having issues when trying to restore spfile from controlfile autobackup to different server. Problem and other details are below:
    Target version : 10.2.0.2
    Netbackup : 6.5.6
    Taken the tape backup through rman on server ABC and trying to restore the spfile from controlfile autobackup to server XYZ. Tape backup has been taken today morning and trying restore now.
    Both servers ABC and XYX have been added (as clients) to netbackup policy.
    Below is the syntax I used for restoring spfile and getting error as mentioned.
    RMAN> run {
    2> set controlfile autobackup format for device type 'SBT_TAPE' to '%F';
    3> allocate channel ch00 device type 'sbt_tape'
    4> parms='ENV=(NB_ORA_SERV=Mediaserver,NB_ORA_CLIENT=XYZ)';
    5> restore spfile to pfile '/oracle/product/10g/dbs/inittest.ora' from
    6> autobackup maxseq 5 maxdays 3;
    7> }
    executing command: SET CONTROLFILE AUTOBACKUP FORMAT
    allocated channel: ch00
    channel ch00: sid=36 devtype=SBT_TAPE
    channel ch00: Veritas NetBackup for Oracle - Release 6.5 (2010042405)
    Starting restore at 03-AUG-2011
    channel ch00: looking for autobackup on day: 20110803
    channel ch00: looking for autobackup on day: 20110802
    channel ch00: looking for autobackup on day: 20110801
    channel ch00: no autobackup in 3 days found
    released channel: ch00
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of restore command at 08/03/2011 14:03:26
    RMAN-06172: no autobackup found or specified handle is not a valid copy or piece
    Not sure where I am doing wrong. The same can be restored onto same host (I.E ABC) without any issues .
    Request your help and guidance.
    Thanks,
    SSS

    I don't know whether you can restore to a different server. The easier way should be
    RMAN> restore spfile to pfile 'YOUR_PFILE_NAME' from autobackup;
    then copy this to the new host.
    Check this link
    restore spfile to another host
    Hope this helps

  • Time Machine Restore from eSATA drive - Help!!

    Hello, I have an eSATA drive that I have used for my Time Machine backup. It worked great for partial restores of files etc. But my boot HD went down so now I have to do a complete restore. When I put in the Leopard DVD it does not recognize my eSATA drive RAID. I had to install a driver to use the RAID. Is there any way that I can get the Leopard DVD to install that driver and then restore everything from my eSATA drive? I have the driver on a USB thumb drive but other than the disk utility it is not recognized. Could I do this through the Terminal? I hope that someone can help me. I have Applecare but the information again it was on the original drive. Yes I could take it to an Apple store but that is four hours drive one way from here. Don't have a day to do that! Please help me!!

    Time Machine full system restores only work if the backup disk doesn't need drivers separate from Mac OS X to mount. To make a long story short, you CAN'T do a full system restore with the disk your backups are on.

  • Restore from rman

    Hi All,
    you can see my backup sets below, also i have all backset files in the flash recovery area.
    List of Backups
    ===============
    Key TY LV S Device Type Completion Time #Pieces #Copies Compressed Tag
    89 B 1 A DISK 24-05-2010 15:36:04 1 1 NO BACKU
    P_BISE1DB_000_052410030823
    90 B 1 A DISK 24-05-2010 15:36:13 1 1 NO BACKU
    P_BISE1DB_000_052410030823
    91 B 0 A DISK 25-05-2010 12:01:09 1 1 NO TAG20
    100525T113815
    92 B 0 A DISK 25-05-2010 12:01:13 1 1 NO TAG20
    100525T113815
    93 B 1 A DISK 25-05-2010 12:01:55 1 1 NO TAG20
    100525T120152
    94 B 1 A DISK 25-05-2010 12:04:55 1 1 NO TAG20
    100525T120451
    95 B 1 A DISK 25-05-2010 13:55:00 1 1 NO TAG20
    100525T134431
    96 B 1 A DISK 25-05-2010 13:55:09 1 1 NO TAG20
    100525T134431
    97 B 1 A DISK 25-05-2010 14:01:43 1 1 NO TAG20
    100525T140139
    98 B 1 A DISK 25-05-2010 14:55:33 1 1 NO TAG20
    100525T140356
    when i use script below,
    RUN
    RESTORE DATABASE;
    RECOVER DATABASE;
    the last backup set is considered and restored to the datafile location,
    so if i need to restore database from first back up in the list, how is it script like? or another backset from disc?
    thank you

    zekeriya besiroglu wrote:
    send me
    list backupset
    :)List of Backup Sets
    ===================
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    89 Incr 1 13.26G DISK 00:26:49 24-05-2010 15:36:04
    BP Key: 90 Status: AVAILABLE Compressed: NO Tag: BACKUP_BISE1DB_000_
    052410030823
    Piece Name: D:\TESTBI_BACKUP\32LEG5CR_1_1
    List of Datafiles in backup set 89
    File LV Type Ckp SCN Ckp Time Name
    1 1 Incr 5785459936 24-05-2010 15:08:59 D:\ORACLE\BISE1\ORADATA\BISE1DB\SY
    STEM01.DBF
    2 1 Incr 5785459936 24-05-2010 15:08:59 D:\ORACLE\BISE1\ORADATA\BISE1DB\UN
    DOTBS01.DBF
    3 1 Incr 5785459936 24-05-2010 15:08:59 D:\ORACLE\BISE1\ORADATA\BISE1DB\SY
    SAUX01.DBF
    4 1 Incr 5785459936 24-05-2010 15:08:59 D:\ORACLE\BISE1\ORADATA\BISE1DB\US
    ERS01.DBF
    5 1 Incr 5785459936 24-05-2010 15:08:59 D:\ORACLE\BISE1\ORADATA\BISE1DB\EX
    AMPLE01.DBF
    7 1 Incr 5785459936 24-05-2010 15:08:59 D:\ORACLE\BISE1\ORADATA\BISE1DB\DW
    H_PRD_DIMENSIONS_01.DBF
    8 1 Incr 5785459936 24-05-2010 15:08:59 D:\ORACLE\BISE1\ORADATA\BISE1DB\DW
    H_PRD_FACTS_01_REORG0_REORG0.DBF
    9 1 Incr 5785459936 24-05-2010 15:08:59 D:\ORACLE\BISE1\ORADATA\BISE1DB\DW
    H_PRD_INDEXES_01.DBF
    10 1 Incr 5785459936 24-05-2010 15:08:59
    11 1 Incr 5785459936 24-05-2010 15:08:59 D:\ORACLE\BISE1\ORADATA\BISE1DB\DW
    H_TST_DIMENSIONS_01.DBF
    12 1 Incr 5785459936 24-05-2010 15:08:59 D:\ORACLE\BISE1\ORADATA\BISE1DB\DW
    H_TST_FACTS_01_REORG0_REORG0.DBF
    13 1 Incr 5785459936 24-05-2010 15:08:59 D:\ORACLE\BISE1\ORADATA\BISE1DB\DW
    H_TST_INDEXES_01.DBF
    15 1 Incr 5785459936 24-05-2010 15:08:59 D:\ORACLE\BISE1\ORADATA\BISE1DB\DW
    H_TST_STAGING_01_REORG0.DBF
    16 1 Incr 5785459936 24-05-2010 15:08:59
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    90 Incr 1 7.14M DISK 00:00:02 24-05-2010 15:36:13
    BP Key: 91 Status: AVAILABLE Compressed: NO Tag: BACKUP_BISE1DB_000_
    052410030823
    Piece Name: D:\TESTBI_BACKUP\33LEG6VB_1_1
    Control File Included: Ckp SCN: 5785459936 Ckp time: 24-05-2010 15:08:59
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    91 Incr 0 10.18G DISK 00:22:53 25-05-2010 12:01:09
    BP Key: 92 Status: AVAILABLE Compressed: NO Tag: TAG20100525T113815
    Piece Name: D:\TESTBI_BACKUP\37LEIDD8_1_1
    List of Datafiles in backup set 91
    File LV Type Ckp SCN Ckp Time Name
    1 0 Incr 5785541520 25-05-2010 11:34:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\SY
    STEM01.DBF
    2 0 Incr 5785541520 25-05-2010 11:34:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\UN
    DOTBS01.DBF
    3 0 Incr 5785541520 25-05-2010 11:34:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\SY
    SAUX01.DBF
    4 0 Incr 5785541520 25-05-2010 11:34:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\US
    ERS01.DBF
    5 0 Incr 5785541520 25-05-2010 11:34:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\EX
    AMPLE01.DBF
    6 0 Incr 5785541520 25-05-2010 11:34:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\DW
    H_PRD_STAGING_01_REOR_REORG0.DBF
    7 0 Incr 5785541520 25-05-2010 11:34:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\DW
    H_PRD_DIMENSIONS_01.DBF
    8 0 Incr 5785541520 25-05-2010 11:34:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\DW
    H_PRD_FACTS_01_REORG0_REORG0.DBF
    9 0 Incr 5785541520 25-05-2010 11:34:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\DW
    H_PRD_INDEXES_01.DBF
    11 0 Incr 5785541520 25-05-2010 11:34:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\DW
    H_TST_DIMENSIONS_01.DBF
    12 0 Incr 5785541520 25-05-2010 11:34:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\DW
    H_TST_FACTS_01_REORG0_REORG0.DBF
    13 0 Incr 5785541520 25-05-2010 11:34:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\DW
    H_TST_INDEXES_01.DBF
    14 0 Incr 5785541520 25-05-2010 11:34:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\DW
    H_PRD_STAGING_02_REOR_REORG0.DBF
    15 0 Incr 5785541520 25-05-2010 11:34:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\DW
    H_TST_STAGING_01_REORG0.DBF
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    92 Incr 0 7.14M DISK 00:00:01 25-05-2010 12:01:13
    BP Key: 93 Status: AVAILABLE Compressed: NO Tag: TAG20100525T113815
    Piece Name: D:\TESTBI_BACKUP\38LEIEO8_1_1
    Control File Included: Ckp SCN: 5785541520 Ckp time: 25-05-2010 11:34:46
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    93 Incr 1 7.14M DISK 00:00:01 25-05-2010 12:01:55
    BP Key: 94 Status: AVAILABLE Compressed: NO Tag: TAG20100525T120152
    Piece Name: D:\TESTBI_BACKUP\3ALEIEPI_1_1
    Control File Included: Ckp SCN: 5785541520 Ckp time: 25-05-2010 11:34:46
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    94 Incr 1 7.14M DISK 00:00:02 25-05-2010 12:04:55
    BP Key: 95 Status: AVAILABLE Compressed: NO Tag: TAG20100525T120451
    Piece Name: D:\TESTBI_BACKUP\3CLEIEV5_1_1
    Control File Included: Ckp SCN: 5785541520 Ckp time: 25-05-2010 11:34:46
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    95 Incr 1 2.26G DISK 00:10:28 25-05-2010 13:55:00
    BP Key: 96 Status: AVAILABLE Compressed: NO Tag: TAG20100525T134431
    Piece Name: D:\TESTBI_BACKUP\3DLEIKQ0_1_1
    List of Datafiles in backup set 95
    File LV Type Ckp SCN Ckp Time Name
    1 1 Incr 5785721069 25-05-2010 13:41:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\SY
    STEM01.DBF
    2 1 Incr 5785721069 25-05-2010 13:41:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\UN
    DOTBS01.DBF
    3 1 Incr 5785721069 25-05-2010 13:41:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\SY
    SAUX01.DBF
    4 1 Incr 5785721069 25-05-2010 13:41:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\US
    ERS01.DBF
    5 1 Incr 5785721069 25-05-2010 13:41:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\EX
    AMPLE01.DBF
    6 1 Incr 5785721069 25-05-2010 13:41:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\DW
    H_PRD_STAGING_01_REOR_REORG0.DBF
    7 1 Incr 5785721069 25-05-2010 13:41:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\DW
    H_PRD_DIMENSIONS_01.DBF
    8 1 Incr 5785721069 25-05-2010 13:41:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\DW
    H_PRD_FACTS_01_REORG0_REORG0.DBF
    9 1 Incr 5785721069 25-05-2010 13:41:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\DW
    H_PRD_INDEXES_01.DBF
    11 1 Incr 5785721069 25-05-2010 13:41:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\DW
    H_TST_DIMENSIONS_01.DBF
    12 1 Incr 5785721069 25-05-2010 13:41:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\DW
    H_TST_FACTS_01_REORG0_REORG0.DBF
    13 1 Incr 5785721069 25-05-2010 13:41:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\DW
    H_TST_INDEXES_01.DBF
    14 1 Incr 5785721069 25-05-2010 13:41:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\DW
    H_PRD_STAGING_02_REOR_REORG0.DBF
    15 1 Incr 5785721069 25-05-2010 13:41:46 D:\ORACLE\BISE1\ORADATA\BISE1DB\DW
    H_TST_STAGING_01_REORG0.DBF
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    96 Incr 1 7.14M DISK 00:00:01 25-05-2010 13:55:09
    BP Key: 97 Status: AVAILABLE Compressed: NO Tag: TAG20100525T134431
    Piece Name: D:\TESTBI_BACKUP\3ELEILDS_1_1
    Control File Included: Ckp SCN: 5785721069 Ckp time: 25-05-2010 13:41:46
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    97 Incr 1 7.14M DISK 00:00:02 25-05-2010 14:01:43
    BP Key: 98 Status: AVAILABLE Compressed: NO Tag: TAG20100525T140139
    Piece Name: D:\TESTBI_BACKUP\3GLEILQ5_1_1
    Control File Included: Ckp SCN: 5785721069 Ckp time: 25-05-2010 13:41:46
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    98 Incr 1 7.14M DISK 00:00:01 25-05-2010 14:55:33
    BP Key: 99 Status: AVAILABLE Compressed: NO Tag: TAG20100525T140356
    Piece Name: D:\TESTBI_BACKUP\3VLEIOV4_1_1
    Control File Included: Ckp SCN: 5785721069 Ckp time: 25-05-2010 13:41:46

  • My Iphone still wont show in Itunes ,I have restored to factory settings as a last resort and now it wond restore fromI tunes -please help.Have followed steps ,re-starting etc

    my Iphone wouldnt connect to I tunes -I wanted to update .
    I did ring apple support and was guided through restoring to factory settings .My phone was supposed to then re-start and appear in I tunes .It hasnt and I have  a phone which is useless .Please help ????

    You didn't specify what OS your computer is.
    Windows: http://support.apple.com/kb/ts1538
    Os x: http://support.apple.com/kb/ts1591

  • RMAN backup restoring to new server help!

    I'm using Oracle 8.1.7. The production database was copied (datafiles, controlfile etc) to a NEW server that I'm trying to set up as a development DB. I take full database backups using RMAN from the production server, and I want to restore them on the development server. I think I somehow have to specify the filename/location of the backup file but I can't seem to figure out how to do it.
    I am not using a recovery catalog.
    Any help is appreciated.

    If you restore the controlfile backup to the development server RMAN
    will "read" the expected location of the backupsets from there.
    In 8i you cannot use the CATALOG command so you have to copy all
    the backupsets to the same path on the development server as on the
    production server.
    Once you have your init.ora and controlfiles in place (and created the
    expected target directory structure for the database and redolog files),
    you can use STARTUP MOUNT and thene RESTORE from RMAN.
    I believe that you should be able to rename files in 8i RMAN as well.
    If not, you'll have to stick to restoring to the same location.
    The key thing is that the controlfile records the "location" of the RMAN backupsets
    and the "location" where datafiles are to be restored to.

  • Steps to  setup MML on veritas Netbackup to perform rman restore from tape

    RMAN backup is taken to tape...
    can anyone please give the steps to setup the MML on veritas Netbackup ...
    and also the steps to perform rman restore from tape to a new server ....
    Thanks in advance

    can u please answer them ..
    1)how to find out that the which tape is mounted on a backup server ?? command please ....
    2)how to find out that the rman backup was successful on the tape ?
    3)how to find out what are the tapes involved in that backup ?
    4)do u have to the create a auxillary database while restoring from rman by tape to a new server ?
    5)is there a way to findout how many GB completed in x timeframe by RMAN on oracle 11.2.0.2/10g and and oracle 9i during the backup process ??
    and also please answer ...
    #)RMAN backup is taken to tape...
    can anyone please give the steps to setup the MML on veritas Netbackup ...
    and also the steps to perform rman restore from tape to a new server ....
    and
    #)--- can i know the steps for the MML
    CATALOG command to define new locations
    ----May i know the commands

  • Hello,everyone.i purchased an iphone 5S from a retailer in my country after coming back to my home i restore this iphone it shows an activation id but i dont know what i have to do now?my apple id does not work in this situation.kindly help me out

    Hello,everyone.i purchased an iphone 5S from a retailer in my country after coming back to my home i restore this iphone it shows an activation id but i dont know what i have to do now?my apple id does not work in this situation.kindly help me out because it cost me to high and if this is not activated i have to bear a huge loss.i am a loyal customer of apple from a past 5 years.thank you for your cooperation

    Yes, this is activation lock. Return the phone for a refund, as it is useless without the activation information of the previous owner.

  • How to transfer file from ipod touch to i tunes. i have files in my ipod , ut itunes is  new so its telling if u sync the ipod all the files will be replaced but no files in the itunes.. so kindly help me how to transfer the files  from i pod to itunesb

    how to transfer file from ipod touch to i tunes. i have files in my ipod , ut itunes is  new so its telling if u sync the ipod all the files will be replaced but no files in the itunes.. so kindly help me how to transfer the files  from i pod to itunes......

    Some of the information below has subsequently appeared in a document by turingtest2: Recovering your iTunes library from your iPod or iOS device - https://discussions.apple.com/docs/DOC-3991
    Your i-device was not designed for unique storage of your media. It is not a backup device and media transfer was designed for you maintaining a master copy of your media on a computer which is itself properly backed up against loss. Syncing is one way, computer to device, updating the device content to the content on the computer, not updating or restoring content on a computer. The exception is iTunes Store purchased content.
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer - http://support.apple.com/kb/HT1848 - only media purchased from iTunes Store
    For transferring other items from an i-device to a computer you will have to use third party commercial software. Examples (check the web for others; this is not an exhaustive listing, nor do I have any idea if they are any good):
    - Senuti - http://www.fadingred.com/senuti/
    - Phoneview - http://www.ecamm.com/mac/phoneview/
    - MusicRescue - http://www.kennettnet.co.uk/products/musicrescue/
    - Sharepod (free) - http://download.cnet.com/SharePod/3000-2141_4-10794489.html?tag=mncol;2 - Windows
    - Snowfox/iMedia - http://www.mac-videoconverter.com/imedia-transfer-mac.html - Mac & PC
    - iexplorer (free) - http://www.macroplant.com/iexplorer/ - Mac&PC
    - Yamipod (free) - http://www.yamipod.com/main/modules/downloads/ - PC, Linux, Mac [Still updated for use on newer devices? No edits to site since 2010.]
    - 2010 Post by Zevoneer: iPod media recovery options - https://discussions.apple.com/message/11624224 - this is an older post and many of the links are also for old posts, so bear this in mind when reading them.
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive - https://discussions.apple.com/docs/DOC-3141 - dates from 2008 and some outdated information now.
    Copying Content from your iPod to your Computer - The Definitive Guide - http://www.ilounge.com/index.php/articles/comments/copying-music-from-ipod-to-co mputer/ - Information about use in disk mode pertains only to older model iPods.
    Get Your Music Off of Your iPod - http://howto.wired.com/wiki/Get_Your_Music_Off_of_Your_iPod - I am not sure but this may only work with some models and not newer Touch, iPhone, or iPad.
    Additional information here https://discussions.apple.com/message/18324797

  • Need Urgent help please? I need to restore from a previous iphone backup.

    Oops, I admit it - I messed up but need help please?? I received a replacement iphone today. My broken iphone OS and my itunes had the latest software updates and I did a full backup before going to the store to get the rerplacement. However, when I got home with the replacement iphone and plugged it in, it asked if I wanted to update the OS on it. I made the mistake of saying yes. It then made a backup of the empty factory settings from the new replacement and restored from that rahter than the backup I made before going to the store. Yes I know I should have said no and just did the restore which would have resotred my previous backup that I made before going to the store. Then after everything would be allright I could have told it to update the OS.
    You can slap my in the face or I will do it myslef for making such a stupid mistake. All ready did the "I should have had a V" thing to my forehead.
    After seeing the restore was fromthe factory settings rather than my earlier good backup, I went into my documents and drilled down to the mobile sync backup and saw that one of the three folders (with giberish as a title) has a lot of information with the date and time I did the backup before going to the store.
    Could I possibly delete the later (factory setting backup) folder and then do a restore to get my good backup onto the iphone? I didn't do that yet in fear that it might mess something else up on the iphone and I wanted to check with you experts here first for guidance and assistance, PLEASE?
    I'll be anxiously awaiting any help you can give!
    Thank you!!

    rwmac22 wrote:
    Hopt and OneOrangeTree, Thank you both very much for replying!!
    It took me a long time to get back to the dissucison group because I tried both of your suggestions which therfore had to do about 4 restores. They take quite a while (about 50 minutes each actually). Your help got me half way there and is very apprecaited! I did manage (with your excellent help) to get most of my backup put onto the replaced iphone. the photos, music, and videos didn't get put over. I think I can move those back over by making sure they are selected in the seperate tabbed screens for the iphone. However, I can't get to those screens because every time I connect the iphone now, it brings up the "set up your phone screen". The one with the "an iphone has been previously synced with this compter" setup as new phone or restore from ....
    Well I did the resotre from 3 times and that page still comes up when I plug in the iphone. Yes, I did close itunes, reboot the PC, and powered off the iphone and then brouhgt it back up before connecting (all several times), but itunes still takes me to the same "setup iphone screen".
    Can you help me to get it to the standard iphone screen and there I will make sure the selected items are checked and do a sync.
    Please know I do appreicate your kind assistance so far and hope someone can get me the rest of the way!
    The "Backup" do not store your Applications, Music, Video's. It saves your settings, your application preferences, etc.

Maybe you are looking for

  • How can I call a variable from VBA in Diadem report?

    Hello, I have a script in Diadem, script that I can control from a VBA application ( from Excell), and I want to send from Excell some details to the report. I want in the report, the  Local Test Order field to by the LocalTO from the VBA (Excell), t

  • Rman oracle 8i and tsm solaris 8

    HI all, i have a sun solaris machine with oracle 8i an tsm test software. I have made a policy for three different incremental backup 0/start month 1/sunday 2/every day. Then a i have made a script that check the obsolete backup with report obsolete

  • Organization and Reliability of these Forums

    Last night, I posted this message to the AppleScript forum and elaborated slightly here: Just a general observation: as a participant in a number of forums, several about AppleScript issues, I must congratulate Apple for running the least friendly an

  • My iPhone 5s is bent!!!!

    I purchased my iPhone 5s 2 months ago and since i unboxed it, i put it in the Apple leather case and i removed it out of the case today! And i discovered the phone is bent! Will the genius bar replace my phone?

  • Another Epson scanning problem with Image Capture

    I've been having problems scanning with an Epson CX5600 for the previous month. I can print just fine, just can't scan with Image Capture or Vuescan (not so good free software). I always get "An error occurred during scan". I've tried repairing permi