Is it possible to rollback image copy backup?

Hi,
I have got an image copy with a tag which I apply incremental backups everyday. The image copy is rolled forward everyday.
Is it possible to rollback the image copy?
I have got incremental backups of everyday and one recent full image copy of database.
Thanks
Emrah

user6714759 wrote:
Hi,
I have got an image copy with a tag which I apply incremental backups everyday. The image copy is rolled forward everyday.
Is it possible to rollback the image copy?
I have got incremental backups of everyday and one recent full image copy of database.
Thanks
EmrahHi Emrah and welcome to the forum!
I don't think that you can roll back image copies because each time the whole image copy is changed with new records and I haven't seen such option

Similar Messages

  • RECOVER IMAGE COPY WITH INCRMENTAL BACKUP

    dear all
    i want to know what this comand do
    recover copy of datafile 4 with tag ' ';
    is this when take backup copy to datafile and i have incremental backup
    when corruption occurs i write this command
    instead of restore and recovery only this command is make the restore and applay incremental backup ???
    MANY THANKS

    there are some recovery scenarios.
    1- If you lost all datafiles
    SQL> startup mount;
    RMAN> restore database;
    RMAN> recover database;
    SQL> alter database open;
    2- if you lost a tablespace
    SQL> alter tablespace users offline;
    RMAN> restore tablespace users;
    RMAN> recover tablespace users;
    SQL> alter tablespace users online;
    if you can not offline tablespace then
    $ sqlplus “/ as sysdba”
    SQL> shutdown abort;
    SQL> startup mount;
    $ rman target / catalog_user/ catalog_user_password@catalogdb
    RMAN> restore tablespace users;
    RMAN> recover tablespace users;
    SQL> alter database open;
    3- if you lost a datafile
    SQL> alter database datafile '/oracle/oradata/users.dbf' offline;
    RMAN> restore datafile '/oracle/oradata/users.dbf'
    RMAN> recover datafile '/oracle/oradata/users.dbf'
    SQL> alter database datafile '/oracle/oradata/users.dbf' online;
    if you cannot offline datafile then
    $ sqlplus “/ as sysdba”
    SQL> shutdown abort;
    SQL> startup mount;
    $ rman target / catalog_user/ catalog_user_password@catalogdb
    RMAN> restore datafile '/oracle/oradata/users.dbf';
    RMAN> recover datafile '/oracle/oradata/users.dbf';
    SQL> alter database open;
    4- if you lost your controlfile
    $ sqlplus “/ as sysdba”
    SQL> shutdown abort;
    SQL> startup nomount;
    $ rman target / catalog_user/ catalog_user_password@catalogdb
    RMAN> set dbid = 3970640872;
    RMAN> restore controlfile;
    SQL> alter database mount;
    SQL> alter database open;
    you will receive an error ORA-01589 when you open database
    ORA-01589: must use RESETLOGS or NORESETLOGS option for database open
    In this situation you must do;
    SQL> shutdown abort;
    SQL> startup mount;
    $ rman target / catalog_user/ catalog_user_password@catalogdb
    RMAN> recover database;
    SQL> alter database open resetlogs;
    RMAN> reset database;
    if you open database with resetlogs, SCN number will be zero. In this situation all previous backups will be invalid. You must full backup.
    5- May be a special situation. You need to incomplete recovery.
    A. Time-Based incomplete recovery;
    $ sqlplus "/ as sysdba"
    SQL> shutdown abort;
    SQL> startup mount;
    $ rman target / catalog_user/ catalog_user_password@catalogdb
    RMAN> restore database until time "to_date('06/05/11 12:0:00','DD/MM/YY HH24:MI:SS')";
    RMAN> recover database until time "to_date('06/05/11 12:0:00','DD/MM/YY HH24:MI:SS')";
    SQL> alter database open resetlogs;
    B. SCN-Based incomplete recovery;
    $ sqlplus "/ as sysdba"
    SQL> shutdown abort;
    SQL> startup mount;
    $ rman target / catalog_user/ catalog_user_password@catalogdb
    RMAN> restore database until scn 1000;
    RMAN> recover database until scn 1000;
    SQL> alter database open resetlogs;
    C. archive log sequence based incomplete recovery;
    $ sqlplus "/ as sysdba"
    SQL> shutdown abort;
    SQL> startup mount;
    $ rman target / catalog_user/ catalog_user_password@catalogdb
    RMAN> restore database until sequence 9923;
    RMAN> recover database until sequence 9923;
    SQL> alter database open resetlogs;
    6- if you need some archive logs in your backup
    $ rman target / catalog_user/ catalog_user_password@catalogdb
    RMAN> restore ARCHIVELOG FROM TIME 'SYSDATE-1' UNTIL TIME 'SYSDATE';
    Or
    RMAN> restore ARCHIVELOG FROM TIME "to_date('07/11/05 00:00:01','MM/DD/YY HH24:MI:SS')
    UNTIL TIME 'SYSDATE';
    7- if your data block is corrupted you will receive an error below.
    Hata:
    ORA-01578: ORACLE data block corrupted (file # 8, block # 13)
    ORA-01110: data file 8: '/oracle/oradata/users.dbf'
    for recover data block;
    $ rman target / catalog_user/ catalog_user_password@catalogdb
    RMAN>blockrecover datafile 8 block 13;
    For Block-Level Media Recovery - Concept & Example (Doc ID 144911.1)
    8- if you have a image copy backup and your datafile number 2 has problems then you can switch datafile number2 to image copy.
    RMAN>sql ‘alter database datafile 2 offline’;
    RMAN>switch datafile 2 to copy;
    RMAN>recover datafile 2;
    RMAN>sql ‘alter database datafile 2 online’;

  • HT1414 is it possible to copy backup taken from my old iphone to the new one?

         is it possible to copy backup taken from my old iphone to the new one?

    Sure you can, as long as you still have the old backup.
    I have restored my iDevices (iPod Touches, iPads and iPhone) from backups a number of times. I've done this long after the devices were setup. Sometimes I restore from a backup because I have tweaked a setting and it screwed something up on my device so I restored from a backup in order to restore the previous "non-tweaked" setting back to the device.

  • Diff. between image copy and backup set ?

    Hi,
    i hv problem some interview question just like
    what is difference between image copy and backup set?

    below there is exact answer for your question
    http://download.oracle.com/docs/cd/B19306_01/backup.102/b14192/bkup001.htm#sthref281

  • I want to copy images to a memory stick for sharing with my family. This was possible in iPhoto via copy/paste but does NOT seem to be possible with photos...

    I want to copy images to a memory stick for sharing with my family. This was possible in iPhoto via copy/paste but does NOT seem to be possible with photos...

    You can drag and drop (this will result in a compressed JPG) or hold the alt key and drag and drop (this will copy the original). You can also select the pictures and choose Export from the File menu.

  • Can we take rman backup image copy to multiple location

    Hi All,
    We are planing to move database from old storage to new storage on the same server.
    planing to use RMAN image copy to copy the db files from old storage to new storage and then switch database to copy.
    Currently dbfiles are on /u01, /u02, /u03, /u04 and we are planing to move to new storage /u05, /u06/, /u07
    Is there any way that i can copy all the dbfiles to /u05,/u06,/u07
    Backup as copy database format '/u05
    As i know i can move to single location. Is there any way copy to multiple location using image copy.
    Please suggest.
    Thanks

    Hi
    I will try the below command.
    BACKUP AS COPY
      DB_FILE_NAME_CONVERT ('/u01/..','/u05/...','/u02/...,','/u06/..')
    database;
    I believe this will work.
    Thanks

  • Is it possible to make a copy of the Leopard install DVD?

    Is it possible to make a copy of the Leopard install DVD? If so, is there a special way this has to be done? I just found out that we needed to use the Leopard install DVD to recover a complete backup from Time Machine after a recent hard drive failure. We have the family pack of Leopard, so I would like to keep the original at home and send a copy when my daughter goes off to college in case she needs to recover again. Her machine was originally a Tiger MacBook, so those install disks will not work. If it is not possible to copy the DVD, is there a way to create a bootable utility to do a time machine recovery?

    This half-solved my problem. I have had no problems creating a backup copy for my intel based computers, but non-intel based computers are problematic; a G5 powermac tower and a G4 Powerbook. Both with super drives for single density burning. Both have Leopard running, installed from an install disc purchased from Apple. However, neither will mount the copy, but intel based computers will. have burnt/burned with both toast 9 and Disc Utility. Discs won't mount and are "spit out" by the drive.
    Power Mac G5 OS X: 10.5.4
    Model Identifier: PowerMac7,3
    Processor Name: PowerPC G5 (3.0)
    Processor Speed: 2 GHz
    Number Of CPUs: 2
    L2 Cache (per CPU): 512 KB
    Memory: 1.5 GB
    Bus Speed: 1 GHz
    Boot ROM Version: 5.1.8f7
    Any thoughts?
    -Jim

  • Is it possible to rollback patch 9206876 - UNABLE TO IMPORT INTERCOMPANY AP

    Hi All,
    DB:11.1.0.7
    Oracle Apps: 12.1.1
    OS:Linux 86x64 Red Hat
    Is it possible to rollback patch 9206876 - UNABLE TO IMPORT INTERCOMPANY AP INVOICES.
    What are the patches those can be rolled back in EBS R12?
    Thanks for your time!
    Regards,

    Is it possible to rollback patch 9206876 - UNABLE TO IMPORT INTERCOMPANY AP INVOICES.You cannot rollback this patch and the only supported way to do this is by restoring all the application/database log files from the backup which was taken before you apply this patch.
    What are the patches those can be rolled back in EBS R12?There is no tool/way to rollback the patches which are applied using adpatch (except restoring the files as mentioned above).
    Thanks,
    Hussein

  • Illustrator image copy/paste onto the Indesign the text should automatically converted into image?

    Hi All,
    Is there options to get the image copy & paste into the Indesign, if i done manually the frames and lines stroke, colors, are coming fine, but the text object only converted the image. i want to edit text  in indesign.
    this is possible for scripting or manual?
    regards
    CSM_PHIL

    You can copy/paste from Illy to ID by selecting the text with the type tool in Illy and then pasting it into ID. You will not be able to maintain the formatting. If you want to maintain the appearance the text will be converted to outlines.
    If you need to get anything other than very simple objects from Illy to ID then you should save as AI and use the file > place command to place those objects as linked graphics into ID.
    Your closing statement is irrelevant. Whether you like it or not, this is the way it is.
    Bob

  • SAP SQL System Copy backup restore method with ADS(Adobe document services)

    Hello all,
    i´m preparing a system copy with ERP 6.0 in windows and SQL server with ADS.
    I have a doubt, can i do the System Copy backup/restore method with ADS??
    or the only method that works is with system export/import in all instances??
    Thank you

    Hi Oscar,
    Is your ADS system separate from your ERP system, or are they on the same server?
    In any case, you can use backup/restore to copy a Java system, but you must also make a system export/import for the Java server components.  The two work in conjunction, so that the export tool doesn't export your whole database, only the components maintained in the filesystem.  If you select the database detach/attach or backup/restore method in the tool when going against the Java system, it will prompt you at the right point in the process to make your Java export as well.
    The caveat is that the Java export requires downtime, so it isn't possible to copy a Java system without impacting system availability, as it is with a pure ABAP system.
    Best regards,
    Matt

  • If exporting images for backup, to reimport into a clean aperture or other program, is it best to use 72 dpi or 300 dpi, or does it matter?

    If exporting images for backup, to reimport into a clean aperture or other program, is it better to use 72 dpi or 300 dpi, or does it matter?  I want the best quality for any future unforeseen use. 

    I am somewhat reluctant to answer your questions after Frank Caggiano's excellent advice, but I really do not like to leave the question open, for there will be many occasions when you will need to export images and to understand how it works.
    But please, follow Frank's advice, right now you do not need to worry about pixels and dpi. That is exactly what I meant, when I suggested to you to make sure you keep a copy of your Aperture Library and to back it up with all your other data, before you erase your disk for a clean reinstall.
    DPI revisited:
    So, is the dpi setting only for exporting to print?
    The dpi settings are necessary to define the size of a digital image, since pixels don't have any dimensions. And since you cannot print or display an image without knowing its width and height, you will need to specify dpi when you are printing or scanning.
    If I leave it at the default 72dpi will there be any problems getting quality prints in the future from jpeg versions exported with that setting?
    Not if you export with the original size - the maximum number of pixels available. That will ensure the maximum print quality.
    The dpi settings are required to export versions; versions are derived from the masters and new image files are computed. When you export masters you get a copy of the original file that already may have a dpi setting.
    If I choose "export masters", will aperture will export my masters just as they are? 
    yes, and  you may add IPICT data if you choose
    Pardon my thick skull--I'm an old dog trying to learn new tricks in this digital world!
    No apologies necessary, we were all beginners once
    Here is another example, maybe that helps a little:
    I exported an image (jpeg) with three different setting: export masters, a version with 72dpi, a version with 300dpi and inspected the files in Graphic Converter:
    The master was exported like this:
    Notice, the master had already dpi settings, although I did not specify any on export.
    The size is 51,48 cm x 38,61 cm.
    The 72 dpi Version has larger dimensions, but also 10 Megapixels.
    and here the 300 dpi version: smaller dimensions, same amount of pixels.

  • Image copy

    I've seen this question asked but have not found the answer. I'm trying to perform an image copy (restore) via disk utility and get the following error about 1/2 hour into the restore "Restore Failed. An error (2) occured while copying. (No such file or directory) I'm trying to backup to a WD external hard drive.
    Any help in resolving would be most helpful
    Tony

    If the disc works on my computer doesn't that rule out that it could be the quality of the disc? I am sure Toast is a good program, but I don't think I will be burning a lot of things and I would think that the burning application should work that comes with the computer. Am I wrong on this? I am a casual burner.
    Another thing that I thought it might be was the format of the disc. The format for the DVD is Mac OS Extended. When I click on the DVD icon the img file does not show a format but it does say NDIF image under "kind". When I click on the img file the white rectangle ejectable thing pops up and that file format is Universal Disk Format. Could this be causing any problem or is this normal?
    I'm trying a "tv type DVD player" tonight. Thanks.

  • IR 2318 copy extra image copy

    Canon IR 2318 copy extra image copy 
    see the picture copy output , 
    I need  this solution answer soon 
    thank you! support gus 

    I tried this and had a problem.
    I saved a copy of my backup folder (~/Library/Application Support/MobileSync/Backup/1d3af5c1...0adc00f68e43) to an external hard drive.
    A month later, I wanted to restore from the backup I saved on my external drive. So I  copied the old saved backup folder back to ~/Library/Application Support/MobileSync/Backup
    When I go to iTunes and choose "Restore Backup...", the backup does not appear in the list. Only the most recent backup is there.
    The question is: How do I get iTunes to see the backup I have saved???
    Thanks in advance for your suggestions!
    Mike Carney
    <Link Edited by Host>

  • I backup my iphone on my pc and copy backup file into drive D then i setup new OS on my pc. after that i copy the backup file into itunes backup folder but itunes can't find the backup file to restore my iphone. how can i restore my iphone?

    i backup my iphone on my pc and copy backup file into drive D then i setup new OS on my pc. after that i copy the backup file into itunes backup folder but itunes can't find the backup file to restore my iphone. how can i restore my iphone?

    Don't you just love changes in interfaces?
    I found the answer to my question.
    When you attach a device (iPhone, iPad) to your Mac, in iTunes 12 in appears as a tiny icon in the second "row" of the iTunes display. Click the icon and the familiar iTunes display for the device appears. From there, on the Summary screen, you can see the dates of the backups of the device (iCloud and backup to the computer). You can also use the button to backup to the computer.

  • Is it possible to set up a backup between two external drives

    Is it possible to set up a backup between two external drives?
    i use time machine to back up my imac onto an external 2T.
    i also have two external 3T drives.  i am looking for redundancy of data, tried software RAID and it failed.  i also see some limitations with RAID that a backup would avoid.
    thanks for sharing your expertise.
    be well,
    tony

    so thanks to all of you, particularly rkaufmann87 i have decided to stop the plan of setting up a software RAID set.  instead i have downloaded ccc and am in the process of setting up the secone 3t external drive as a clone.  i will use time machine to back up the internal hard drive only and if possible see if i can clone that as well onto one of the 3t's.
    this gives me the peace of mind i sounght and avoids the problem of total corruption that exists with the raid solution i was exploring.
    thank you all for making this an enjoyable and informative experience.  what a powerful community.
    be well
    tony

Maybe you are looking for

  • Key mapping Generator Tool

    Scenario One customer has two systems: System A and System B in his landscape. System A serves as the central server for item master data management. He maintains the same set of item master data in System B as that of System B manually. Now, the cus

  • How do I delete the iCloud assigned to my iPhone that is not my main iCloud account and shares the same email address!? No Password.

    I have my main iCloud account for iTunes and Mail etc. On my iPhone I seem to have initiated a secondary iCloud account with a different AppleID, yet receive emails to the other/same email account as the primary iCloud account on my Mac. I have gone

  • Saving results displayed on jsp into a text file using struts actions

    Hi, i am developing a web application using struts...the basic functionality of the system is to retrieve data from the database based on the search conditions given by the user. Hence for different search criteria there are different JSP result scre

  • One of the speakers on my Pixi+ is busted

    Not sure if it ever worked or if I am just noticing it now. the phone doesn't sound any different than it did when i bought it but one day i happened put my finger over one of them and i could tell there was no sound coming out of the other one.. so

  • Supervisor has never called me back

    I have been without phone service since June 6.  Verizon keeps telling me my repair problem will be fixed the next day and it never happens.  I have been uable to speak to any supervisor about this eventhough i leave my number and they never call me