Dataguard GUI setup

I'm trying to get my OEM webpage to look similar to the ones in the dataguard examples. What steps do I need to do to get the dataguard GUI? I cant seem to find any documentation on this.

You must install OEM grid control. If you carefully compare the document's pictures with yours you will see in upper left corner of the console you have "OEM manager", NOT "grid control".
Derya.

Similar Messages

  • Dataguard broker setup - Licensing terms

    Hi,
    This is a simple question. I have searched Oracle documentation fairly elaborately, but could not find an answer.
    The question is: Can I co-host Dataguard Broker configuration with RMAN Catalog+EMGC ?
    We already have one host (Running EE) catering to RMAN Catalog and EMGC repository (On a single server). Since we have a requirement of configuring dataguard broker, the thought was to co-host this on the same server.
    Is there a licensing consideration to this? Can someone refer some relevant documentation please? Thanks in advance.
    Cheers,
    -Ganesh

    Is there a licensing consideration to this? Can someone refer some relevant documentation please? Thanks in advance.
    Standby is an copy of the primary database is maintained on a separate server at all times. the standby database is activated to act as the new primary database.
    "In this environment, both the primary and the standby databases must be fully licensed."
    Oracle standby servers need to be fully licensed if they are “hot standby” servers that can be used for production SQL queries. Some sources say that cold standby servers used less than 10 days per year do not need to be licensed, but you should verify this with your Oracle representative or the Oracle Store. In sum, current 2006 Oracle Data Guard licensing policies suggest that if Data Guard is installed for "standby" purposes, it requires full licensing.
    Check this discussion, it may help you.
    http://www.oracle.com/us/corporate/pricing/price-lists/index.html
    http://www.oracle.com/us/corporate/pricing/technology-price-list-070617.pdf
    license required for Data GUARD ??
    http://www.orafaq.com/forum/t/52173/0/

  • RAC + dataguard architecture/setup metalink notes

    Looking for RAC & dataguard configuration for one db ...

    Hi,
    I think it is rather worth to look around on the [Oracle Maximum Availability Architecture site|http://www.oracle.com/technology/deploy/availability/htdocs/maa.htm] for whitepapers than checking the Metalink (Well, at least I like MAA much better the Metalink)
    Hope this helps.
    Regards,
    Jozsef

  • Dataguard 11g setup between AIX and Linux

    Hi,
    We are planning to move our Oracle databases from AIX 6.1 to Oracle Linux 6.2
    To reduce the downtime, we are thinking of setting up a dataguard (physical or logical) and do the switchover.
    Have you performed this before?
    Will you pls send me the steps?
    Thanks,
    DR

    Hello again;
    I thinking no for the same reason.
    When my shop moved from AIX to Linux we just install Oracle on Linux and patched it to the same level as the AIX. We created users, tablespaces, job etc in advance and then just used import/export to move the needed schema's. Data Pump make this much easier.
    Do a schema(s) compare and switch when ready. But in any event I don't believe Data Guard can help you. You mostly have a migrate issue.
    Please consider closing your question when complete.
    h3. Oracle Database 10g & Multi-Terabyte Database Migration
    http://www.oracle.com/technetwork/database/features/availability/thehartfordprofile-xtts-133180.pdf
    h3. Incrementally Updating Transportable Tablespaces using RMAN
    http://www.oracle.com/technetwork/database/features/availability/itts-130873.pdf
    h3. Platform Migration Using Transportable Database Oracle Database 11g and 10g Release 2
    http://www.oracle.com/technetwork/database/features/availability/maa-wp-10gr2-platformmigrationtdb-131164.pdf
    Best Regards
    mseberg
    Edited by: mseberg on Nov 13, 2012 6:31 PM

  • Need SMP link for SRM MDM GUI setup

    Hello all,
    Can any one help me by providing the link for the following downloads in SMP.?
    -- SRM MDM Console
    -- SRM MDM Import Manager
    -- SRM MDM Workflow
    Thanks,
    Dinesh.

    Dinesh -
    Procurement Catalog Management based on SAP NetWeaver Master Data Management allows you to create, cleanse and manage your centralized supplier catalog facilitating a smooth flow in the procurement process. 
    SAP NetWeaver Master Data Management technology ensures data integrity and enables the content management processes in SRM-MDM Catalog. It lets you manage data and communication in an integrated environment for streamlined catalog content management.
    first of all you can get all relevant materials for SAP MDM latest in below link
    https://websmp203.sap-ag.de/installmdm71/
    for console, IM, DM and syndicator as well.
    for SRM MDM perspective follow
    SAP MDM Procurement Catalog Management
    in this you can also get wiki for SRM MDM solution.
    HTH
    thx
    Deep

  • Someone can help me to setup Oracle linux 6.0

    I've download oracle linux 6.0 ISO to setup in my VM workstation, but when the setup progress boot up, I can't find any GUI setup director in my screen.
    I chosen install or upgrade existing system item, and I chose language, timezone,etc..... but it still not lead to a GUI installation director, what's up!! is it my version issue or other??
    bty, someone can give me a link to download other version??

    When you select the "install or upgrade existing system" option, there will be a sub-screen where you can select software and enable additional repositories. There will be options like "basic server" (default), Desktop, Software Development Workstation, etc. Leave the default, but select the "Customize now" button to add the Desktop packages including Gnome and X-windows.

  • Best way to change GUI on the fly

    Scenario :
    A program has a simple GUI, subclassing JFrame with a JPanel content pane. Initially the GUI is a simple few text fields and a JButton. Now for the part that eludes me, when the JButton is clicked the GUI should be replaced by a graph drawn from information in the text fields.
    Coding a custom subclass of JComponent to handle the graphing is not a problem but the step to remove the text fields and JButton eludes me. What options are there and what pro/cons do they have?
    Cheers

    when you update layouts in any way, you need to call the container of the GUI's validate() method. this will ensure everything is where it needs to be. to change your gui over to your graph, it's a good idea to remove eevrything from the current GUI, add the graph, and then call the validate method. I'm really bored so I wrote you a simple example:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    class Graph extends JPanel {
         int y[]; // y-axis (inputted)
         int x[]; // x-axis (computed)
         public Graph(int y[]) {
              this.y = y;
              x = new int[y.length];
              setBackground(Color.white);
         public void paintComponent(Graphics g) {
              super.paintComponent(g);
              int n = 0;
              for (int j = 0;j < x.length;j++) {
                   x[j] = n;
                   n+=(getWidth()/x.length);
              g.setColor(Color.blue);
              g.drawPolyline(x,y,x.length);
    public class Example extends JFrame implements ActionListener {
         JTextField text[]; // input fields
         JButton button;
         JLabel label[];
         public Example() {
              super("Example");
              Container c = getContentPane();
              c.setLayout(new GridLayout(0,2));
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              text = new JTextField[10];
              label = new JLabel[text.length];
              // below is default GUI setup
              for (int j = 0;j < text.length;j++) {
                   label[j] = new JLabel("Y value #"+(j+1)+": ");
                   text[j] = new JTextField();
                   c.add(label[j]);
                   c.add(text[j]);
              button = new JButton("Graph!");
              c.add(button);
              button.addActionListener(this);
              pack();
              setSize(new Dimension(400,getHeight()));
              show();
         public void actionPerformed(ActionEvent e) {
              if (e.getSource() == button) {
                   int j;
                   int y[] = new int[text.length];
                   for (j = 0;j < y.length;j++) {
                        try {
                             y[j] = Integer.parseInt(text[j].getText());
                        catch (NumberFormatException ne) {
                             // one of the fields isnt an
                             // acceptable number, so forget about it
                             return;
                   // here the GUI needs to be rebuilt
                   Container c = getContentPane();
                   for (j = 0;j < text.length;j++) {
                        c.remove(text[j]);
                        c.remove(label[j]);
                   c.remove(button);
                   c.setLayout(new BorderLayout());
                   c.add(new Graph(y),BorderLayout.CENTER);
                   c.validate(); // <-- that is the key method to update the GUI
         public static void main(String args[]) {
              new Example();
    }

  • Added actionListener, then GUI broke

    Hi,
    1. first i ran my menu GUI, it worked fine
    2. then i added the actionListener code... now she no workie...
    what did i do wrong???
    ERROR MSG:
    C:\jLotto\LotFrame.java:34: cannot resolve symbol
    symbol : class ActionListener
    location: class LottoFrame
              new ActionListener(){
    ^
    1 error
    Tool completed with exit code 1
    import javax.swing.JFrame;
    import javax.swing.JMenuBar;
    import javax.swing.JMenu;
    import javax.swing.JMenuItem;
    import javax.swing.KeyStroke;
    import java.awt.Event;
    import javax.swing.JOptionPane; //print menu trial run
    public class LotFrame extends JFrame
      // Constructor
      public LotFrame(String title)
        setTitle(title);                             // Set the window title
        setDefaultCloseOperation(EXIT_ON_CLOSE);     // handle exit operation
        setJMenuBar(menuBar);                        // Add the menu bar to the window
        //MAIN MENU
        JMenu fileMenu    = new JMenu("File");          // Create File menu
        JMenu findMenu    = new JMenu("Find");
        // Construct the file pull down menu
        newItem   = fileMenu.add("New");             // Add New item
        openItem  = fileMenu.add("Open");            // Add Open item
        closeItem = fileMenu.add("Close");           // Add Close item
        fileMenu.addSeparator();                      // Add separator
        saveItem  = fileMenu.add("Save");            // Add Save item
        saveAsItem= fileMenu.add("Save As...");      // Add Save As item
        fileMenu.addSeparator();                      // Add separator
        printItem.addActionListener(
               new ActionListener(){
                    public void actionPerformed( ActionEvent e )
                         JOptionPane.showMessageDialog( LotFrame.this,
                         "adding actionListener at end of GUI setup",
                         "action at end", JOptionPane.PLAIN_MESSAGE);
                    }//end of actionPerformed
              }//end of actionLinstener
         );//endof .addActionListener
       printItem = fileMenu.add("Print");           // Add Print item
        menuBar.add(fileMenu);                       // Add the file menu
        menuBar.add(findMenu);
      }//end of constructor
      private JMenuBar menuBar = new JMenuBar();     // Window menu bar
      // File menu items
      private JMenuItem newItem, openItem, closeItem, saveItem, saveAsItem, printItem;
    }//end of class LotFrame

    java.awt.event.*;
    import java.awt.Event;

  • Can we change from ARCH to LGWR after Dataguard is life ?

    Hi all,
    After the dataguard is setup and running, can we change the log transmission method from ARCH to LGWR, without reinstalling the whole thing ?
    Thank you,
    xtanto

    Hi,
    Ya it can be done. But in which mode are u running.
    For max protection it should be LGWR SYNC AFFRIM should be there.
    If you're going to be in Max Availability or Max Perfromance you can change it at any time. Just change in parameter file and restart the database or just execute "ALTER SYSTEM" command to change it.
    Regards,
    Vijayaraghavan K

  • HP service guard and RAC or dataguard

    HP service guard must use with RAC on HP unix server?
    In dataguard how can we use the hp service guard?
    will you pls. clarify.

    HP Service guard is a clustering or High availability solution that protects you against hardware failure. Oracle Parallel server, the precursor to RAC, when implemented on HPUX platform required HP Service guard. With RAC, oracle bundles in its own clusterware and service guard is no longer a mandatory prerequisite. If Service Guard is installed oracle clusterware will delegate some of the cluster responsibilities to service guard.
    Dataguard on the other hand is a Disaster recovery solution that protects you against site disaster or whole data center outage. With that said it is not uncommon to see dataguard being setup between two servers within same datacenter to protect against hardware failure or for reporting purposes.
    How would you use dataguard with service guard? On the production site, you can use service guard for fail over the database between two nodes in case there is a hard ware failure. You can do the same for the DR site also.

  • AppleScript: how to reinstall "Folder Actions Setup"

    MacBook Air with Yosemite 10.10.3
    Although I can successfully use Script Editor and get AppleScripts to run, the /Applications/AppleScript folder is missing:
    Erins-MacBook-Air:~ Peter$ ls -l /Applications/App*
    /Applications/App Store.app:
    total 0
    drwxr-xr-x  9 root  wheel  306 Apr 11 14:53 Contents
    /Applications/Application Loader.app:
    total 0
    drwxrwxr-x  11 root  admin  374 Sep 16  2014 Contents
    Erins-MacBook-Air:~ Peter$
    I need to run the "Folder Actions Setup" app which is normally in the AppleScript folder.  I have reason to believe it was deleted in an attempt to recover disk space.
    In the app store, I tried to "upgrade" to Yosemite, and I got a message that since I already have Yosemite, I could simply use the "update" feature, but the entire upgrade installer is available if I really wanted to download it. I did that, and I ran through the entire process, which did some things, including changing my desktop image back to the default.  However, I still aint got no AppleScript folder.
    What next?

    Thanks.
    It would be nice if this weren't obsolete:
    https://developer.apple.com/library/mac/documentation/AppleScript/Conceptual/App leScriptLangGuide/reference/ASLR_folder_…
    I'm still learning my way around Folder Actions, but it seems that the GUI "setup" item is pretty minimal.
    If I successfully write a handler script for "on adding items to a folder...", and put it in the right place, apparently I can get everything working by ctrl-clicking the target folder in the Finder, and using the Services context menu to associate the target folder with the script I'm writing.
    This will be a bit obtuse for some people.  Perhaps Hazel fills this need better. 
    But thanks for the info!

  • How to completely remove SAP GUI 6.2

    Hello all,
    I have installed ( successfully ) BW 3.1 IDES on a Win 2003 server. Now the problem is that when I try to create a new logon, the message I get is "SAP Logon can not write to SAPlogon.ini, pls check permission on C:\windows".
    I have decided to remove the GUI completely and reinstall it. But when I uninstall using the GUI setup.exe, the saplogon.ini file remains in the c:\windows directory. Please help me in manually removing the old SAP GUI 6.2 in entirety from my machine. Thanks.
    Al
    PS I do not have sapsweep utility

    Check this thread Might be useful
    /people/prakash.darji/blog/2006/07/26/troubleshoot-the-sap-netweaver-2004s-bi-frontend-installation

  • Removing Dataguard

    A while back we looked into some Dataguard usage on 9i. We'd like to get rid of it, but I can't find anything on removing Dataguard from my instance and removing the standby. (I assume after Dataguard is off/gone I can just shutdown the instance and remove it's files to get rid of it.)
    I looked through the online docs, but nothing has been helpful.

    There are severall options if you configure Dataguard Broker you can delete it using Dataguard GUI (started from Enterprise Manager Console), you can of course also do it by hand.
    alter system set dg_broker_start=false scope=spfile;
    delete files to which this parameter are pointing:
    dg_broker_config_file1 string %ORACLE_HOME%\DATABASE\DR1%ORA
    CLE_SID%.DAT
    dg_broker_config_file2 string %ORACLE_HOME%\DATABASE\DR2%ORA
    CLE_SID%.DAT
    disable log_archive_dest_x whih was pointing to dataguard database.
    restart primary database
    shutdown standby database
    remove datafiles (standby redo logs if in plae and standby ontrolfile) from standby database.
    reconfigure listeners
    drop spfile for standby database
    Best Regards
    Krystian Zieja / mob

  • Server postfix/cyrus - mail setup bug

    Found a bug in GUI setup for mail service.
    Then changing Database in Server Admin - Mail - Advanced to different from /var/imap. There is no changes apply to /etc/postfix/main.cf in
    virtual_transport = lmtp:unix:/var/imap/socket/lmtp
    So if Database changes to /var/imap2
    value of virtual_transport in main.cf must look like
    virtual_transport = lmtp:unix:/var/imap2/socket/lmtp
    Maybe someone found this helpful =)

    Mr. Davis,
    I looked at my DNS settings, I have 127.0.0.1 and 75.75.75.75. I'm not very familiar with DNS and I'm assuming giving it 75.75.75.75 as a DNS is only for HTTP and not MX. Any suggestions would be greatly apreciated.
    Thank you for your response.

  • Organization not detected when running E2010 SP3 setup

    I am working on an Exchange 2010 organization with two multi-role servers in it. They are running SP2 with no rollups. I attempted to install an additional server using SP3 media, but during the setup, it does not detect the existing Exchange organization,
    but instead asks me if i want to create the First Organization object.
    Initially I thought that perhaps this might be because some schema needed updating, so I ran setup /PrepareDomain using the SP3 media, but when I reran GUI setup, I got the same thing: it doesn't see an existing Exchange org and wants to create one called
    First Organization.
    I used ADSIEdit to confirm that the Exchange org objects were there, but I'm not sure what to look at next.
    Any ideas?
    Dave Shackelford

    Hi Shackelford,
    Please make sure we are operating as Administrator.
    Please make sure the DC/GC server running well during the setup.
    Please verify whether the services are running well.
    Feel free to contact me if there is any update.
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

Maybe you are looking for

  • Podcast subscriptions do not work on otherwise good podcast

    I started using BluBrrys powerpress plugin on my wordpress site a few days ago and up untill this point its been fine, but I am having a really strange error that has me vexed The site I have set up is here: www.fantasticneighborhood.com The podcast

  • How to go about preserving iWork while resetting a MacBook?

    I am soon upgrading to a retina MacBook pro from my black MacBook that I got several years back and my father is taking it over. I would like to do a factory reset for him so that everything is fresh and snappy. Nothing on the MacBook needs to be pre

  • Problem with package imports

    Hi all, When I use the code import javax.mail.*; import javax.mail.internet.*;the message import javax.mail.*; cannot be resolved is shownI have added jaf-1_1_1.zip and javamail-1_4_1.zip to the project's build path in eclipse. Then why do I get this

  • Why is Optimizing Taking So Long?

    I imported a large number of home videos into my iMovie. The video files were transfered from another computer. Now I am getting a message, "Optimizing Video - Less than a Minute" and it has been WAY over a minute. Meanwhile, I keep seeing these shor

  • WAD Report Heading display

    Deall All, is it possible to display variable value in WAD report result header!!!!!!!!!!!!!!!!!!!!!!!. For example: I have variable on FISCPER on report, if i give 001.2009 as input, i should get result header as Result for perod " period input valu