Is this cause for incomplete recovery?

Hi.
I read here http://download.oracle.com/docs/cd/B10501_01/server.920/a96519/recov.htm#1004797 and other places, the reasons for incomplete recovery. I see that "if a user drops a table.." we would consider incomplete recovery. That "data loss" means we need to recover ...
Yet what if the user simply deletes some rows from a table? If the user does not commit, do we still need to do incomplete recovery? Similarly, if the user does not commit, is that a reason for not using incomplete recovery?
Sorry for splitting hairs - but its important!
Thanks,
DA

Hi,
>>t if those few rows are gone forever (a committed delete), we would have to at least consider incomplete recovery??
The same thing ...
It is 12:00 AM and the EMP table was deleted or updated by mistake at 11:45 AM
Then you can:
1) shutdown the database and make a backup
2) restore all datafiles from most recent backup
3) mount the database
4) recover the database like below:
SQL> recover database until time '2008-03-30:11:44:00'
5) synchronize the datafile with control files and redo log files like below:
   SQL> alter database open resetlogs
6) Make a backup of your databaseIn this case, time-based recovery, also called point-in-time recovery (PITR), recovers the data up to a specified point in time.
Ps: Disadvantage of using this method: Any data entered after the recovery time (11:44 AM) will need to be reentered ...
Cheers
Legatti

