UCM - How to setup synchronize between DR and Primary site

Hi all.
As mentioned on title, we have a primary UCM site and a clean DR site. I want to ensure that end-users have ability to work with DR site for a short time when the Primary site is unavailable. To make DR site available to serves when the primary is down, we can do:
- setup auto-export archive on primary site
- target to destination archive on DR site
- auto-transfer from primary to DR site
- with data in Database, we can use Golden Gate to sync Primary and DR site
So, with these settings, I can ensure that the DR is ready to run when the Primary is down. But, if the primary takes a long time to recovered, the DR site has many new contents. How to transfer it back to primary site when the primary is came back ? In other words, how to synchronize contents (vault and native files) between new Primary (old DR) and new DR (old Primary) site ?
Thank for your attention.
Sorry for my bad English.
Cuong Pham

Hi Cuong (and guys),
I'm afraid the issue is not that simple. In fact, I think that the Archiver could be used for DR only by customers who have little data and few changes. Why do I think so?
a) (Understanding System Migration and Archiving - 11g Release 1 (11.1.1)) "Archiver: A Java applet for transferring and reorganizing Content Server files and information." This means that you will use a Java applet to Export and Import your data. With a lot of items (you will need to transfer all the new and updated items!), or large items it will take time (your DR site will always be "few minutes late"). Besides, the Archiver transfers are based on batches - I don't think you can do continuous archiving - and will have impacts on the performance.
b) Furthermore, (Exporting Data in Archives - 11g Release 1 (11.1.1)) "You can export revisions that are in the following status: RELEASED, DONE, EXPIRED, and GENWWW. You cannot export revisions that are in an active workflow (REVIEW, EDIT, or PENDING status) or that are DELETED." This means that the Archiver cannot be used for all your items.
Therefore, together with FMW DR Guide (Recommendations for Fusion Middleware Components) I think other techniques should be considered:
- Real Application Clusters (RAC), Weblogic Clustering, cluster-ware file system: the first, almost error-free, and relatively cheap option is having your DR site as other nodes in DB and MW clusters. If any of your node goes down, the other(s) will still serve your customers (no extra work needed), plus, you can benefit from "united power" of multiple nodes. RAC is available also in Oracle DB Standard Edition (for max. 2-nodes db cluster). The only disadvantage of this configuration is that it is not available for geo-clustering (distance between RAC nodes must be max. some hundreds meters), so it does not cover DR scenarios like "location goes down" (e.g. due to networking issues)
- Data Guard and distributed file system: the option mentioned in the guide is actually this one. It is based on Data Guard, a free option of the Oracle Database Enterprise Edition, which can run in both asynchronous (a committed transaction on the primary site is immediately transferred to the DR site) and synchronous (a transaction is not committed on the primary until processed by the DR site - if sites are far, or a lot of data is being sent, this can take quite long) modes. So, if you store your content in the database the Data Guard can resolve a lot. Unfortunately, not everything - the guide also mentions that some artifacts (that change!) are also stored on the file system (again, workflow updates, etc), so you have to use file system sync techniques to send those updates. In theory, you could use file system to send also updates in the database, which is nothing but a file(s) (in this case you will need the Partitioning option to split your database into smaller files), but db guys hate this way since it transfers also inconsistencies, so you could end up with an inconsistent database in the DR site, too.
This option will require some administrative tasks - you will have to resolve inconsistencies resulting from DG/file system sync, you will need to redirect your users to the DR site, and re-configure the DG to make primary site from your DR one. Note that once your original primary site is up again, you can use DG to transfer (again, immediately) changes done in the meantime.
As you can see, there is no absolute solution, so you need to evaluate your options, esp. with regards to your needs.
Jiri

