Is it possible to recover a hot bkup as clone - with missing undo datafiles

I've got a hot backup of a database from 13th June. This was done manually.
Now that I have come to use this backup - which is simply a copy to removable storage. I have found that the undo.dbf files are missing from the backup.
Is it possible to get this database up and running without these datafiles?
Getting hold of a copy of the datafiles now is not an easy task and would require a large additional amount of archive logs to recover to the point in time when the undo files would have been put in backup mode. I finished my manual process at 19:30 the RMAN backup would have been at 22:00 onwards...

Usually. It is NOT possible.
But if there's not transaction when you did the hot backup, Maybe you can re-create another undo tablespace at mount point, then open database.

Similar Messages

  • Is it possible to recover a single event in iPhoto with Time Machine?

    I was looking back through the events in iPhoto (300+), nd found one missing.  Not sure why; probably accidentally deleted.

    There is a way, but it may well be extremely tedious. If you know the filename of the photo, you can try searching for that either
    1. in Spotlight (if Time Machine has not been added as an exclusion in  > System Preferences > Spotlight > Privacy),
    or
    2 manually through the finder tree:
    Backups.backupsdb > .......  > Pictures > iPhoto Library
    You'll need to choose a backup that you're fairly certain would have been before the time you think it might have been deleted in order to narrow down the search.
    In any case follow the path to an 'iPhoto Library' file on your TM disk. Click once on iPhoto Library to select it, hold down the control key, and click again. Choose 'Show Package Contents' from the menu that appears.
    This will open up the package like an ordinary folder. Look for a folder called 'Originals'. From here you can browse through your indivudal pictures for that backup date, but there'll be a lot and it'll probably take you a while.
    Using either of the methods above, when you finally find the file on your Time Machine disk, click on it once, press 'Command-C' to copy it, then go back to your normal desktop and press 'Command-V' to paste it.
    Open iPhoto as usual and import the photo from your desktop.

  • Is possible to recover hot.backup of a nonarchive database?

    I have read on several books that hot backups must be done on a database set with ARCHIVELOG mode, but it is physically possible to recover a hot-backup of a database that was in NOARCHIVELOG mode. Obviously some transactions would be lost, but it is possible to do it?
    I'm trying to do it unsuccesfully (when I try to startup the data base he asme for recovering the database and then always ask me for a archive log file.......)
    Thanks

    What you have red is correct.
    You can't do hot backup on non-archivelog database.

  • Run Hot bkup from a generic Unix script

    I want to run the hot bkup from a current Unix script but not sure what i to be changed because i'm very new to Unix scripting.
    Please help.
    ## script -s <sid> -b <hot/cold> -d </backup/destination directory>
    ## Critical Env. Variables Verify CNTLFILE Directory File !!!
    Setup()
    export CNTLFILE=/opt/app/oracle/dba/cntl/backupcntl.sh
    if [ ! -f $CNTLFILE ]
    then
    echo "-- ERROR: CNTL FILE $CNTLFILE does not Exist !!!"
    echo "-- ERROR: CNTL FILE $CNTLFILE does not Exist !!!" > /tmp/backuperror
    echo "-- Backup Aborted !!" >> /tmp/backuperror
    mailx -s "Backup Fail for $ORACLE_SID" $DBA_MAIL $DBA_PAGE < /tmp/backuperror
    exit 1
    else
    if [  -f $CNTLFILE ]
    then
    . $CNTLFILE
    fi
    fi
    Initialize()
    export USAGE="`basename $0` -s <ORACLE_SID> -b <hot|cold>"
    export USAGE2=`basename $0`
    export _PROCESS=`date +D%m%d%H%M`
    export HOST=`uname -n`
    export MMDD=`date '+%m/%d/%y'`
    export HHMM=`date '+%H:%M'`
    export CURTIME="$HHMM $MMDD"
    export DEST_BASE=${BASE}/${ORACLE_SID}
    export DBASE_BKUPDEST=$DEST_BASE/${BACKUP_TYPE}backup
    export DBASE_BKUPTEMP=$DEST_BASE/${BACKUP_TYPE}backup/${_PROCESS}
    export BACKUPTEMP_ARCHIVE=${DBASE_BKUPTEMP}/ARCHIVE
    export DBASE_ERROR_LOG=${LOG_DIR}/${ORACLE_SID}.${BACKUP_TYPE}backup.$_PROCESS.errlog
    export DBASE_BKUP_LOG=$LOG_DIR/${ORACLE_SID}.${BACKUP_TYPE}backup.$_PROCESS.log
    export COMMAND_DIR=${DEST_BASE}/sql
    export recovery=$DBASE_BKUPTEMP/recovery_readme.doc
    export FILE_COMPRESS=${BACKUP_TYPE}-${ORACLE_SID}-${_PROCESS}.tar.Z
    export archivetar=${DBASE_BKUPTEMP}/${ORACLE_SID}.${_PROCESS}_archive_logs.tar
    export db_archmode=/tmp/db_archmode_${ORACLE_SID}.lst
    export db_getarchlog=/tmp/db_getarch_${ORACLE_SID}.lst
    export db_getarch2log=/tmp/db_getarch2_${ORACLE_SID}.lst
    export db_openlog=/tmp/db_openlog_${ORACLE_SID}.lst
    export db_data_files=/tmp/db_datafiles_${ORACLE_SID}.lst
    export db_tar_files=/tmp/db_base_files_${ORACLE_SID}.lst
    export db_controlfile=/tmp/db_control_${ORACLE_SID}.lst
    export db_hotbkp_log=/tmp/db_hotbackup_${ORACLE_SID}.lst
    export db_hotbkp_log2=/tmp/db_hotbackuperr1_${ORACLE_SID}.lst
    export db_hotbkp_log3=/tmp/db_hotbackuperr2_${ORACLE_SID}.lst
    export db_ftperrtmp=/tmp/db_ftperrtmp.log
    export db_ftplogtmp=/tmp/db_ftplogtmp.log
    export db_ftponelog=/tmp/db_db_ftpone.log
    rm $DBASE_ERROR_LOG
    rm $DBASE_BKUP_LOG
    rm $db_openlog
    rm $db_archlog
    rm $db_data_files
    rm $db_tar_files
    rm $db_controlfile
    rm $app_statlog
    rm $db_hotbkp_log
    rm $db_hotbkp_log2
    rm $db_hotbkp_log3
    rm $COMMAND_DIR/backup_command.sql
    rm $db_ftperrtmp
    rm $db_ftplogtmp
    rm $db_ftponelog
    ## Reset CURTIME
    ResetCURTIME()
    export MMDD=`date '+%m/%d/%y'`
    export HHMM=`date '+%H:%M'`
    export CURTIME="$HHMM $MMDD"
    ## Get Tablespace for Hotbackup
    Gethottblspace()
    ${ORACLE_HOME}/bin/sqlplus -s "/nolog" << EOF
    connect / as sysdba
    set echo off feedback off heading off pagesize 0 trimspool off
    spool $COMMAND_DIR/tablespace
    select a.tablespace_name || ' ' || file_name
    from dba_tablespaces a, dba_data_files b
    where a.tablespace_name = b.tablespace_name
    order by a.tablespace_name, file_name;
    select 'CONTROLFILE '||name from v\$controlfile where rownum = 1;
    spool off
    exit
    EOF
    ## Begin Hotbackup
    BeginHotbackup()
    rm $COMMAND_DIR/hold_tablespace
    rm $COMMAND_DIR/tablespace.lst
    echo "-- Begin Hot Backup ...." >> $DBASE_BKUP_LOG
    ${ORACLE_HOME}/bin/sqlplus -s "/nolog" << EOF
    connect / as sysdba
    set echo off feedback off heading off pagesize 0 trimspool off
    @$COMMAND_DIR/backup_command.sql
    echo "-- Hot Backup completed " >> $DBASE_BKUP_LOG
    set pages 1000 lines 132;
    column recover heading "Requires|Recovery?" format a10;
    column time heading "Date Of|Last Backup" format a12;
    spool $COMMAND_DIR/verbackup.lis
    select substr(tablespace_name,1,20) "Tablespace Name",substr(name,1,45) "Name",
    a.status "Status",
    decode(fuzzy,'YES','BACKUP','NORMAL') "Mode" ,
    recover, time
    from v$datafile_header a, v$backup b
    where a.file#=b.file#
    order by tablespace_name,name;
    spool off
    exit
    EOF

    Your script defines functions which will enable you to invoke the backup. But this script only defines functions. You need to invoke them for your backup to work. The sample invocation can look like this (CODE NOT TESTED!!!):
    Setup
    Initialize
    Gethottblspace
    BeginHotbackup
    Best Regards
    Krystian Zieja / mob

  • I deleted the photos via Finder and empty trash long time ago. The thing is, that I want to recover one event or album.  The event appears in the iphoto but when open, it shows "!". Is it possible to recover the photos?

    I deleted the photos via Finder and empty trash long time ago. The thing is, that I want to recover one event or album.  The event appears in the iphoto but when open, it shows "!". Is it possible to recover the photos?

    No.  When you removed the photos via the finder you damage the library.  Photos should always be removed from the library using iPhoto, never with the Finder.
    If you have a Time Machine backup of the library from before you deleted the photos you can restore the library to the Desktop and export that album from it to import into your current library.
    It's been too long to be able to try one of the file recovery applications.  You sure to have overwritten those files with new files since them.
    OT

  • In GB, I need to insert an audio track. When I try, it obliterates part of the adjacent bridge (track). How can I insert an audio track in an audio timeline without stepping all over clean material? Is it possible to recover the "clean" track bridge?

    Am doing an audio timeline in GB. Need to insert a corrected section of track. When I try the insert, it knocks out the top part of the adjacent track bridge/element. How can I insert cleanly in a timeline? Is it possible to "recover" the good track that was "stepped on?"

    Undo what?
    Insert in a new track?
    I don't think so. I've started an audio book and I'm doing chapter long segments (assuming I can make simple corrections, such as ones made in iMovie and numerous other video editing programs. Routine edits in GB are simple and intuitive. I cannot wrap my mind around the fact that I'm prevented from doing a simple drag and drop, import or paste a two-sentence audio clip. Nor can I find any reference to straightforward audio elements.
    Any suggestions you might have would be appreciated.

  • Is it possible to recover ical data lost in a sync?

    Is it possible to recover ical data lost in a sync?

    Your only bet is to resotre from the Time Machine backup. However when you do this the sync process will promptly delete the calendars again, so you need to work through the slightly convoluted method detailed in this page:
    http://www.wilmut.webspace.virginmedia.com/notes/icloudtm.html

  • Is it possible to create a hot spot with Apple Airport Express 2nd Generation Dual Band Wireless Router, usefull in a hotel with ethernet wall sucket.

    is it possible to create a hot spot with apple Airport express 2 generation and use it i a hotel with ethernet wall socket and use it with my Ipad 2?

    HenrikAppleJespersen wrote:
    is it possible to create a hot spot with apple Airport express 2 generation and use it i a hotel with ethernet wall socket and use it with my Ipad 2?
    Yes, it is one of the things AirPort Express was specifically designed for.

  • Possible to recover data from dead HD?

    in July of this year, my HD stopped working for whatever reason. i got the folder icon when i started my Mac mini that day and did lots of troubleshooting with no luck. i ended up putting a new one in and all is fine now. EXCEPT all my pics and whatnot is on my old HD. the nearest apple store is 3hrs away and dont plan on making a trip any time soon. is there any way possible to recover the data? what are the possibilities of getting the data over since the old HD stopped working? it didnt spin, it was dead quiet. ive seen alot of those HD to USB data recovery connections to transfer info but dont know if it will work? thanks for the help!!

    Yanki01 wrote:
    in July of this year, my HD stopped working for whatever reason. i got the folder icon when i started my Mac mini that day and did lots of troubleshooting with no luck. i ended up putting a new one in and all is fine now. EXCEPT all my pics and whatnot is on my old HD. the nearest apple store is 3hrs away and dont plan on making a trip any time soon. is there any way possible to recover the data? what are the possibilities of getting the data over since the old HD stopped working? it didnt spin, it was dead quiet. ive seen alot of those HD to USB data recovery connections to transfer info but dont know if it will work? thanks for the help!!
    If it is completely dead in that it is not making any noise indicating it is not spinning etc. then you cannot use any software to try and recover data, these software programs generally only help if the hard disk is physically ok but the data is damaged.
    In your case it would appear to be a hardware problem and the only option would be to send it to a specialist data recovery firm. If you went to Apple they would only be able to replace it with a new one (if under warranty) and would not do any data recovery.
    The specialist recovery firms would completely dismantle the hard disk and replace faulty parts to enable them to get it working and to copy the data off. Your profile does not indicate your location, but an example firm (I have no personal experience of them) is Datatrak Labs see http://www.datatrack-labs.co.uk/company_profile.asp
    By the way, why have you not been making backups? Time Machine makes this so easy it is no longer excusable to not do this. I had a hard disk fail in one of my Macs earlier this year (hardware failure), but because I had a full Time Machine backup I lost nothing.

  • Is it possible to recover my data from iCloud backup without working wifi? I have as many other upgraded my iPhone 4S to iOS 7.0.2 with the result that the Wi-Fi or Bluetooth no longer works. However, i can connect to iTunes via cable but there is wrong v

    Is it possible to recover my data from iCloud backup without working wifi? I have as many other upgraded my iPhone 4S to iOS 7.0.2 with the result that the Wi-Fi or Bluetooth no longer works. However, i can connect to iTunes via cable but there is wrong version of backup.

    Answer is no.
    If you want the iCloud backup you have to have n internet connection, thus WiFi.
    The not working WiFi has happened with quite a number of users.
    It is not exactly clear what is the cause but there are suggestions to clear it up:
    Some people have had success by removing an apostrophe from the iPhone name. If your iPhone is called something like “John’s iPhone” then this might work. Go to Settings > General > About > Name and change it to something with no apostrophe.
    Some people have reported success by putting the iPhone into Airplane mode and then going to Settings > General > Reset > Reset Network Settings, but the problem may return.
    You could also try going to Settings > Control Center and disable Access on Lock Screen then turn your iPhone off and on again.
    Make sure that your router firmware is up to date.
    Try backing up your iPhone and then restoring it. Check how to factory reset an iPhone for details.
    If nothing is working for you, try contacting Apple or take your iPhone into an Apple Store.
    Succes, Lex

  • How to find out which archived logs needed to recover a hot backup?

    I'm using Oracle 11gR2 (11.2.0.1.0).
    I have backed up a database when it is online using the following backup script through RMAN
    connect target /
    run {
    allocate channel d1 type disk;
    backup
    incremental level=0 cumulative
    filesperset 4
    format '/san/u01/app/backup/DB_%d_%T_%u_%c.rman'
    database
    }The backup set contains the backup of datafiles and control file. I have copied all the backup pieces to another server where I will restore/recover the database but I don't know which archived logs are needed in order to restore/recover the database to a consistent state.
    I have not deleted any archived log.
    How can I find out which archived logs are needed to recover the hot backup to a consistent state? Can this be done by querying V$BACKUP_DATAFILE and V$ARCHIVED_LOG? If yes, which columns should I query?
    Thanks for any help.

    A few ways :
    1a. Get the timestamps when the BACKUP ... DATABASE began and ended.
    1b. Review the alert.log of the database that was backed up.
    1c. From the alert.log identify the first Archivelog that was generated after the begin of the BACKUP ... DATABASE and the first Archivelog that was generated after the end of the BACKUP .. DATABASE.
    1d. These (from 1c) are the minimal Archivelogs that you need to RECOVER with. You can choose to apply additional Archivelogs that were generated at the source database to contininue to "roll-forward"
    2a. Do a RESTORE DATABASE alone.
    2b. Query V$DATAFILE on the restored database for the lowest CHECKPOINT_CHANGE# and CHECKPOINT_TIME. Also query for the highest CHECKPOINT_CHANGE# and CHECKPOINT_TIME.
    2c. Go back to the source database and query V$ARCHIVED_LOG (FIRST_CHANGE#) to identify the first Archivelog that has a higher SCN (FIRST_CHANGE#) than the lowest CHECKPOINT_CHANGE# from 2b above. Also query for the first Archivelog that has a higher SCN (FIRST_CHANGE#) than the highest CHECKPOINT_CHANGE# from 2b above.
    2d. These (from 2c) are the minimal Archivelogs that you need to RECOVER with.
    (why do you need to query V$ARCHIVED_LOG at the source ? If RESTORE a controlfile backup that was generated after the first Archivelog switch after the end of the BACKUP ... DATABASE, you would be able to query V$ARCHIVED_LOG at the restored database as well. That is why it is important to force an archivelog (log switch) after a BACKUP ... DATABASE and then backup the controlfile after this -- i.e. last. That way, the controlfile that you have restored to the new server has all the information needed).
    3. RESTORE DATABASE PREVIEW in RMAN if you have the archivelogs and subsequent controlfile in the backup itself !
    Hemant K Chitale

  • HT201250 Is there a possibility to recover erased files from an external hard drive that was reformatted by the Time Machine?

    Is there a possibility to recover erased files from an external hard drive that was reformatted by the Time Machine?

    Basics of File Recovery
    Files in Trash
    If you simply put files in the Trash you can restore them by opening the Trash (left-click on the Trash icon) and drag the files from the Trash to your Desktop or other desired location.  OS X also provides a short-cut to undo the last item moved to the Trash -press COMMAND-Z.
    If you empty the Trash the files are gone. If a program does an immediate delete rather than moving files to the Trash, then the files are gone.  Recovery is possible but you must not allow any additional writes to the hard drive - shut it down. When files are deleted only the directory entries, not the files themselves, is modified. The space occupied by the files has been returned to the system as available for storage, but the files are still on the drive. Writing to the drive will then eventually overwrite the space once occupied by the deleted files in which case the files are lost permanently. Also if you save a file over an existing file of the same name, then the old file is overwritten and cannot be recovered.
    General File Recovery
    If you stop using the drive it's possible to recover deleted files that have not been overwritten by using recovery software such as Data Rescue II, File Salvage or TechTool Pro.  Each of the preceding come on bootable CDs to enable usage without risk of writing more data to the hard drive.  Two free alternatives are Disk Drill and TestDisk.  Look for them and demos at MacUpdate or CNET Downloads.
    The longer the hard drive remains in use and data are written to it, the greater the risk your deleted files will be overwritten.
    Also visit The XLab FAQs and read the FAQ on Data Recovery.

  • My iMac has less than 2 years. The hard drive from 1TB just failed. Possible to recover data?

    The support store just told me that the hard drive of my IMAC 27" is damaged and the solution is to replace for a new one. Meanwhile, I saw this: "Apple has determined that a very small number of Seagate 1TB hard drives used in 21.5-inch and 27-inch iMac systems, may fail under certain conditions. These systems were sold between May 2011 and July 2011."
    I bought my system a couple of months before. Anyone knows if it's the same hard drive?
    Another question is. Is it possible to recover recover the data from the damaged drive?
    Best regards

    If the hard drive has failed then that data is lost.  That's why you always need to maintain an up to date backup copy of your important files on an external backup hard drive.  Hard drives do fail; being an electro-mechanical device they are the weakest link in any computer.
    Hope this helps

  • Is it possible to recover deleted files from the Microsoft Word app for iPhone? I am desperate.

    Is it possible to recover deleted files from the Microsoft Word app for iPhone? I am desperate.

    From the Microsoft Word app they say "Access Word documents from OneDrive, Dropbox, iCloud, OneDrive for Business, or SharePoint" so it sounds like you can specify where they are saved. However, my guess would be that the default will be OneDrive.
    To the OP: Have you tried logging into onedrive.live.com to see if you can see your letter there?

  • Is it possible to recover wrongly erased (from the iCloud) emails?

    Is it possible to recover wrongly erased (from the iCloud) emails? I'm in panic cos, in doing that I also erased (din't know that as possible) my emails in my iPhone and iPad….

    Is it possible to recover wrongly erased (from the iCloud) emails? I'm in panic cos, in doing that I also erased (din't know that as possible) my emails in my iPhone and iPad….

