Dataguard switchover with different patches

Hi,
we are planning to do a db switchover from primary to DR.But we have no patches installed in Primary but in DR PSU 3 patch is installede along with some one off patches .The base version is 11.2.0.1 .Should I rollback the patches from DR before switch over or is it fine this way.
Log transfer and log apply is going fine as of now.

we are planning to do a db switchover from primary to DR.But we have no patches installed in Primary but in DR PSU 3 patch is installede along with some one off patches .The base version is 11.2.0.1 .Should I rollback the patches from DR before switch over or is it fine this way.
Log transfer and log apply is going fine as of now.Why you didnt applied on primary?
As a process you have to apply binaries of standby, then binaries of primary and run catbundle psu on primary. So that when you start log transport then automatically all the changes will be applicable/view modifications/Compile will be done through archivelogs from primary to standby.
check this note how to apply CPU/PSU in standby environments.
*How do you apply a Patchset,PSU or CPU in a Data Guard Physical Standby configuration [ID 278641.1]*

Similar Messages

  • Restoring the backup on other server with different patch level

    Hi Gurus,
    I have one HP-UX B11.31 server which holds ORACLE software with 10.2.0.4 patch level, and I have restored one database with the same patch level from HP DataProtector successfully. Now, I want to restore two node RAC database backup with Oracle Patch level of 10.2.0.2 into the Restore server which is of 10.2.0.4 patch level, the RAC database uses ASM, here are the steps which I am going to follow;
    1. Create a new database with the same schema as like the RAC database in ASM.
    2. Restore & Recover the RAC database backup from Data Protector.
    But, I have one question, can I restore & recover the backup which is in lower grade Oracle software patch level i.e; 10.2.0.2 on a higher grade Oracle software patch level ie; 10.2.0.4 ???
    ?:|
    Even after restoring & recovering can the database will work? PLEASE guide.
    Thanks in Advance.

    Thanks again!!!
    The point of upgrading the database comes when there is already a database and one is upgrading the ORACLE software version and then upgrading the database to its version using the scripts you suggest.
    Here is the scenario where I have to restore and recover a 10.2.0.2 RAC database backup on 10.2.0.4 sotware version,
    *my question is that, whether there will be any conflict of patch version as the Oracle Brain will be of the latest version? Oracle software will successfully restore and recover the database backup with a lower patch version? or it will throw any error when restoring the backup like compatibility unmatched between the software and the backup you are trying to restore & recover?*
    yes the RAC database is in ASM.
    Thanks & Regards

  • Compatibility between MII with different patch levels.

    Hi all,
    I know that the best solution is to have the same MII patch level in MII development environment and in produztion enviroment.
    For many reasons that aren't  under my direct controli, we'll have an MII 12.0.5 in development and MII 12.0.8 in production.
    Are there any point to verify? Can we export from development environment and deploy to production without any changes?
    On the contrary, what about having the development environment at a higher patch level than production enviroment (e.g 12.0.8 in development and deploy the solution on a 12.0.5 prduction enviroment)?
    Thank in advance for your responses/experiences on this subject.
    Best wishes for a nice 2010

    Hi,
    If you transfer from lower patches to higher patches there will not be any problem as such.
    In the otherhand if you trying to export the project from higher to lower patch  there you have the problem. Becuase some bugs might have been fixed in the higher patch those are not avaialble in the lower. For example in some date function of BLS might have been fixed in updated patch,the same you copied then that particulr function will not work in the lower patch and the BLS will come with errors.
    Hope this helps you.
    -Suresh
    Edited by: Suresh Hiremath on Jan 7, 2010 12:11 PM

  • Can i do client export import between systems with different patch levels

    we want to do a client export import between two systems. As I understand the patch levels should be the same in both for this to happen..
    But right now I am in a situation where time is a big constrant. The basis patch level is on par. But the rest are not. Can I do  client import successfully at this stage.

    The only thing that may stop it working could be additional functionality between the systems.
    I work on XI and there is a huge difference between SP12 and SP15.  We were able to do the transports between systems, but as Dev was patched before QA, and the transport was reliant on standard settings not being available, it still went though, but we had to transport it again after applying SP15 to QA.
    Again, it probably depends on what System you have running on Netweaver...

  • How do i use a Aux channel with reverb from two different patches

    I have a Concert with an Aux channel strip for Reverb and i want two seperate patches to both use Send 1 with different amounts/level of reverb but when i move the fader on the patch and then go to the other patch the fader has moved back to the down position
    Hope this makes sense
    P.S i know i can do it with two separate buses but want to keep it tidy
    Thanks

    1: select an instrument channel, go the parameter of the channel then change the midi channel to "ALL"
    2: insert the Multitimbral sampler of your choice ( RMX, hypersonic or what ever) and load the sounds you want onto them
    3: open environment, in the environment parameter it shows AUDIO click hold it and select ALL OBJECT, then go to view and untick "BY TEXT"
    4: connect the GM DEVICE to the channel that has the Multitimbral Sampler on it'll ask Do you want to remove the channels port setting? click remove
    thats it
    Now go to the arrange window and you can use all the 16 midi channels to control one Multitimbral Sampler
    that means midi channel 1 will control what ever sound is loaded in the first slot on the Multitimbral Sampler
    lemme know if there was a mistake along the line, i'm a bit tired gotta help out
    stash

  • ORA-04062 error when running forms with different users

    ORA-04062 error when running forms with different users
    I have a form that has a block that should display some data from another users tables. (The other user's name is dynamic, it's selected from a list box)
    I wrote a stored procedure to get the data from other user's tables.
    When I compile the form and run it with the same user I compiled, it works without any error. But when I run the compiled form with another user I get the ORA-04062 (signature of procedure has been changed) error.
    I tried setting REMOTE_DEPENDENCIES_MODE to SIGNATURE in init.ora but it didn't help.
    My Forms version is 6i with Patch 15.
    Database version is 9.
    Here is my stored procedure:
    TYPE Scenario_Tab IS TABLE OF NUMBER(34) INDEX BY BINARY INTEGER;
    TYPE Open_Curs IS REF CURSOR;
    PROCEDURE Get_Scenarios(User_Name IN VARCHAR2, Scen_Table OUT Scenario_Tab) IS
    Curs Open_Curs;
    i NUMBER;
    BEGIN
    OPEN Curs FOR
    'SELECT Seq_No FROM '|| User_Name ||'.scenario';
    i := 1;
    LOOP
    FETCH Curs INTO Scen_Table(i);
    EXIT WHEN Curs%NOTFOUND;
    i := i + 1;
    END LOOP;
    END Get_Senarios;
    I would be happy to solve this problem. It's really important.
    Maybe somebody can tell me another way to do what I want to do. (getting a list of values from another users tables)

    I think it should be a better solution to create a package,
    and put your own TYPES and procedure into it.
    CREATE OR REPLACE PACKAGE PKG_XXX IS
    TYPE TYP_TAB_CHAR IS TABLE OF .... ;
    PROCEDURE P_XX ( Var1 IN VARCHAR2, var2 IN OUT TYP_TAB_CHAR );
    END ;
    Then in your Form :
    Declare
    var PKG_XXX.TYP_TAB_CHAR ;
    Begin
    PKG_XXX.P_XX( 'user_name', var ) ;
    End ;

  • Perform Client import/export SCC8 with different release component between server

    Dear All
    Isn't possible to perform Client import/export SCC8 with different release component between server.?
    Currently the condition of between two system as follows
    Source Server     : SAP ECC6.0, Component SAP_APPL, release 602 level 16
    Target Server     : SAP ECC6.0, Component SAP_APPL, release 600 level 24.
    This problem happens due we was unable to downgrade the release and patch the latest support pack of SAP_APPL reelease 600.
    Thank You, your help is much appreciated.

    No..

  • Simple spatial query with different SRID

    Can anyone help me with just a real simple spatial query with different SRID.
    Here is the error i get when i perform the query:
    AND SDO_RELATE(A.geometrie_point, B.GEOMETRIE_POLYGONE, 'mask=anyinteract querytype=WINDOW') = 'TRUE'
    ERROR at line 4:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-13207: incorrect use of the [IN COMPATIBLE BOUNDS in SDO_RELATE] operator
    ORA-06512: at "MDSYS.SDO_INDEX_METHOD", line 84
    ORA-06512: at line 4

    Hi,
    I am using 8.1.7.2 and i have the lattest spatial patch.
    From the start i had different SRID. The only thing i changed was the bounds of the coordinate system.
    I reset my bounds of the coordinate system with SRID 8307 to -180,
    180 in X (longitude), and -90,90 in Y (latitude) to see if the query window geometry
    (geom2) will be transformed to the coordinate system of the layer geometries (geom1)
    Her is the content of the user_sdo_geom_metadata :
    GIS_PCP GEOMETRIE_POINT
    SDO_DIM_ARRAY(SDO_DIM_ELEMENT('X', -5800000, 3600000, .00000005), SDO_DIM_ELEMENT('Y', 3516000, 6000000, .00000005))
    82227
    GIS_TEST GEOMETRIE_POLYGONE
    SDO_DIM_ARRAY(SDO_DIM_ELEMENT('X', -180, 180, .00000005), SDO_DIM_ELEMENT('Y', -90, 90, .00000005))
    8307
    Here is my query :
    select /*+ ordered */ A.no_point
    from gis_pcp A, gis_test B
    WHERE SDO_RELATE(A.geometrie_POINT, B.GEOMETRIE_POLYGONE, 'mask=anyinteract querytype=WINDOW') = 'TRUE';
    Here is my result :
    WHERE SDO_RELATE(A.geometrie_POINT, B.GEOMETRIE_POLYGONE, 'mask=anyinteract querytype=WINDOW') = 'TRUE'
    ERROR at line 3:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-13207: incorrect use of the [IN COMPATIBLE BOUNDS in SDO_RELATE] operator
    ORA-06512: at "MDSYS.SDO_INDEX_METHOD", line 84
    ORA-06512: at line 4
    If i change the bounds of GIS_TEST to the exact bouns of GIS_PCP then i dont have the error message above and i have correct results. Do i have the adjust the bounds of every layer to fit the biggest bound?

  • Setup Central Contract Management SRM 7.01 with differing release versions

    Hello experts,
    OSS note 1268821 explains how to configure the central contract management between a SRM 7.0 and  an ERP 6.04. So far so good, but how should it be handled if there are differing release versions such as ERP 6.04 and ERP 6.03? I guess that a technical split (xml services/ ALE distribution) is necessary?
    Assuming that there are some backends with differing release versions and in some cases with differing master data (not supported by central master data client) would you always go via PI? Independent of release version, technology and master data.
    Could you give some further detailed informations how to configure such a scenario? What has to be done to transfer existing contracts from an ERP 6.04 into SRM CM component (migration concept)?
    Thanks!!!
    KR Thorsten

    Hi Thorsten
    The minimal ECC version is 6.0 EHP4, Central Contracts require certain business functions in ECC to be activated and as these are included within ECC EHP4 you won't have these available in lower version. Therefore you won't be able to operate central contracts in such an ECC system.
    You would either have to go with patching these systems or go with GOA's for these systems.
    Operating central contracts via PI or SOA i believe provide almost similar functionality. SOA however requires an SRM EHP1 system and ECC EHP5 back-end to operate whilst central contracts configured via PI can be operated onwards from an SRM 7.0 and EHP4 system.
    I can't help you on your migration issue, maybe someone else can.
    Kind regards,
    Tim

  • Problem running JSP program on OAS 4.0.8.1 with JSP patch

    Hi all
    I've been running a JSP application on OAS 4.0.8.1 for a month now, but a week ago, when I updated a Java package on the server, the application will no longer run. The simple JSP pages with no bean-tags runs fine, but the ones with bean-tags doesn't work anymore.
    This is the error message:
    Request URI:/jsp/sag/login.jsp
    Exception:
    java.lang.VerifyError
    at java.lang.ClassLoader.resolveClass(Compiled Code)
    at oracle.jsp.app.JspClassLoader.loadClass(Compiled Code)
    at java.lang.ClassLoader.loadClass(Compiled Code)
    at oracle.jsp.app.JspAppLoader.instantiatePage(Compiled Code)
    at oracle.jsp.app.JspAppLoader.reloadPage(Compiled Code)
    at oracle.jsp.app.JspAppLoader.loadPage(Compiled Code)
    at oracle.jsp.app.JspAppLoader.getPage(Compiled Code)
    at oracle.jsp.app.JspApplication.dispatchRequest(Compiled Code)
    at oracle.jsp.JspServlet.doDispatch(Compiled Code)
    at oracle.jsp.JspServlet.service(Compiled Code)
    at javax.servlet.http.HttpServlet.service(Compiled Code)
    at oracle.OAS.servlet.servletrunner.exec(Compiled Code)
    I've read on java.sun.com that verifyerrors normally is due to bad package-files, but I've rebuilt the package at least 10-times now, so thats probably not it. What could it be?
    The application runs fine in JDeveloper 3.1
    Thanks on advance,
    Christian Holm

    Hi,
    I am trying to run JSPs on OAS 4.0.8.1.
    I have installed JSP patch, downloaded form olab.com
    I am not able to execute JSPs. I am getting 2 different problems.
    1. If I call the JSP directly from browser, Netscape will ask for save option, it won't execute.
    2. If I call the JSP from another page with submit button, I am getting the following error :
    The requested access method is not allowed for that object.
    Same error for any JSP.
    The same problem for all the samples available with JSP patch.
    Hi chrholm,
    I already tested for 1 month, so
    could you please help me to configure OAS 4.0.8.1 for JSPs.
    Could you please send me mail : [email protected]
    Any help appreciated.
    Thanks,
    Naidu
    null

  • DR Site with different os

    Dear all,
    I have 2 servers,Sun and IBM and oracle 10gr2 .I have a plan to implement DR-site.I know a dataguard cann't using with different os,rigth?
    Do you have any idea for this plan (except using dataguard)?
    Thank you for advance
    chara

    I would be surprised if DataGuard could fulfill this role with the disparate O/S, though the MOS note shows the database needs to be non-RAC, non-TDE and at 11.2.0.2 or above. Both O/S' need to be 64-bit also. I know when I looked at this not so long ago, it wasn't an option, but now they seem to have updated it.
    I would suggest GoldenGate. It's intended for logical replication between heterogeneous systems, which is basically what you're looking at. Though you might find the cost very high - one of the key selling points is to limit downtime between migration and upgrades and a lot of their main customers are banks.

  • One landscape with different databases releases

    Dears,
    A customer have MSSQL 2000 installed on your systems DEV and QAS. The PRD system does not installed.
    Now the customer need install only the production system, but he want with MSSQL 2005.
    Does have problems? What SAP recommend?
    Thanks,
    Dejalma Rodrigues

    Hi,
    It is possible to have different releases of DB within a landscape <u>as long as the same release of the SAP application supports it</u>. The end users will not see any difference.
    The challenge is support for DB patching if you don't have anywhere to replicate production issues. Not to mention possible issues with different DB tuning parameters and back-up recovery processes.
    I would suggest that you <b>at least</b> upgrade the QAS system to SQL Server 2005 too in the short term. The recommendation you will always get is to have all 3 aligned on the same release - that should be your longer term goal.
    Cheers,
    Mike

  • Hi, i am trying to open and view a report that comes from another server with different odbc connection

    hi, i am trying to open and view a report that comes from another server with different odbc connection
    i created a crystal report for a mysql database on my machine and everything works great
    but we have other reports that come from other machines with different odbc connection
    and this its not working when opens the report asks for credentials
    and i cannot use the remote ip for these reports that come from other machine
    question
    if i cannot connect to remote ip to open the report
    for each report i have to create a database the report database on my machine and then open the report ?
    or there is some other way to open the report ?
    i am using visual studio 2013 and mysql and
       <add key="MYSQLODBCDRIVER" value="{MySQL ODBC 5.3 UNICODE Driver}"/>
    thanks

    short
    i have a report that it was created on another server with a specific dsn
    now i am trying to open the report on my machine
    the database from the other server does not exist on my machine
    the server machine where the report was created the ip its not accessible
    question ?
    can i open the report on my machine or its impossible ?
    thanks

  • How can I transfer contacts from one iPad to a new iPad with different iCloud addresses?

    how can I transfer contacts from one iPad to a new iPad with different iCloud addresses?

    One way would be to e-mail them from yourself to yourself. That would totally avoid the different ID issue.

  • How to backup multiple iphones with different iCloud accounts but same apple id?

    I would like to back up 3 idevices each with different icloud accounts to itunes. But they use the same apple id so that itune purchases can be installed on each device (2 iphones and 1 ipad).
    All I want to do is create a backup in case the phones need to be restored. I also want to back up before downloading iOS 8.
    The Macbook Pro that I will back up to has one user and one itunes library.
    Is this possible without mixing up address books and contacts etc? Appreciate if some one could direct me to detail step-by-step instructions if they exist or please tell me how I can do this.
    Thanks.

    With Family Sharing they don't need to have the same Apple ID anymore.
    But backups to iTunes are kept separate among multiple devices; Apple ID and iCloud isn't involved at all. Just make sure the devices do not have the same name.

Maybe you are looking for