Similar Messages

  • Time for incomplete recovery.

    Hello everybody! )
    i have a backup of Oracle 10gR2 database using rman script:
    run{
    backup database;
    backup archivelog all;
    backup current control file;
    i need restore this database on other server over 2 months
    How can i find the time for incomplete database recovery.
    Thanks.

    Hello.
    I have full backup of database plus archivelogs;
    RMAN> list backupset summary;
    Key-TY-LV-S-Device-Type-Completion_Time--------Pieces-Copies---Compressed Tag
    1412---B--F--A DISK------26-11-2010 20:45:18 1-----1-----NO------TAG20101126T195011
    1413---B--F--A DISK------26-11-2010 20:46:45 1-----1-----NO------TAG20101126T195011
    1414---B--F--A DISK------26-11-2010 21:01:43 1-----1-----NO------TAG20101126T195011
    1415---B--F--A DISK------26-11-2010 22:01:14 1-----1-----NO------TAG20101126T195011
    1416---B--F--A DISK------27-11-2010 01:17:52 1-----1-----NO------TAG20101126T195011
    1417---B--A--A DISK----- *27-11-2010 01:20:48* 1-----1-----NO------TAG20101127T011822
    1418---B--A--A DISK------27-11-2010 01:20:49 1-----1-----NO------TAG20101127T011822
    1419---B--A--A DISK------27-11-2010 01:20:51 1-----1-----NO------TAG20101127T011822
    1420---B--A--A DISK------27-11-2010 01:20:59 1-----1-----NO------TAG20101127T011822
    1421---B--A--A DISK------27-11-2010 01:21:08 1-----1-----NO------TAG20101127T011822
    1422---B--A--A DISK------27-11-2010 01:21:42 1-----1-----NO------TAG20101127T011822
    and i set until time to
    set until time '27-11-2010 01:18:00';
    restore database;
    recover database;
    but rman show error:
    RMAN-06023: no backup or copy of datafile 3 found to restore
    RMAN-06023: no backup or copy of datafile 2 found to restore
    RMAN-06023: no backup or copy of datafile 1 found to restore
    Edited by: OraUser on Nov 29, 2010 6:33 AM

  • Link for Incomplete recovery.

    Hi please post a link on "Incomplete Recovery" in oracle 9i.

    http://download.oracle.com/docs/cd/B10501_01/server.920/a96572/ostspitr.htm#BRUMG007
    http://download.oracle.com/docs/cd/B10501_01/server.920/a96519/recov.htm#1004797
    -Anantha

  • Is this cause for concern? SUID file?

    Warning: SUID file "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent" has been modified and will not be repaired.

    I just had the exact same ~warning~ after doing a permissions repair. I guess I wont worry about it.

  • Incomplete Recovery After Drop Tablespace.

    Hi...some technical help required.
    I was trying a hands-on for incomplete recovery. That is drop a tablespace and then retrieve back until 1 second before drop statement.
    The Steps were like this...
    1) Shutdown Immediate;
    2) Copy all *.ctl, *.dbf, logfiles into a different folder <nis_back>
    3) Startup;
    4) Enter 3-4 Records and Commit. Table is in <USER> Tablespace.
    5) 3 times "alter system switch logfile;"
    5) drop tablespace users;
    6) shutdown;
    7) Check the Alter Log and find the time when tablespace dropped.
    Suppose time when dropped is -> 21-Aug 10:30:45 AM. (HH:MM:SS)
    7) copy back only *.dbf, *.ctl files from backup folder <nis_back>
    8) startup mount;
    9) alter database recover automatic until time '2002-08-21:10:30:40';
    10) <<Statement Process>> Message Comes.
    11) alter database open resetlogs;
    When I open the table into which I inserted records just before dropping the tablespace I dont see the records (Inseretd in Step - 4) but the tablespace is back.
    Now My Concern -> Why did the 3-4 record which I inserted in step 4 did not get restored from the archieve log ?
    Hope to hear from you all soon.
    Thanks in advance.
    Regards
    Nishit

    After step 5, try ALTER SYSTEM ARCHIVELOG ALL
    Naveen
    Hi...some technical help required.
    I was trying a hands-on for incomplete recovery. That is drop a tablespace and then retrieve back until 1 second before drop statement.
    The Steps were like this...
    1) Shutdown Immediate;
    2) Copy all *.ctl, *.dbf, logfiles into a different folder <nis_back>
    3) Startup;
    4) Enter 3-4 Records and Commit. Table is in <USER> Tablespace.
    5) 3 times "alter system switch logfile;"
    5) drop tablespace users;
    6) shutdown;
    7) Check the Alter Log and find the time when tablespace dropped.
    Suppose time when dropped is -> 21-Aug 10:30:45 AM. (HH:MM:SS)
    7) copy back only *.dbf, *.ctl files from backup folder <nis_back>
    8) startup mount;
    9) alter database recover automatic until time '2002-08-21:10:30:40';
    10) <<Statement Process>> Message Comes.
    11) alter database open resetlogs;
    When I open the table into which I inserted records just before dropping the tablespace I dont see the records (Inseretd in Step - 4) but the tablespace is back.
    Now My Concern -> Why did the 3-4 record which I inserted in step 4 did not get restored from the archieve log ?
    Hope to hear from you all soon.
    Thanks in advance.
    Regards
    Nishit

  • Unknown PC displayed in my Finder. Cause for concern?

    I have a closed wireless network (WEP password required) and I've seen an unknown PC show up in the "Shared" section of my Finder. Is this cause for concern? Would this indicate that my network has been hacked?

    More than likely this person has not joined your wireless network. Read through my posts in the thread "Internet hacker".

  • File Vault encryption locked up.  No progress for 24 hrs.  If I restore from a non-encypted back-up will this cause problems?

    Started file vault yesterday and no progress for 24 hrs.  If I do a Command-R restore from a non-encrypted back-up will this cause problems?

    You first must repartition and reformat the drive before restoring your backup.
    Install or Reinstall OS X from Scratch
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Erase the hard drive:
      1. Select Disk Utility from the main menu and click on the Continue button.
      2. After DU loads select your startup volume (usually Macintosh HD) from the
          left side list. Click on the Erase tab in the DU main window.
      3. Set the format type to Mac OS Extended (Journaled.) Optionally, click on
          the Security button and set the Zero Data option to one-pass. Click on
          the Erase button and wait until the process has completed.
      4. Quit DU and return to the main menu.
    Reinstall OS X: Select Reinstall OS X and click on the Install button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible
               because it is three times faster than wireless.
    This should install the version of OS X that you had installed.

  • My mum set up an iCloud account and forgot the password, and this caused me to create a new account. The new account works for the App Store and all that, but I can't change the initial iCloud account without the password. Help?

    My mum set up an iCloud account for my iPhone 4 but forgot the password. This caused me to create a new account, and it can be used for the App Store and iTunes and all that, but I can't change the initial iCloud account (the one my mum made). My device keeps prompting me for the password every few minutes after updating to iOS 8, and I've tried every option possible to retrieve the password, but I don't even know the answers to the security questions and I can't find the password reset email anywhere and I don't know the back up emails my mum used. I literally cannot find any legitimate way to sign out of the initial iCloud account without entering a password (which neither I nor my parents know). Is there a way for me to retreive the password or change to my new account without the password?

    See:Creating an iCloud account: Frequently Asked Questions and How do I mange iCloud account about 3/4s of the way down.

  • The schedules for this line are incomplete

    Hi,
    I'm attempting to create a PO in the vision EBS 12.1.3 apps instance..Logged in as 'operations'. When I click on the 'Approve' button, I get the following error which I'm not sure what it means and where I should start to debug:
    The schedules for this line are incomplete. I thought I covered all the necessary fields...
    Any ideas?
    Thank you!

    Please see ((Pics) How to Capture Debug / Log / Trace Files During the Purchase Order / Requisition Approval Process? [ID 409155.1]) for the steps you need to follow to debug the issue.
    Thanks,
    Hussein

  • For the last 2days I have had the words " No Service" in the top left hand corner of my iPad? This causes intermittent  problems when logging into some  websites and Downloading some emails? I currently run a wifi network of 1 iPad and 1 desktop compuHelp

    For the last 2days I have had the words " No Service" in the top left hand corner of my iPad? This causes intermittent  problems when logging into some  websites and Downloading some emails? I currently run a wifi network of 1 iPad and 1 desktop computer. The wifi unit is  a iinet BOB 2 unit. The other computer works completely fine. The only problem is with this apple iPad? I have rebooted iPad and rebooted BOB 2 wifi unit but this has made on difference to the problem?
    Can anyone suggest any HELP
    Thank You

    For the last 2days I have had the words " No Service" in the top left hand corner of my iPad? This causes intermittent  problems when logging into some  websites and Downloading some emails? I currently run a wifi network of 1 iPad and 1 desktop computer. The wifi unit is  a iinet BOB 2 unit. The other computer works completely fine. The only problem is with this apple iPad? I have rebooted iPad and rebooted BOB 2 wifi unit but this has made on difference to the problem?
    Can anyone suggest any HELP
    Thank You

  • SSRS in SharePoint2013:Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, HttpModule

    SSRS in SharePoint2013: There is a report in SharePoint and it contains a sub-report and the sub-report hyperlink. When I click the hyperlink to go to the sub-report, after >10min, I click the "Back to.." button
    on IE to go to the previous page. Then it catch the error as:
    Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, HttpModules, or server trace is enabled.
    Details: Error parsing near '
    <!DOCTYPE html PUB'.
    I am using SQL2012 and Sharpoint2013.

    Hi Alisa,
    Thanks for your reply, I changed the web.config, but the issue did not resolved. 
    I add the codes in two parts of the web.config as below, you can find in by keywords “aspnet:MaxHttpCollectionKeys”
    This issue can not reproduce on Chrome only occur on IE.
    So, do you have some details suggestion for me to fix it?
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <configuration>
    <configSections>
    <sectionGroup name="SharePoint">
    </sectionGroup>
    <location path="_layouts/15/TA_AppMonitoringDetails.aspx">
    <appSettings>
    <add key="ChartImageHandler" value="storage=memory;timeout=20" />
    </appSettings>
    </location>
    <location path="_layouts/15/ReportServer/RSViewerPage.aspx">
    <appSettings>
    <add key="aspnet:MaxHttpCollectionKeys" value="10000" />
    </appSettings>
    </location>
    <system.net>
    <defaultProxy />
    </system.net>
    <appSettings>
    <add key="aspnet:MaxHttpCollectionKeys" value="10000" />
    <add key="aspnet:RestrictXmlControls" value="true" />
    <add key="FeedCacheTime" value="300" />
    <add key="FeedPageUrl" value="/_layouts/15/feed.aspx?" />
    <add key="FeedXsl1" value="/Style Library/Xsl Style Sheets/Rss.xsl" />
    <add key="ReportViewerMessages" value="Microsoft.SharePoint.Portal.Analytics.UI.ReportViewerMessages, Microsoft.SharePoint.Portal, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
    </appSettings>

  • Cause is mentioned as : "The cause for this error is due to person name is not assigned to the FND_USER."

    Cause is mentioned as : "The cause for this error is due to person name is not assigned to the FND_USER."
    Do we need to attach the person name of employee whose reverse Global deployment we are doing or the person name of the person who is doing this transaction.
    Thanks & Regards,
    Kirti Mohan Sharma

    You just need to attach the person to the FND User. System Administrator responsibility - Security - User screen.
    After you have linked the person, you can check the table
    Select * from FND_USER
    Where user_name = '<user_name>';
    Cheers,
    Vignesh

  • Default account setting for this user is incomplete

    Hi,
    I have created a user and gave rights(connect and resource) to that user. i have logged in and when i trying to open form module im getting a message.
    default account setting for this user is incomplete. Contact system administrator
    How to resolve this?
    skud.

    default account setting for this user is incomplete. Contact system administratorThis is an application error not an Oracle Forms error. Contact your system administrator to determine what is missing from the user account you created.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Hello, I'm pretty sure my fan on my 2009 mac book pro has stopped running. Would this cause the computer to slow down and take for ever to boot up and show the color wheel every time I select an application ?

    Hello, I'm pretty sure my fan on my 2009 mac book pro has stopped running. Would this cause the computer to slow down and take for ever to boot up and show the color wheel every time I select an application ? how involved to replace fan ? cost ?
    thanks

    Not directly, but if the CPU overheats because of incompatible software, that would cause slowdowns. Do not allow the computer to run if the fan is not working unless you wish to fry your motherboard. Please make a Genius Appointment and take it in for service.

  • We are unable to complete your activation at this time. Please disconnect your iPad from your computer and reconnect it later and we should be able to activate it. We apologize for the inconvenience this causes.  iPad 1 iOS 5.1.1

    Whe i conected my iPad 1  it says update  and  when i update to iOS 5.1.1 i cant activate because the iTunes says this
    We are unable to complete your activation at this time. Please disconnect your iPad from your computer and reconnect it later and we should be able to activate it. We apologize for the inconvenience this causes. with iPAd 1 iOS 5.1.1
    What can i do Apple?

    This is usually a symptom that the phone was hacked/jailbroken. Was it?

