Wanted info on recovery methods

Hi,
I need some info on the recovery procedures in ORACLE 9i.
Please give some suggestive methods for that.

Hi,
I really don't know what the cake outthere.please provide me the complete picture so i can see your problem with broder view and answer it accordingly.so next time when you post your problem plz provide the detailed problem.
thanks..

Similar Messages

  • Which one is the Best Backup and Recovery Method in your point of view?

    Friends,
    Currently we are taking hot backup with archive mode.
    we have backup script to copy the datafile and we will copy the archive files in a separate folder.
    alter tablespace system begin backup;
    host cp /u01/app/oracle/oradata/livedb/system.dbf /u02/online_backup
    alter tablespace system end backup;
    like the above script we will copy all the other data files.
    then in the test environment. we will copy the datafile and archive file.
    we will be recovering by using the below statement.
    sql>recover database until cancel using backup controlfile.
    currently no problem in backup and recovery.
    What i want is......
    is there any other sophisticated and safe way to take a backup and restore it to another server?
    if yes, can anybody point out the steps or link.
    I have heard about......
    DataGuard
    RMAN
    EXP/IMP
    but i never used the above.
    Thanks
    sathyguy

    DataGuard
    RMAN
    EXP/IMP ...
    The only real backup/recovery method here is RMAN, Oracle's integrated backup/recovery tool, which I prefer. As an example for a fully functional RMAN command see 'backup database plus archivelog delete all input'. This statement provides a complete hot database backup including archivelogs and deletes at the successful end all archivelogs in all destinations . Compare this statement with all the steps necessary to do the same job manually. Don't worry you have many ways to finetune your backup.
    For more informations there's a quick start guide:
    http://download-uk.oracle.com/docs/cd/B19306_01/backup.102/b14193/toc.htm
    Dataguard is a high availibility tool, which provides a kind of backup in terms of having a logical or physical standby database. When primary side fails you can switch to this standby database. Such a constellation does not mean, database backups are no longer necessary.
    Export/Import is a logical backup, still often used to recover from human errors (you accidentally dropped a table for example). Don't use it as a replacement for physical backups, especially hot backups,in case of media failures you always will have loss of data, because changes made afterwards the export are not captured.
    Once again I recommend you seriously should consider RMAN.
    Werner

  • Toshiba Recovery method - Which set up is the best

    I have purchased a new lap top and on set up it is asking me to select a recovery method. Options are
    - Recover to out- of -box-state (System Recovery Options are included)
    - Recover without changing the hard drive partitions
    - Recover to a custom size partition
    Which is the best option to select?
    I am thinking that the custom would be the best once I have made my recovery discs after full set up but want to be sure.
    Can anyone help?
    Thanks smilee

    Hi
    - *Recover to out-of-box-state (System Recovery Options are included)*
    This Option sets your notebook back, to the Factory default status. The partitions will be deleted and created again, as they have been on the first boot.
    Note: All data will be lost and HDD Recovery Option will still be available, if you want to recover your notebook again.
    - *Recover without changing the hard drive partitions*
    All data on the first partition will be lost and HDD Recovery Option will be still available, if you want to recover your notebook again.
    - *Recover to a custom size partition*
    All data on the HDD will be lost and HDD Recovery Option will not be available anymore, if you want to recover your notebook again. Be sure to have a recovery DVD created for the future
    Here the FAQ
    http://aps2.toshiba-tro.de/kb0/HTD1303440001R01.htm

  • I want to make recovery partition on my new macbook pro without loosing my data

    i want to make recovery partition on my new macbook pro without loosing my data

    You already have one. Hold command r keys and boot the machine into it to see.
    If your meaning you want another partition to boot your machine normally, like a cloned OS X partition, you can do that this way.
    1: Make sure you have less than 50% of your boot OS X partition filled with data, this can be done looking at Activity Monior.
    2: Another thing, all the OS X data needs to be on the top part of the drive, to make room at the bottom for the second 50% paritition. You can't always tell this easily but you'll find out shortly.
    3: Use Apple's BootCamp software and create the second 50% partition on the drive and then exit it without proceeding further. If it fails or is not large enough, then the #2 above problem is evident and you need to clone and reverse clone from a external drive to shift all the data back up.
    BootCamp: "This disc can not be partitioned/impossible to move files."
    4: If you have a second 50% partition on the drive, next head to Disk Utility and select the second partition and change it's format to OS X Extended Journaled and the name to Macintosh HD 2 (name optional of course)
    5: Next download Carbon Copy Cloner and clone the first partition to the second, make sure it's a PURE CLONE in preferences as the default is to save the states between updates.
    6: Reboot the machine holding the option/alt key down, Startup Manager launches and your second boot partition is there.
    This method provides a second bootable clone while portable for excellent sofware protection, however if the drive fails both parititions are lost, so external clones on extra hardware are of course needed also.

  • I want to buy recovery disk for T61

    Hello
    I want to buy recovery disk for My Thinkpad T61. How do I do? Thanks

    Call the US Support Center at 1-800-426-7378 (24 hours a day, seven days a week).

  • I purchased gems from a game and didnt get them because my method was declined i want to remove the order so i dont pay for it and so i can update my other apps and i want to remove the method i will be thankfull if someone help me

    i purchased gems from a game and didnt get them because my method was declined i want to remove the order so i dont pay for it and so i can update my other apps and i want to remove the method i will be thankfull if someone help me without updating the payment method i cant update my apps in my iphone i want to remove the method and remove the order i dont want it

    Click here and ask the iTunes Store staff for assistance.
    (125742)

  • LAST ORA-1578 RECOVERY METHOD

    제품 : ORACLE SERVER
    작성날짜 : 2002-04-12
    LAST ORA-1578 RECOVERY METHOD
    =============================
    Purpose
    Ora-1578 error 에 대한 조치 방법에 대해 이해하도록 합니다.
    Problem Description
    일반적으로
    ORA-1578 : ORACLE data block corrupted (file # num,block # num)
    은 해당 objects를 drop하고 recreate하여 처리할 수 있읍니다.
    하지만, backup이 안되어 있거나 되어 있더라도 시점에 문제가 생기면,
    당황할 수 밖에 없습니다.
    Solution Description
    이 자료에서는 손상된 db block만을 제외한 다른 block들을 recover하는
    방법을 알려 드립니다.
    1. 손상된 table과 똑같은 spec의 new table생성
    2. 아래의 pl/sql 실행
    ** This program uses a cursor to select the ROWID from INDEX
    ** for the corrupted table. And insert the all of the normal rows
    ** into the new table.
    DECLARE
    CURSOR c1 is
    SELECT ROWID FROM corrupted_table
    WHERE indexed_column > smallest_value_of_the_indexes
    AND SUBSTR(ROWID,1,8) != '000005DA';
    /* Here,the value of '000005DA' is displayed in decimal
    when ORA-1578 error happens. */
    rowid_value CHAR(18);
    count_value NUMBER;
    BEGIN
    OPEN c1;
    FOR i IN 1..total_number_of_the_rows_from_corrupted_table LOOP
    FETCH c1 INTO rowid_value;
    EXIT WHEN c1%NOTFOUND;     
    INSERT INTO new_table
    SELECT * FROM corrupted_table WHERE ROWID = rowid_value;
    count_value := count_value + 1;
    IF count_value = 10000 THEN /* Let's think commit per 10000 rows */
    COMMIT;
    count_value := 0;
    END-IF;
    END LOOP;
    CLOSE c1;
    END;
    3. new table의 data건수등 확인후에 기존 table을 다른 이름으로
    rename한 후 new table을 original table name으로 rename
    SQL> rename corrupted_table to table_save;
    SQL> rename new_table to corrupted_table;
    4. 필요한 index생성이나 constraint enable
    5. 손상된 row에 대한 내용은,
    최소한 primary key나 indexed columns에 대한 내용을
    SQL> spool chk.log
    SQL> select rowid,indexed_column1,indexed_column2,indexed_column3...
    from corrupted_table
    where indexed_column1 > smallest_value_of_the_index;
    SQL> spool off
    를 통하여 chk.log에 저장후,
    SQL> select count(*) from corrupted_table;
    혹은 table export등을 통하여 확인된 rowid의 block number를 비교하여
    보면 됩니다.
    주의사항은 여기에서 ora-1578과 동반되는 block number는 decimal이니,
    hexa로 환산해야 합니다.

    you did not try to recover the datafile until get syncronyns with the controlfile ?
    RECOVER
    RECOVER {general | managed | END BACKUP}
    where the general clause has the following syntax:
    [AUTOMATIC] [FROM location]
    { {full_database_recovery | partial_database_recovery |LOGFILE filename}
    [ {TEST | ALLOW integer CORRUPTION } [TEST | ALLOW integer CORRUPTION ]...]
    |CONTINUE [DEFAULT]|CANCEL}
    where the full_database_recovery clause has the following syntax:
    [STANDBY] DATABASE
    [ {UNTIL {CANCEL | TIME date | CHANGE integer} | USING BACKUP CONTROLFILE}
    [UNTIL {CANCEL | TIME date | CHANGE integer} | USING BACKUP CONTROLFILE]...]
    where the partial_database_recovery clause has the following syntax:
    {TABLESPACE tablespace [, tablespace]... | DATAFILE datafilename [, datafilename]...
    | STANDBY
    {TABLESPACE tablespace [, tablespace]... | DATAFILE datafilename [, datafilename]...}
    UNTIL [CONSISTENT] [WITH] CONTROLFILE }
    where the managed clause has the following syntax:
    MANAGED STANDBY DATABASE
    [ {NODELAY | [TIMEOUT] integer | CANCEL [IMMEDIATE] [NOWAIT]}
    | [DISCONNECT [FROM SESSION] ] [FINISH [NOWAIT] ] ]
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a90842/ch13.htm#1010523
    Joel P�rez

  • My iPhone says connect to iTunes but i synced it to a different computer and my lock/sleep button is broken so i cant turn it off. I tried letting the battery die so I could try out the iPhone recovery method however it didn t work that way either. Any he

    My iPhone says connect to iTunes but i synced it to a different computer and my lock/sleep button is broken so i cant turn it off. I tried letting the battery die so I could try out the iPhone recovery method however it didn t work that way either. Any h

    The only way out of Recovery mode is to connect to iTunes and restore. If you cannot access the computer you normally sync with, you will lose all of your content, unless you sync to iCloud. With no backup present, your content will be lost.

  • Insyde BIOS Recovery Method ?

    I have hp Pavilion dm3-1060ef Notebook PC & its "Insyde BIOS" is gone & my baby has no longer started. So I downloaded its BIOS from HP ftps & I decompressed its, so I found a folder named "Crisis" containing two files : "142E.bin" & "3649.bin". I am wondring which one is the correct file name to be used in the USB Stick to use the recovery method. Help me please to save my baby
    Tomay

    No, you only have to copy the files onto it, with the name AMIBOOT.ROM
    It works ONLY with floppy, sorry.

  • Netbook Recovery Method?

    Hi...I just bought a new Toshiba netbook, and am the owner of a third Toshiba laptop.
    How do you create a recovery media for the netbook if you did not purchase an external drive?  It seems wasteful to have to purchase one just for this purpose and have it end up in a landfill.  I tried the external from my work lenovo but it didn't appear to recognize it.  I have external USB drives, but the system software INSISTS that it needs a CD/DVD drive to create a recovery disk.  Please be gentle.
    Keeping in mind (a) I need to create a recovery media and also to be abe to restore from that media:
    1.  Is there a method to do this just using my USB external hard drive?
    2.  Is there a method to link to my existing laptop (either directly or via network) to both create a recovery DVD AND recover the netbook using that same laptop DVD drive if needed? 
    3.  Can I just copy the entire image directly to the external USB hard drive and would that be of use in a crisis? 
    4.  Any other ideas/suggestions very welcome!
    Thank you for reading, and for your help!!  Molly.
    Solved!
    Go to Solution.

    Jerry,
    Thanks again.  On my first try, before posting here in the forum, I had gone to the native Windows backup and recover functionality. 
    The second time, I followed the user manual you posted, using the Toshiba software.  Using a USB "stick" it is working.  It is formatting the 10GB stick and states that it is saving a recovery image on it.   It did NOT work with an external hard drive connected via USB.  Whether that is just my own particular setup/situation I don't know.  But I thought I would post this follow up info,  in case anyone else runs into the same issue/question.
    Sorry to be a case of "RTFM"...but I honestly didn't know the Windows software wouldn't work.  Thanks for being gentle...and helpful. 

  • In my macbook pro retina 15 inch there is installed mavericks but ı want to create recovery disk and ı need to download mavericks from App Store but it doesn't download??

    Hey guys ı really need your help. I bought macbook pro retina 15 inch 2 weeks ago and it came with installed mavericks of course but ı want to create a recovery disk and to do that ı need to download mavericks installer from app store but when i click to download mavericks from appstore purchased part ı get a message says " Your purchasing process couldnt complete. OS X Mavericks cant be installed to this computer." How can ı solve this problem!??

    One way around tis is to borrow a Mac that can run Mavericks and then the download will work.  You can use these instructions:
    http://www.macworld.com/article/1167857/how_to_make_a_bootable_mountain_lion_ins tall_drive.html
    Though they are for Mt. Lion, the same steps will work.
    Ciao.

  • There is already installed mavericks on my macbook pro retina 15 inch but ı want to create recovery disk

    Hey guys ı really need your help. I bought macbook pro retina 15 inch 2 weeks ago and it came with installed mavericks of course but ı want to create a recovery disk and to do that ı need to download mavericks installer from app store but when i click to download mavericks from appstore purchased part ı get a message says " Your purchasing process couldn't complete. OS X Mavericks cant be installed to this computer." How can ı solve this problem!??

    One way around tis is to borrow a Mac that can run Mavericks and then the download will work.  You can use these instructions:
    http://www.macworld.com/article/1167857/how_to_make_a_bootable_mountain_lion_ins tall_drive.html
    Though they are for Mt. Lion, the same steps will work.
    Ciao.

  • Want to change payment methods, it says: 'we're processing your order'. For 3 days already. In 2 days my subscription ends.

    I've had earlier issues with changing my creditcard data, eventually that worked, and the person I spoke with in the chat said everything would be fine with my subscription.
    Now, it says I should've had a bill 2 days ago to renew my subscription, but I didn't. So I clicked 'add payment info' and it says: 'We are processing your order'. But it's saying that for 3 days now, and my subscription ends in 2 days. So if it's not fixed by then I'm damn lost 'cause my work depends on Photoshop.
    What am I supposed to do now? I just want to pay the bill so I can use Creative Cloud.

    This is an open forum with a mix of other users and Adobe staff, not Adobe support... you need Adobe support
    Adobe contact information - http://helpx.adobe.com/contact.html may help
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

  • Urgent: want info abot JCP exam

    hi I want to give the JCP exam. i want the comlete info about the exam. can i give direct j2me exam or first i have to pass the core java exam? Is it neccessary to give papers sequencially? please if any one having idea then tell me...
    Thanks

    hi I want to give the JCP exam. i want the comlete
    info about the exam.
    one having idea then tell me... is there any model test paper available for this.
    Thanks

  • I want to order recovery media for my touchsmart tm2-2090ee ?

    Dear HP,
    Original HDD has stopped (no more workable), I purchased another HDD and I want to order the recovery media to return to original PC configuration.
    I purchased the laptop from Middle east region - Jordan , and now I am living in USA.
    type of my laptop is : Touchsmart tm2-2090ee  , S/N : [serial number edited].
    OS: Window7 Home Pre
    Thanks for your help 
    This question was solved.
    View Solution.

    You are welcome.
    It appears that you will not be able to order the Recovery Discs.  Therefore, you will have to buy a full copy of the OS.
    In the future, you should make certain to create the Recovery Discs when the computer is new.  This will save you many problems.  I made the same mistake myself.  It is not a good feeling when you don't have the discs.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

Maybe you are looking for

  • Problems with Audio Sync and Rendering

    In both problems what happens is NOT consistent. If were, would think was a setting or something I was doing wrong. About the rendering problem. I capture either through FCP Log and Capture or through my analog to digital "box", Formac Studio TVR. In

  • Streaming from Denon receiver to Airport Express Base Station?

    Hello, i know it's possible to strem music, video, etc. from your apple device to a Denon receiver with airplay, but is it also possible, to stream sound from the Denon receiver to an Airport Express Base Station? I'm about to purchase such a Denon r

  • Phone will not ring only vibrates.

    My wife has an Iphone4. It is running on IOS 6. I have check the mute button on the side. I have checked the volume level in the settings. I have completed a soft reboot. She also claims the alarm does not have sound, I have not checked that myself.

  • Convert Selection for iPod...causing Unexpected Quits!!

    I have 2 video thta I want to play on my BRAND NEW IPOD :)!!!! When I click convert selection (for) iPod it starts but iTunes unexpectedly quits!!! Music transfers fine. Do I need to use 3rd party software to convert these to iPod format?!?!? This is

  • Error when trying to download Adobe Edge Animate trial

    I've been trying to download a trial for Adobe Edge Animate for the last two days and keep getting an error message saying "there is a problem, please try again later."  Can't find a way to contact Adobe directly to see if there is a problem or if/wh