How to rollback crs upgrade?

Hi,
My database is running on two node cluster database.it is cluster filesystem. database is running on Windows server. Now database and clusterware are runing 10.2.0.2 version. we r going to upgrade clusterware to 10.2.0.4. once upgrade will fail .. how to rollback to 10.2.0.2? .plz help
Thanx in advance
Thanks,

You can Upgrade and Downgrade the OCR Configuration in Oracle RAC, here is the link
http://www.stanford.edu/dept/itss/docs/oracle/10gR2/rac.102/b14197/votocr.htm#BABDAIDI
oracle Clusterware downgrade is not supported, pls refer the below links
Re: downgrade database from 10.2.0.4 to 10.2.0.2
http://www.eygle.com/Notes/10204_patch_note_Linux_x86.htm
Hope this helps,
Regards,
http://www.oracleracexpert.com
Click here to [Time difference between the RAC nodes is out of sync|http://www.oracleracexpert.com/2009/12/time-difference-between-rac-nodes-is.html]
Click here to [Duplicate RAC Database using RMAN|http://www.oracleracexpert.com/2009/12/duplicate-rac-database-using-rman.html]

Similar Messages

  • How to downgrade CRS from 10.2.0.3 to 10.2.0.2

    Hi Gurus,
    I am in the process of upgrading 10.2.0.2 to 10.2.0.3. So far things are going smooth. However, I want to have a rollback procedure ready in case anything goes wrong.
    Maybe I am not looking good enough, but I am having tough time finding document on how to downgrade crs in case of human errors during upgrade.
    1) Has anyone downgraded the CRS? If yes, does it cause any startup issues after downgrade?
    2) Does anyone know a metalink note id which explains the steps to downgrade CRS?
    Thanks a bunch.
    --MM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    AFAIK, there is no supported way to downgrade the CRS from 10.2.0.3 to 10.2.0.2. You may have restore from the backup (including voting/ocr devices and other config files under /etc).

  • How to "Rollback" to a previous OS

    My core audio does not support OS 10.3.9, it will only support up to 10.3.5 . I need to know how to rollback to this previous version of OSX. Also, if I do roll it back, will this cause any problems for me?
    PowerMac G5   Mac OS X (10.3.9)  

    Hello Again! No, it's not fun. I keep 2 bootable clone backups at all times so if I do any software upgrade or install anything new I can go back to what I know was a good system. One thing I NEVER do is let software update run automatically. I've read too many horror stories from problems associated with updates. I'm also not a fan of going from 10.3.6 to 10.3.9 for instance if 10.3.6 is working fine. If I'm not having a problem that the update is supposed to address I stay put. I've got 10.3.9 as a fresh install on one drive with nothing else but I use 10.3.6 as it's been operating flawlessly for about 2 years. I've added to many hacks and add on programs to risk an update. My system is tweaked just the way I like it. I use CarbonCopyCloner (CCC) to clone with and always boot from the clone to make sure it's ok.I back up any important documents daily to cd/dvd or another HD and I clone about once a month alternating between drives.I also repair permissions at least every week or so and run DiskWarrior about once a month. I also run 24/7/365.Tom
    CarbonCopyCloner
    G-4/Sawtooth/1.2ghz Sonnet/10.3.6/2gig ram Mac OS X (10.3.6)

  • HOW TO ROLLBACK ENCUMBRANCE BALANCE

    제품 : FIN_GL
    작성날짜 : 2003-11-24
    HOW TO ROLLBACK ENCUMBRANCE BALANCE
    ===================================
    PURPOSE
    balance table의 data 에 corrput 가 발생했을 경우 예산 가집행에 대한 rollback script를 제공한다.
    Explanation
    1. 관련 data를 모두 backup 받아 놓는다.
    2. data가 corrupt 된 기간을 확인한다.
    3. gl_balance table에서 corrupt 된 data를 delete한다.
    delete from GL_BALANCES
    where set_of_books_id = <set of books id which has the corruption >
    and actual_flag = 'E'
    and encumbrance_type_id = <Encumbrance type id of the corrupt balances>
    and period_year >= <Fiscal year which has the corruption >
    4. GL_SETS_OF_BOOKS table 을 update 한다.
    Update gl_sets_of_books
    set latest_encumbrance_year = <last correct encumbrance year>
    where set_of_books_id = <set of books id>
    5. Encumbrance Year 를 재오픈한다.
    Period 화면에서 해당 encumbrance year를 재오픈한다.
    6. Journal Status를 update 한다.
    update GL_JE_BATCHES set status = 'U', status_verified = 'N'
    where default_period_name in <List of periods in the
    corrupt fiscal year starting with the first period in that year
    up to the latest open for that encumberance type>
    and actual_flag = 'E'
    and set_of_books_id = <set of books id which has the corruption>
    and je_batch_id in
    (SELECT je_batch_id
    from GL_JE_HEADERS
    where encumbrance_type_id = <Corrupt encumbrance type id>
    and actual_flag = 'E'
    and set_of_books_id = <Corrupt Set of books Id>
    and period_name in <List of corrupt periods starting
    with the first period in the corrupt fiscal year
    up to the latest open for that encumbrance type>
    update GL_JE_HEADERS set status = 'U'
    where period_name IN <List of periods in the corrupt fiscal year
    starting with the first period in that year up to the latest
    open for that encumbrance>
    and actual_flag = 'E'
    and encumberance_type_id = <Corrupt encumbrance type id>
    and set_of_books_id = <Corrupt set of books id>
    update GL_JE_LINES
    set status = 'U'
    where period_name IN <<List of periods in the corrupt fiscal year
    starting with the first period in that year up to the latest
    open for that encumbrance>
    and set_of_books_id = <Corrupt set of books id>
    and je_header_id IN
    (select je_header_id
    from GL_JE_HEADERS
    where period_name in <List of periods in the corrupt fiscal
    starting with the first period in that year up to the latest
    open for that encumbrance>
    and actual_flag = 'E'
    and encumberance_type_id = <Corrupt Encumbrance Type Id>
    and set_of_books_id = <Corrupt Set of Books Id>
    7. encumbrance journal 들을 repost 한다.
    Example
    Reference Documents
    Note 99415.1

    If you want to load balances at the time of go live.
    Create a clearing account like data take over A/c
    MM will upload material balances using tcode MB1C and movement type 561
    it will generate the following accounting entry
    Finished goods stock a/c          Debit
    Semi-Finished goods stock a/c Debit
    Raw Material stock a/c             Debit
    Packing Material stock a/c        Debit
    Stores and spares a/c              Debit
    Data take over                          Credit
    Customer a/c (not recon G/l) Debit
    Data takeover a/c                  Credit
    Data takeover a/c                Debit
    Vendor a/c (not recon GL) Credit
    For Asset - tcode OASV
    Plant and Machinery a/c          Dr
    Accumulated depreciation a/c Credit
    Data takeover a/c                    Credit
    Cash balance through FBCJ
    G/L Tcode F-02,
    Data takeover a/c     Debit  (Balancing figure)
    Bank a/c                    Debit
    Advances                 Debit
    Share capital a/c       Credit
    Short term Loan a/c   Credit
    Long term loan a/c     Credit

  • HOW TO ROLLBACK BUDGET BALANCE

    제품 : FIN_GL
    작성날짜 : 2005-05-10
    HOW TO ROLLBACK BUDGET BALANCE
    ==============================
    PURPOSE
    GL Budget Balance 의 Period 설정이 잘 못 되었거나 Budget Balance 가 잘 못 지정되었을 경우에 아래와 같은 step으로 Budget Balance 를 Roll back 한다.
    Problem Description
    고객이 Budget 화면에서 End Date 설정을 잘 못 하여 Period 가 잘못 지정되었는데 Budget Journal이 생성된 후에 End Date 설정을 강제로 변경 하고자 할 경우나 Budget Balance 자체에 문제가 있을 때 아래와 같은 Step 으로 Rollback 한다.
    Solution Description
    Step 1. 관련 데이타는 미리 Back up 받아 놓는다.
    Step 2. Delete 할 Period를 결정한다.
    Step 3. GL_BALANCES table에서 해당 period 의 budget balance 를 Delete 한다.
    DELETE from GL_BALANCES
    where set_of_books_id = <set of books id which has the corruption >
    and actual_flag = 'B'
    and budget_version_id = <Budget version id of the corrupt budget >
    and period_year >= <Fiscal year which has the corruption >
    Step 4. Journal Statuses 를 Update 한다.
    UPDATE GL_JE_BATCHES set status = 'U', status_verified = 'N'
    where default_period_name in <List of periods in the
    corrupt fiscal year starting with the first period in that year
    up to the latest open for that budget>
    and actual_flag = 'B'
    and set_of_books_id = <set of books id which has the corruption>
    and je_batch_id in
    (SELECT je_batch_id
    from GL_JE_HEADERS
    where budget_version_id = <Corrupt budget version id>
    and actual_flag = 'B'
    and set_of_books_id = <Corrupt Set of books Id>
    and period_name in <List of corrupt periods starting
    with the first period in the corrupt fiscal year
    up to the latest open for that budget>
    UPDATE GL_JE_HEADERS set status = 'U'
    where period_name IN <List of periods in the corrupt fiscal year
    starting with the first period in that year up to the latest
    open for that budget>
    and actual_flag = 'B'
    and budget_version_id = <Corrupt budget version id>
    and set_of_books_id = <Corrupt set of books id>;
    update GL_JE_LINES set status = 'U'
    where period_name IN <<List of periods in the corrupt fiscal year
    starting with the first period in that year up to the latest
    open for that budget>
    and set_of_books_id = <Corrupt set of books id>
    and je_header_id IN
    (select je_header_id
    from GL_JE_HEADERS
    where period_name in <List of periods in the corrupt fiscal
    starting with the first period in that year up to the latest
    open for that budget>
    and actual_flag = 'B'
    and budget_version_id = <Corrupt budget version Id>
    and set_of_books_id = <Corrupt Set of Books Id>
    Step 5. Latest Open Budget Period 를 update 한다.
    UPDATE GL_BUDGETS
    set latest_opened_year = <Year prior to the corrupt fiscal year>,
    last_valid_period_name = <last period for the year prior to the
    corrupt fiscal year>
    where budget_name = <Budget name of the corrupt budget>
    and budget_type = 'standard'
    and set_of_books_id = <Corrupt set of books id>;
    DELETE from GL_BUDGET_PERIOD_RANGES
    where budget_version_id = <Corrupt budget version id>
    and period_year = <Corrupt budget fiscal year >;
    Step 6. Budget Year 를 Reopen한다.
    GL Responsibility 로 Applications에 접속하여 Budget Year를 Open
    Step 7. Budget Journals 을 Repost 한다.
    해당 Budget Journals 를 Repost 처리 한다.

    If you want to load balances at the time of go live.
    Create a clearing account like data take over A/c
    MM will upload material balances using tcode MB1C and movement type 561
    it will generate the following accounting entry
    Finished goods stock a/c          Debit
    Semi-Finished goods stock a/c Debit
    Raw Material stock a/c             Debit
    Packing Material stock a/c        Debit
    Stores and spares a/c              Debit
    Data take over                          Credit
    Customer a/c (not recon G/l) Debit
    Data takeover a/c                  Credit
    Data takeover a/c                Debit
    Vendor a/c (not recon GL) Credit
    For Asset - tcode OASV
    Plant and Machinery a/c          Dr
    Accumulated depreciation a/c Credit
    Data takeover a/c                    Credit
    Cash balance through FBCJ
    G/L Tcode F-02,
    Data takeover a/c     Debit  (Balancing figure)
    Bank a/c                    Debit
    Advances                 Debit
    Share capital a/c       Credit
    Short term Loan a/c   Credit
    Long term loan a/c     Credit

  • HT1338 im on osx snow leopard but the lion is no longer available on app store. How can i still upgrade to lion? my computer by the way is not compatible with mountain lion. thanks

    im on osx snow leopard but the lion is no longer available on app store. How can i still upgrade to lion? my computer by the way is not compatible with mountain lion. thanks

    Hello royalaqua,
    I do think you should ask yourself if upgrading to Lion is the right course to take.
    Snow Leopard is an excellent OS and Lion has literally been frozen out after barely a year.   Remember too that some of your apps may not work with Lion (those that have Rosetta, for example) so that could mean more new purchases.   Plus you may need to uprate your RAM too.

  • HT1600 How do I can upgrade my iPad 2 from  4.4 to 5.0 ?

    How do I can upgrade my iPad 2from 4.3.5 to iOS 5.1.0?

    Update it from iTunes on a computer as described at the bottom of this article; devices running an iOS version prior to 5.0 can't be updated straight from the device. It will be updated to the newest iOS release supported by the device’s hardware.
    (84286)

  • Hello everyone. I've got a macbook pro running on mac os x 10.6.8; trying to set up norton antivirus and it requires mac os x 7 or later. How can I safely upgrade to mac os. 7?

    Hello everyone. I've got a macbook pro running on mac os x 10.6.8; trying to set up norton antivirus and it requires mac os x 7 or later. How can I safely upgrade to mac os. 7?

    leroydouglas is correct, DO NOT install Norton or any other commercial anti virus software.  They all work very poorly with Macs.  If you insist on AV software, consider Sophos, it is free.
    If you do wish to update your OSX, here are the available options:
    http://store.apple.com/us/product/D6106Z/A/os-x-lion?find=lion
    http://store.apple.com/us/product/D6377Z/A/os-x-mountain-lion
    http://www.apple.com/osx/how-to-upgrade/
    Ciao.

  • How do I update/upgrade from Logic Pro 8 to 9?

    How do I update/upgrade from Logic Pro 8 to 9?

    There is no update, you have to purchase Logic 9 from the App Store, it's $199, which is close to the price of an update.
    Warning, if you do purchase Logic 9 from the App store it will download 2GB of additional patches/sounds/loops...etc. This is for first time buyers so their App Store Logic will have some basics to work with before trying to download the additional 20+GB of loop/instrument data. If you have a full installtion of Logic 8 it's possible the 2GB of data Logic initially downloads will mess with the instruments and sounds you've been using, past projects may not load properly. Just something to be aware of.

  • How to download or upgrade to the io5 system on my iPad 2?  Thanking everyone in advance for assisting me.

    How to download or upgrade to the ios5 on my iPad 2 .  Thanking you in advance for assisting me.

    If you have an iPad 1, the max iOS is 5.1.1. For newer iPads, the current iOS is 6.1.3. The Settings>General>Software Update only appears if you have iOS 5.0 or higher currently installed.
    iOS 5: Updating your device to iOS 5 or Later
    http://support.apple.com/kb/HT4972
    How to install iOS 6
    http://www.macworld.com/article/2010061/hands-on-with-ios-6-installation.html
    iOS: How to update your iPhone, iPad, or iPod touch
    http://support.apple.com/kb/HT4623
    If you are currently running an iOS lower than 5.0, connect the iPad to the computer, open iTunes. Then select the iPad under the Devices heading on the left, click on the Summary tab and then click on Check for Update.
    Tip - If connected to your computer, you may need to disable your firewall and anitvirus software temporarily.  Then download and install the iOS update. Be sure and backup your iPad before the iOS update. After you update an iPad (except iPad 1) to iOS 6.x, the next update can be installed via wifi (i.e., not connected to your computer).
    Tip 2 - If you're updating via wifi, place your iPad close to your router to preclude getting a corrupted download.
     Cheers, Tom

  • HT204053 how come i was upgraded iso6 on my iPhone, but now I couldn't link up to iCloud, it keeps asking my icloud password then failed login. But my iPad upgraded it works!! how to solve my iPhone using iCloud?

    how come i was upgraded iso6 on my iPhone, but now I couldn't link up to iCloud, it keeps asking my icloud password then failed login. But my iPad upgraded it works!! how to solve my iPhone using iCloud?

    If you still have access to your old email address, go to https//appleid.apple.com, click Manage my Apple ID and sign in with your iCloud ID.  Tap edit next to the primary email account, tap Edit, change it back to your old email account and verify it.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device. Then go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https//appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  You can now go to Settings>iCloud and sign in with your correct iCloud ID and password.
    If you don't have access to your old email address, you will have to contact Apple to have them reset the password so you can disable Find My iPhone and sign into your iCloud account.  You can either go to https://expresslane.apple.com, select "More Products and Services", then "Apple ID", then  on the next page select "Other Apple ID Topics", then "Lost or forgotten Apple ID password" and click "Continue"; or you can contact Apple Support (http://www.apple.com/support/icloud/contact/).

  • How to rollback my old os in ipad2

    how to rollback my old os in ipad2

    Well... so much for that plan.  Only backed up to the last version that it backed up - which was, of course, v5.0 from recent update and synch.
    May have to try restore as "new iPad". 

  • How much ram is upgradable for dv6 7024tx

     i want to upgrade my ram for dv6 7024tx... so how much i should upgrade it and how much it support

    Upto 16GB - 8GB each in the two slots available.
    Go through page 4, 27, 51 in this manual:
    http://h10032.www1.hp.com/ctg/Manual/c03582006.pdf
    RAM configuration: DDR3 1600MHz PC3-12800 SODIMM SDRAM
    http://www.amazon.com/gp/aw/d/B008KFO3CI?pc_redir=​1408805788&robot_redir=1
    Regards,
    ++Please click KUDOS / White thumb to say thanks
    ++Please click ACCEPT AS SOLUTION to help others, find this solution faster
    **I'm a Volunteer, I do not work for HP**

  • How to do patch upgradation in citrix server ?

    Dear all,
    How to do patch upgradation in citrix server (SAP B1 2005B PL41 to PL49) ?
    Whether i also need to do same in db server ?
    Jeyakanthan

    Hi Jayakanthan,
    Patch Upgrade is done on SAP Server only.After Completion of Patch 49 upgrade in SAP Server
    then open SAP B1 in server machine it start to upgrade DB after completed DB Upgrade
    In Citrix Server open the SAP B1 it start the upgrade process after completed
    restart the citrix server.
    There is no separate Patch instalation in citrix server.
    in Citrix server SAP client only installed so you can just open the
    SAP B1 in citrix server and other client machine also it automatically start to
    upgrade.
    *Close the thread if issue solved.
    Regards
    Jambulingam.P

  • How to rollback a traansacation if we got any problem while sending data to

    how to rollback a traansacation if we got any problem while sending data to a webservice...

    Is it SOA or OSB? Which version you are in..

Maybe you are looking for

  • Discoverer Desktop Issues 10.1.2

    Hi, I am using Discoverer Admin and Desktop both of Verions 10.1.2 I have no issue with Admin; I could do successfully all the work here. In Desktop i have login successfully as Application user; and created simple Order Report workbook (Order_Report

  • Apple Maps is displaying a very old address location -- How do I fix it?

    I am the worship director and web developer at Cambridge Church. For many years we were a mobile church, so we've had quite a few locations and addresses over the years. With the new Apple Maps, when people search for "Cambridge Church", two location

  • Panning Images in Edit Mode?

    I've used iPhoto 4 & 5, and noticed that this useful function in the former was missing in the latter. In version 4, by holding the Cmd/ key, I could use the crosshair to pan across and up and down an enlarged image, which was very useful when editi

  • How to export 1080 HD video to MPG4 file with chapters?

    Now that I have put a sequence together in FCE, how do I create a 1080HD MPG4 file that can be used on a PC, MAC or with the WD HD Media player (for those that know the latter). Thanks!

  • EMAIL SERVER in 11x

    Hello, In 11x, where do we need to set EMAIL Server incase if we forget it to set while configuaration. I have not found fr_global.properties anywhere...Have they changed the location in this new installation Pls let me know Thanks in advance.. Rgds,