Maybe you are looking for

  • Put to Sleep and  Don't wake up when i open my macbook pro

    Hello, i have a Macbook pro 17' (2,33ghz) using leopard 10.5.2 with all the latest update. Everytime i put my computer to sleep for more than 10 minutes (random time), when i try to wake up nothing happen, i hear a strange noise of the HD for about 2

  • Recurring problem in Project Saving

    This has happened often. I am working on a project that should initially take up between 0.5 to 1 Meg on my hard drive, yet once saved, I noticed it has tied up 65 Megs... I have no Locked tracks Most of my Real Instruments are loops (already on My H

  • REF to an object in a relational table

    Hi! I try do create a DB for TINs made of triangles. Because of the topology a triangles ist made of three edges and each edge is made of two nodes. The nodes contain the geometry (x,y,z coordinates). I created object types for each element. In order

  • Problem after the uninstall  of windows with the bootcamp assistant!!!!

    I have too problems: The first is my bad english i like to excuse for that. I hope you can even so understand my main problem. I try to describe it to you: I install windows on my mac. After a short time i decide, i don't like it and i uninstall it w

  • Problem with nVidia 325.15-1

    After the last upgrade of the nvidia driver at every boot, my system freeze after, about a minute. I've tried with kernel-lts too but no luck. I've downgraded the driver and everything is ok. Nouveau, exept for performance and temperatures issues, wo