Maybe you are looking for

  • The text/email/alerts sound volume has gone right down on my iPhone 4

    The text/email/alerts sound volume has gone right down on my iPhone 4, but the ringtone volume is still loud! Adjusting the volume in "Settings" only changes the ringer volume, I just can't find a way to increase the alerts volume! Help please!!!

  • Problem with multiple table row selection

    Hi all        I have a rfc which fetches me a bunch of records and displays them in a table,say A.        I have to select multiple records from this table and hit a button to navigate to next screen..where I will review the selected entries from tab

  • How can i Close the PO by changing the Qty to 6000 from 5.443,206???????

    Hi All, User wants the  PO with 240bags= 6000 Kg but the value is like this  240bags x 22.68kg  = 5.443,200 Kg(this is picking from material master in Alternate units of measure 100bags =2268) *As of now the PO status is: Ordered Qty: 240bags Deliver

  • Detected orphan OWB sessions

    I encounter this problem everytime a OWB Client developer has his PC crashed or rebooted every now and then. The next time then the OWB Client is started, it pops up with the window indicating 'Detected orphan OWB sessions' and the related informatio

  • I have a hp pavilion media center tv m7750n desktop pc

    i bought Nvidia geforce 210, 512mb ddr2, pci-e 2.0, directx 10 graphic card. I installed but when i start the computer, the monitor does not get signal,  no signal in monitor screen". can you help me to fix that. thank you. i waiting to listeen from