Similar Messages

  • Please: How to sinchronize "contacts" between pc and ipad in windows 8?

    Please: How to sinchronize "contacts" between pc and ipad in windows 8?
    Thank you.
    Ramón Mª

    http://support.apple.com/kb/HT1296
    Regards.

  • How to transfer books between ipad and pc

    How to transfer books between ipad and the windows pc using iBooks.
    REGARDS
    Nadunbat.

    make sure the pc has the most current version of i tunes for windows, then simply sync your pad.  If it asks, upload purchases.  They will be there when you need them.

  • In Mountain Lion how does OS select between ethernet and WiFi when both are activated??

    In Mountain Lion how does OS select between ethernet and WiFi when both are activated??  How does OS use "both" networl accesses??

    It will pick the highest service in the list which has an internet connection.
    To order the list, open Network System Preferences and select Set order of network services from the button below the service list.

  • How to sinck data between  production and R12 instance

    Hi,
    I am working on Oracle Apps up-gradation project.
    Now I have upgrade 11.5.7 to R12 (12.0.4) successfully. I started up-gradation task with 1 May of production data (backup) on new machine.
    Client wants to live R12 from 1/August/2009.
    Please suggest how to sinck data between production and R12 instance.
    Thanks
    Anup

    Hi,
    It is not possible to do what you propose (sync data from an 11.5.7 system to a 12.0.4 system). You will need to re-run the upgrade against the August 1 data, following your original upgrade procedures.
    Regards,
    John P.
    http://only4left.jpiwowar.com

  • How the implementation differs between BW and BI , Is BI takes more time fo

    Hi All,
    I would like to know difference between implemenation and time lines for MM as mentioned below.
    How the implementation differs between BW and BI , Is BI takes more time for implementing MM module  than on BW?
    Thanks in advanced. (Full points will be awarded)
    With Regards,
    PCR

    Hi Timo,
    Thanks for response!
    But as i read from the following url: http://docs.oracle.com/cd/E15051_01/apirefs.1111/e10653/oracle/jbo/ViewObject.html, the setQueryTimeOut(int timeOutMills), the timeOut is mentioned in milliseconds. Please correct me if I am wrong.
    and i have overriden the executeQuery() method in the View Object Impl class as shown below:
    public void executeQuery() {
    Map sessionScope = ADFContext.getCurrent().getSessionScope();
    sessionScope.put("MyQuery", this);
    try {
    super.executeQuery();
    } finally {
    sessionScope.remove("MyQuery");
    throw new JboException("Query Taking too long to respond");
    and in the JAVA class i am calling the above method like this:
    monitor.setQueryTimeOut(6);
    monitor.executeQuery();
    But the issue is:
    1. The above exception message is getting carried forward to other pages as well. I mean somewhere in the session/ADFContext this message is being saved and error comes up/pops up when i click on other tabs of the page. How do i clear this?
    2. The above exception message is coming for the first time but when i click the 'Submit' button second time, i am getting the results and also the message that 'Query is taking too long to respond'. This should not be the case, everytime it should show the same message as the timeout limit is less and the query should end without fetching the results.
    Kindly let me know how to resolve the above issues, any pointers will be helpful.
    Thanks in advance.
    Edited by: user9223904 on Nov 3, 2012 4:42 AM

  • How does the integration between CRM and SD occur

    How does the integration between CRM and SD occur?  Is only via ALE and are there config steps in CRM to ensure the correct data mapping between CRM and SD?
    So, if I create an order or quote in CRM how is it then created in SD?  Or do they share the same data store.
    thanks

    Hi John,
    Here is good documentation regarding Data Exchange for Sales Transactions: the CRM Enterprise and the ERP System are two different repositories, If you create the Sales Order in CRM then they will be replicated into SD (using CRM Middleware, BDoc's)
    http://help.sap.com/saphelp_crm60/helpdata/en/52/2d0c38941e5666e10000009b38f8cf/frameset.htm
    Also you can check the best practice guide for CRM 2007 there you have plenty of information
    http://help.sap.com/bp_crmv12007/CRM_DE/HTML/index.htm
    Hope this help,
    Regards,
    Ramon

  • How to place content between header and tabs?????

    i have header part which has to be constant through out the portal but below that i have 3 links
    like I AM employee,employer,broker..
    which has to be shown only in home page above tabs..
    how can i achieve this..
    how to place content between header and tabs..:(kindly help..

    Hi Samiran
    Try these approaches and see if that works.
    1. In the Header Section, you header footer shell and add a Header Portlet. This Header Portlet associated JSP file will have all static content in the top section. In the bottom section, add these 3 links say to right hand corner. Show these links only based on some request property like isHome. Now for the main book having Home and other page associate a BackingFile. Within this backing file in the lifecycle methods like preRender or handlePostBack, get instance of BookManager and all the pages and see which page is Active. For that active page check its page definition label which will be always unique. IF the page def label is like home_page_def (this is page def label you give for home page), then set the key value in the request property like isHome=true. By only doubt is after Book backingfile is triggered, the header has to be reloaded, because only then it can pick up the request attributes.
    2. Create a brand new portlet like HomePageLinks portlet. Make its Title Property Not Visible, and other user interface properties like NoBorder, NoTheme etc. The associated JSP will have the 3 links you mentioned right aligned. You can use css styles to make it right etc. Now drop this portlet in the Header Shell area. You already have HeaderPortlet in the top, below that you will have this HomePageLinks portlet. Now associate a backing file for this Portlet to show, only if the Books current active page is Home page by comparing the def label etc as mentioned above.
    In both scenarios, only concern is when we click on different Pages, the entire portal has to be rendered right from the Top Header. Only then the backing file will set the key, and the HomePageLinks portlet can show or hide accordingly.
    Try firing an Event when the Home page is clicked. This listener for this Event can be the HomePageLinks Portlet. I guess Event mechanism should work irrespective of where the portlet is placed. In the event listner, see if you can show/hide this portlet.
    The only challenge is Header section needs to reloaded everytime you click on a Tab.
    Start putting some backing files and System.out.printlns to see if the Header section gets reloaded on click on any Tabs.
    These are just my thoughts over the top of my head. Other forum users can have better alternatives or a different version of above approaches.
    Thanks
    Ravi Jegga

  • Definition of the best approach on how to do reporting between BPC and BW

    Hi,
    I need your opinion in the definition of the best approach on how to do reporting between BPC and BW.
    For example if we want to do reporting using BW on Actuals Vs Budget how should we manage this since technically BPC Model and BW InfoCube is different?
    BPC Models have the Budget and BW has the actuals, but the InfoObject that is used for Account is different. What is the best approach to do the reporting?
    Thanks in advance,
    JA

    Hi Gersh
    I already thought in that option, but the problem is the Yellow requests in the Infocube that are not used by VP.
    In the past I used Report RSAPO_CLOSE_TRANS_REQUEST_ALL3 in the virtual function module to close the requests, but now I didn't want to use VP based on function module.
    Is there any option to use data in Yellow requests in VP based on DTP?
    Best regards,
    JA

  • How can I synchronize two iphones and two ipods on one MAC

    How can I synchronize two iphones and two ipods on one MAC. My wife and i each have our own iPods and iPhones but share one MAC.

    What do you mean by synchronize; music, apps, calendars, email, etc? Do you two share the same Apple ID on all devices? An Apple ID can support up to 5 computers and many iDevices.
    I hope this helps.

  • How to create agreement between supplier and distributor?

    Hi..
    How to create agreement between supplier and distributor?
    thanks & Regards
    Harish

    Hi,
    call TA EEDMIDESERVPROV02. Type in your service provider, an go to tab 'agreements'. Here you have the button 'Create Agreement'.
    Best regards,
    Alexander

  • How to configure SingleSignOn between GRC and BOBJ 4.1

    How to configure SingleSignOn between GRC and BOBJ 4.1?
    We have configured the System entitlement in BOBJ CMC. But didn't do anything on the GRC system.
    User can login from BOBJ to GRC with password but not with SSO.
    We haven't configured SNC . I don't this for this simple flow, we need to have SNC.
    We haven't set up the Trust certificate exchange as well between BOBJ and GRC.
    Please help us to know what are the mandatory settings need to be done to create a Relational connection for a ERP/GRC system  from BOBJ client tool IDT?
    thanks,
    Tilak

    How to configure SingleSignOn between GRC and BOBJ 4.1?
    We have configured the System entitlement in BOBJ CMC. But didn't do anything on the GRC system.
    User can login from BOBJ to GRC with password but not with SSO.
    We haven't configured SNC . I don't this for this simple flow, we need to have SNC.
    We haven't set up the Trust certificate exchange as well between BOBJ and GRC.
    Please help us to know what are the mandatory settings need to be done to create a Relational connection for a ERP/GRC system  from BOBJ client tool IDT?
    thanks,
    Tilak

  • How do you change between 12 and 24 hour format on ipad

    how do you change between 12 and 24 hour format on ipad

    Check: Settings - General - Date & Time - 24-Hour time = On/Off

  • HOW TO SYNC PLAYLIST BETWEEN IPAD AND IPHONE?

    HOW TO SYNC PLAYLIST BETWEEN IPAD AND IPHONE?

    You cannot sync a playlist directly from one device to another with using iTunes on your computer or using iTunes Match.
    https://www.apple.com/lae/itunes/itunes-match/

  • I have siemens plc s7-300 and labview how can i communiction between plc and s7-300

    Hi all good  morning
     iam new user for labview
    now iam working one new projects with labview and s7-300 automation plc  so how can i communication between plc and s7-300 using profibus or ethernet cables can any one help me with example
    thanks
    best regards
    vijaynagar.

    Dear vijaynagar,
    it would be posible to communicate with our Comsoft PROFIBUS products like DF PROFI II, FNL or cRIO PB.
    Please have a look at:
     - DF PROFII:  PCI, PCIe, C-PCI or PC104+ card with LabVIEW drivers: Link
     - FNL: Ethernet/PROFIBUS Gateway: Link
     - cRIO PB, C-Series module for National Instruments FPGA chassis: Link
    The DF PROFI II can be bought directly from Comsoft, the cRIO PB can be bought from National Instruments.
    Regards,
    Sven
    P.S. If you have any questions feel free to contact: [email protected]

Maybe you are looking for

  • Report for daily production and daily sales quantities

    Can you Please any body let me know what fields and tables should I pick to generate a report for sales qty and production qty for a material on daily basis. we are using PP PI

  • IPhoto '11 - steps after FileSalvage?

    Using my old '07 iMac, I was keeping my iPhoto library on a 1 TB external HD because it too big for my iMac.  I also had it saved to another HD.  I wasn't backing up my external HD with Time Machine (mistake #1).  Bought a '12 iMac and decided to upd

  • Camera in use by other application?

    iChat AV 4.0.3 (605) Hooked up my new JVC Everio (GZ-HD6) via firewire but iChat says that the camera is in use by another application. I do not have any other video applications open. I even restarted the computer (I did have iMovie HD open previous

  • Suggestion for Muvo TX (

    Now when a song plays I only see the title of the song, what is weard because on most mp3 player's you see: "(artist name) - (song name)". I hope you guys can make a small firmware update so the song information is displayed good. Thanks in advance,

  • Why do some apps have fonts that cannot be reduced.

    Waether channel covers just 25% of the app page and i cannot move to see the rest. NYt comes in as way too large. I ahve already tried magaing the font form the settings screen hut i get nowher.