Setting up DR Server

Dear Sir,
            Please send me steps for setting o DR Server for ECC 5 with oracle 9.2  database.

Hi Ketan,
I hope you might have gone through the document provided by Orkun Gedik. Here are the highlevel steps involved in setting up DR.
1. Install the SAP R/3 system in a similar hardware
2. Backup the PRD DB (offline backup)
3. Stop the application and DB in the DR site
4. Restore the backup in DR using BRRESTORE
5. Create a standby controlfile in PRD and copy the same to the controlfile locations in DR
6. Start the DB at the DR site in the standby mode
7. Copy the archive logs (you can either do this manually or automate the same usnig oracle dataguard)
8. Apply/recover the archive logs in the DR (ongoing process).
Hope this helps.
Regards,
Varadharajan M

Similar Messages

  • How can I set up Mavericks Server on a Test Mac without affecting the production server

    I have Mountain Lion server running as on an xserve as our main server, it has developed a few issues particularly related to Profile Manager and Certificates.
    So I was going to use the move to Mavericks as an opportunity to have a fresh start.
    So I want to set up Mavericks Server on a mac mini temporarily to test it and configure all the services before moving it to the Xserve as the main server.
    My question is what is the best way to do this, obviously I can't use the same IP or hostname as the main server if it is connected to the network, and some services can't be set up without a network connection.
    So do I give it a new IP and hostnmame for now and then change it later on, my concern is that changing the hostname might cause issues down the line.
    So what is the best way to set up a fresh server in preperation as a drop in replacement of the current server?

    Ok I got the test server set up fine and cloned it over to a spare partition on the Xserve.
    But when I booted into the new partition several things broke.
    1st the IP address changed itself despite the fact it is set to Manual, The Alert section of Server.app let me repair this.
    Profile Manager no longer worked, the web page just said Profile manager could not be found, was working fine on the test mac
    Tried deleting the OD master and resetting Profile Manager but it still didn't work.
    DNS needed repairing and restarting
    I decided at that point to abandon it and go back to the test mac where everything is still working.
    Any tips for overcoming these issues.
    I have thought maybe it would be best to turn off all server services before making the clone and then turn them on one at a time once it has been restored to the new partition on the xserve
    Also if the certificates that are created when making an OD master were made on the mac mini does that cause a problem when it has been restored to a different machine, should I leave OD off and just set it up when it is in its final place?

  • Please help - Scrollable result set in sql server 2000

    Hi can some one please help me. I'm trying to create scrollable result set in sql server 2000, but i just can't get it to work. I've been trying to do this for the past 12 hours. I want to go home, but I can't till I get this going! please help!!! My crap code is as follows:
    package transact;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.JInternalFrame;
    import java.sql.*;
    import java.io.*;
    import java.util.*;
    public class DummyFrame extends Dummy
    protected String name, surname;
    protected Connection conn;
    protected CallableStatement cstatement;
    public DummyFrame()
    createFrame();
    private void createFrame()
    try
    Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
    conn = DriverManager.getConnection(
    "jdbc:microsoft:sqlserver://server:1433;" +
    "user=user;password=pwd;DatabaseName=Northwind");
    catch (Exception e)
    e.getMessage();
    populateFields();
    menuAction();
    show();
    private void menuAction()
    btncontacts.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e)
    getRecords();
    populateFields();
    btncontacts.setText("NEXT");
    btnkeywords.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e)
    // transaction.getRecords();
    nextRecord();
    populateFields();
    btncontacts.setText("NEXT");
    protected void nextRecord()
    try
    // CallableStatement cstatement = null;
    cstatement = conn.prepareCall(
    "{call Employee_Selection}", ResultSet.TYPE_SCROLL_INSENSITIVE,
    ResultSet.CONCUR_UPDATABLE);
    ResultSet rs = cstatement.executeQuery();
    while (rs.next())
    surname = rs.getString("Lastname");
    cstatement.getMoreResults();
    catch (Exception e)
    e.getMessage();
    protected void getRecords()
    try
    CallableStatement cstatement = null;
    cstatement = conn.prepareCall(
    "{call Employee_Selection}", ResultSet.TYPE_SCROLL_INSENSITIVE,
    ResultSet.CONCUR_UPDATABLE);
    ResultSet rs = cstatement.executeQuery();
    while (rs.next())
    surname = rs.getString("Lastname");
    name = rs.getString("Firstname");
    rs.first();
    // call stored procedure
    catch (Exception e)
    e.getMessage();
    // populate the fields;
    private void populateFields()
    txtfirstname.setText(name);
    txtsurname.setText(surname);
    }

    ummm ok i think the logic in your code is kinda screwy...
    here is what your should be doing.
    create the gui.
    get the resultset...
    have code that looks like this for nextRecord...
    protected void displayNextRecord(){
      // we do not call next here because we already called it last time
      surname = rs.getString("Lastname");
      name = rs.getString("Firstname");
      populateFields();
      if(!rs.next(){
        btncontacts.setEnabled(false);// i'm not sure what btncontacts is but we want to disable next becuase there are no more records...
    // in your intitalization code you need to do this...
    // you old stuff ending with...
    ResultSet rs = cstatement.executeQuery();
    // the new stuff...
    if(rs.first()){
      displayNextRecord();
    }else{
      btncontacts.setEnabled(false);//the result set is empty
    }ok the real problem you are having is that you are trying to display one record at a time but you are scrolling
    through the entire result set using while(rs.next()... what you
    want to do is create the result set once and scroll through
    it one item at a time with your gui.
    the example method i have given displays the data from the current
    row in your gui. then it advances the result set forward one row if possible. this method assumes that the result set will always
    be positioned on a valid row thus the need for calling
    rs.first() before we originally call displayNextRecord()
    well i hope you find this helpful.

  • Need help setting up web server with WRT54GS

    Hello,
    I am trying to set up a web server with my linksys router. For the network settings, I have used 192.168.001.150 as my primary IP (192.168.1.150, all 3 numerical characters have to be filled in), 255.255.255.000 as my primary netmask and 192.168.001.001 (192.168.1.1) as my gateway. I have gone into my router and then enabled port fowarding for port 80 to 192.168.1.150 but I still cannot access my web server. What could be the problem?
    Any help would be greatly appreciated. I'm trying to set up this server so I can test scripts and things.

    bump

  • Set Up Test Server

    The guy who developed our website recently disappeared
    leaving me with the responsibility of making the minor changes we
    needt to make. I only think this is relevant because I really have
    no business doing this and I'm hoping that you all will help me
    through my issue and not tell me to hire a professional.
    Anyway I installed Dreamweaver and IIS on my XP Pro machine.
    I set up the remote server and downloaded (Get) the entire site
    onto a network drive. I set the Local root folder to the location
    that I downloaded the site. I set the Testing Server folder to the
    same location. Given my experience I thought I would change/test in
    the local copy of the site and then Put the changes up for the
    world to see.
    The URL Prefix for my Testing Server is:
    http://localhost/.
    When I try to preview my changes I get a page can not be
    found error. I believe this is because the local copy of my website
    is not in the C:\Inetpub folder. Do I have to move it?
    Do I have to set up a Virtual Directory in IIS? Is it right
    that I can't do this if my website is on a network drive?
    My website does not have a wwwroot page, does that matter?
    I read IIS and Dreamweaver help files today and still
    couldn't figure this out. Thanks for the help.
    Po
    Also - I tried to copy the installation of the software on
    his computer but it doesn't work. I think he changed stuff and IIS
    isn't even there.

    Is the site using ASP? Or ASP.NET?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "powlaz" <[email protected]> wrote in
    message
    news:f97n0v$p1p$[email protected]..
    > The guy who developed our website recently disappeared
    leaving me with the
    > responsibility of making the minor changes we needt to
    make. I only think
    > this
    > is relevant because I really have no business doing this
    and I'm hoping
    > that
    > you all will help me through my issue and not tell me to
    hire a
    > professional.
    >
    > Anyway I installed Dreamweaver and IIS on my XP Pro
    machine. I set up the
    > remote server and downloaded (Get) the entire site onto
    a network drive.
    > I set
    > the Local root folder to the location that I downloaded
    the site. I set
    > the
    > Testing Server folder to the same location. Given my
    experience I thought
    > I
    > would change/test in the local copy of the site and then
    Put the changes
    > up for
    > the world to see.
    >
    > The URL Prefix for my Testing Server is:
    http://localhost/.
    >
    > When I try to preview my changes I get a page can not be
    found error. I
    > believe this is because the local copy of my website is
    not in the
    > C:\Inetpub
    > folder. Do I have to move it?
    >
    > Do I have to set up a Virtual Directory in IIS? Is it
    right that I can't
    > do
    > this if my website is on a network drive?
    > My website does not have a wwwroot page, does that
    matter?
    >
    > I read IIS and Dreamweaver help files today and still
    couldn't figure this
    > out. Thanks for the help.
    >
    > Po
    >
    > Also - I tried to copy the installation of the software
    on his computer
    > but it
    > doesn't work. I think he changed stuff and IIS isn't
    even
    > there.
    >

  • Setting up VPN Server fails in Windows 8.1

    Hello Folks
    I'm trying to set up VPN server in my Windows 8.1 box to receive incoming connections. It fails at the last step (http://www.diaryofaninja.com/blog/2012/09/11/setting-up-a-vpn-server-on-windows-7-or-windows-8-ndash-secure-your-internet-use-while-away)
    of the process (Allow Access) with the following error. I binged a lot but none of the trouble shooting mechanisms worked for me. I made sure that concerned service (Routing and Remote Access) can be started and stopped manually. Also, the same step works
    in Windows 7.
    Please see attached for error details.
    Highly appreciate any help for fixing the issue.
    Cheers
    Manohar

    Hi  Manooh,
    Besides disabling IP v6, try reset the TCP/IP in the way below:
    Open the command line windows as an administrator and type the command “nets hint ip reset” hit enter, or you can try the fix it below:
    http://support.microsoft.com/kb/299357
    We usually modify the default RDP port 3389 to another value, if you followed this too, you should add an port exception through a firewall in the way below:
    1.Open Windows Firewall
    2.In the left pane, click Advanced settings. 
    3.In the Windows Firewall with Advanced Security dialog box, in the left pane, click Inbound Rules, and then, in the right pane, click New Rule.
    4. Choose “port” and input the port number as allowed to connect.
    Regards
    Wade Liu
    TechNet Community Support

  • Airport extr port setting w/SL server

    When moving our offices to a new location I lost all the settings on my Airport extreme.
    I have a Mini Server with Snow Leopard Server 10.6.8 that's connected to the internet via an Airport Extreme base station.
    We have a set of wikis that we usually acces from the internet with a domain name for which the IP was managed by Dyndns. I can access the wiki locally with the local adress (http://miniserver.local/groups/xxx/calendar/ or http://miniserver.local/groups/xxx/wiki/) but can't do it with the domain name as we used to before.
    I've opened port 80 on the airport extreme but it still doesn't work.
    Any ideas?

    Although the information specific to 10.6 has not yet been posted, lynda.com has an excellent step-by-step tutorial on setting up 10.5. server. It will cost you $25, but I believe it will be well worth the time and minimal cost.
    At this point, if I were you, I would start over with the Mini. Watch the tutorial on setting up the server in general and especially DNS and then reinstall server on the Mini. Remember that the server MUST have a static IP address.
    I hope you have some sort of external storage attached to the Mini as none of the internal drives are anywhere large enough to support 10 users with file sharing and Final Cut. Buy the biggest drive you can get with FireWire 800 and connect it to the Mini.
    Once you have the server and DNS set correctly, you can use Workgroup Manager to do all sorts of fun things, including shutting off the internet to client systems. To make it work, though, you will need to bind the client systems to the server.
    Not sure about moving to 10.5.x clients of that vintage. I have 10.5.x running on a 1Ghz machine at home and it is slow-going at best. The only advantage to 10.5.x is additional management tools that don't work in 10.4.x. I don't believe the parental controls (which can be used to lock down internet settings) will work the way you need under 10.4.x, but to be honest, I don't remember that far back.
    You will use Server Administrator to set up share points, including options to auto-mount a share point (again I highly recommend that this be an external drive). Workgroup Manager is where you will set up student accounts and, if desired, make share points auto-mount. Don't forget to set permissions, too. You can also do cool things like start up and shut down the clients on a schedule.
    Disconnecting the system from the outside world certainly has advantages, but it would be nice to be able to get software updates, especially for the server.
    Good luck.

  • How to use open Row set in sql server 2014

    Hello All,
    How to open the row set using sql server 2014 using link server connection.

    Hi  denyy,
    Are you referring to the OPENROWSET function in SQL Server 2014?
    The OPENROWSET method is an alternative to accessing tables in a linked server and is a one-time, ad hoc method of connecting and accessing remote data by using OLE DB. The examples below demonstrate how to use the OPENROWSET function:
    A. Using OPENROWSET with SELECT and the SQL Server Native Client OLE DB Provider
    SELECT a.*
    FROM OPENROWSET('SQLNCLI', 'Server=Seattle1;Trusted_Connection=yes;',
    'SELECT GroupName, Name, DepartmentID
    FROM AdventureWorks2012.HumanResources.Department
    ORDER BY GroupName, Name') AS a;
    B. Using the Microsoft OLE DB Provider for Jet
    SELECT CustomerID, CompanyName
    FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',
    'C:\Program Files\Microsoft Office\OFFICE11\SAMPLES\Northwind.mdb';
    'admin';'',Customers);
    GO
    C. Using OPENROWSET to bulk insert file data into a varbinary(max) column
    USE AdventureWorks2012;
    GO
    CREATE TABLE myTable(FileName nvarchar(60),
    FileType nvarchar(60), Document varbinary(max));
    GO
    INSERT INTO myTable(FileName, FileType, Document)
    SELECT 'Text1.txt' AS FileName,
    '.txt' AS FileType,
    * FROM OPENROWSET(BULK N'C:\Text1.txt', SINGLE_BLOB) AS Document;
    GO
    D. Using the OPENROWSET BULK provider with a format file to retrieve rows from a text file
    SELECT a.* FROM OPENROWSET( BULK 'c:\test\values.txt',
    FORMATFILE = 'c:\test\values.fmt') AS a;
    Reference:
    OPENROWSET (Transact-SQL)
    Using the OPENROWSET function in SQL Server
    Thanks,
    Lydia Zhang
    If you have any feedback on our support, please click
    here.

  • How to set a Proxy Server for appletv

    The network I'm on requires that I set a Proxy server to get out to the internet.
    Is there anyway to specify a Proxy server for AppleTV?

    Hi Red-Baron,
    The Apple TV does not support Proxy Server configuration (http://docs.info.apple.com/article.html?artnum=305010). An alternative is to enable internet sharing on a computer and have the Apple TV connect to that computer.
    Regards,
    John

  • Need Help on Setting up OBIEE server setup

    Hi All,
    I am new to OBIEE. we are setting up a server which can be utilized for Informatica and OBIEE. for that can anybody suggest which windows server is compatable to install the both softwares.

    Hi,
    Check the certification matrix :
    http://www.oracle.com/technetwork/middleware/bi/oracle-obia-111151-cert-matrix-525376.xls

  • Fnd_profile.save for setting APPS_FRAMEWORK_AGENT on server level

    Hi,
    i can set APPS_FRAMEWORK_AGENT on user level using " result := fnd_profile.save('APPS_FRAMEWORK_AGENT',URL,'USER',usr.user_id); "
    but this  "result := fnd_profile.save('APPS_FRAMEWORK_AGENT',URL,'SERVER',Node_id); " does not work for setting it on server level.
    Help from anyone will be much appreciated.
    Regards,
    Zafar

    What is the error you are getting when you try to set at server level?

  • Setting for J2EE server do not exist

    Hi,
    I have prepared a web service from a FM.
    I can't test it from the WSADMIN since this system is not integrated to a J2EE server. So I get the error message "Setting for J2EE server do not exist"
    I am able to generate the WSDL file from Tcode WSADMIN
    How can I test this web service from a browser with a J2EE server? If browser not possible then how can I test this web service.
    Thank you,
    Sam

    Hi Sam,
    I am not sure if you can test the web services without a J2EE server. For
    testing in wsadmin, you do not need the system to be integrated with a J2EE server. Only the details of any J2EE server in the landscape can be given in
    wsadmin -> Goto -> Administration Settings .
    Regards
    Srikishan

  • Best place in publishServiceProvider to create collection sets on the server?

    I'm developing a LR publishing plugin that talks to a custom-built back-end.  Collections on the server are created as needed within the publishServiceProvider.processRenderedPhotos function, which is working fine.
    Looking towards supporting collection sets, I don't think it's a good approach to try to manage these on the server at publish-time. 
    I haven't found any examples on creating collection sets on the server.  Is the following function a better place to create the collection sets on the server?
    publishServiceProvider.updateCollectionSetSettings
    If so, would it work to talk to the server at this point, get the collection set id, and if that fails, to throw an error?  I'd hope that the collection set creation would then be aborted within LR.
    Any advice is greatly appreciated!

    I've gone ahead and handled the collection set creation and update at the server from within updateCollectionSetSettings, likewise for handling collection creation and updating within updateCollectionSettings.  Failure at the server is correctly aborting the adding/updating of the collection/set within Lightroom.  All is good.

  • Set up mail server in 11.1.2.3

    Hi
    I am trying to set up mail server for a planning application 11.1.2.3.Under Administration > Application Settings > Advanced Settings > System Settings tab, I cannot find the Email server option.
    Where can i enter the details for email server in 11.1.2.3?

    "Administrators must specify the email server details before others can enable email notification. The email server details for approvals notifications come from the EPM Registry, which are set using the EPM System Configurator under Common Settings."
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Why does Reader 11 incorrectly set the DDE Server Name?

    It appears to me that the installer is setting the DDE Server name in the registry to 'AcroviewR10' instead of the 'AcroviewR11'.
    I confirmed by upgrading from Reader 9.5.x (DDE == Acroview) to Reader 11 (as of Oct 22, 2012) and the new value in the registry (XP and 7) was AcroviewR10.
    I know there was a similiar issue when Reader 10 was released. Is there any idea when an update might come out that will fix this? I hate having to give customer's .reg files to fix these issues.
    I understand that you are new to updating this variable every release, and so it isn't a part of your checklist yet, but it would be highly appreciated if you could remember that for version 12.

    I had this working using the registry lookup this week. During testing on various machines, I found a discrepancy between the registry dde name and the dde name that acrobat would respond to.  I finally just made an array of possible names and iterated through them.
    I'm harvesting the application name from HKEY_LOCAL_MACHINE \Software\Classes\acrobat\shell\open\ddeexec\application in the registry.
    Capitalization does not seem to matter but I'll include the exact caps from my tests.
    Today :
    Acrobat XI Pro (11.0.06) shows up in the registry as AcroViewA10 but it responds to acroviewa11.
    Acrobat XI Pro (11.0.0) shows up in the registry as AcroViewA10 but it responds to acroviewa11.
    Acrobat Reader XI (11.0.06) shows up in the registry as AcroView
    R10 but it responds to acroviewr11.
    Acrobat X Reader (10.1.9) shows up in registry as AcroViewR10 and responds to acroviewr10.
    Reader 9 (9.0.0) shows up in registry as AcroViewA10 and responds to acroview. (The registry may be skewed by having Acrobat XI Pro installed on this machine.)
    Reader 7 (7.1.0) shows up in registry as AcroView and responds to acroview.
    So, I'm just brute forcing through all 5 known combinations plus 2 for version 12 on the off chance that the naming doesn't break pattern again.
    #define maxnames 7
    DIMENSION acronames (maxnames )
    acronames(1) = "acroview"
    acronames(2) = "acroviewa11"
    acronames(3) = "acroviewr11"
    acronames(4) = "acroviewa10"
    acronames(5) = "acroviewr10"
    acronames(6) = "acroviewa12"
    acronames(7) = "acroviewr12"
    loop
         AcroChanNum = DDEINITIATE(acronames(namecounter ), "Control")
         namecounter = namecounter + 1
          blah blah
    until AcroChanNum >=0

Maybe you are looking for

  • 7510 Photosmart Cartridge issues

    Hi - We recently tried to replace the ink cartridges for our HP 7510 Photosmart.  We have always used 564 Cartridges but these don't seem to be available and 364 are the new replacements as per the HP compatibility charts. Unfortunately we keep getti

  • How do I uninstall Google Drive so that I can reinstall the upgrade?

    I have a Mac Air, Processor 1.7 GHz Intel Core i5 running OS X (10.9.3) I have been using Google Drive to share files with friends and family but this week began getting a pop-up that I need to upgrade my Google Drive software. I downloaded the file

  • ACNS wait 120 seconds for reply not long enough

    Hello Using CE-7305A-K9 with ACNS 5.5.5 for outgoing proxy towards the Internet. A POST is send via the proxy and TCP ack'd by the application provider. The HTTP reply comes back from the application almost 4 minutes later. ACNS only waits for 120 se

  • Serial Number Input on VL01N screen

    Hi, I am facing the following issue on the VL01n screen, when serial number is input for the material using a bar code scanner. The problem is, it accepts just one serial number for the material and then closes the screen. The requirement is that if

  • What's going to happen to all the iWeb hacks when the next version comes?

    When I refer to iWeb hacks in the title, I'm thinking of non-Apple software like "iWebsites" and "iWebenhancer". From reading this forum, I've already learned how to have multiple websites on iWeb by duplicating and copying the domain file to differe