What is a good strategy for keeping the OEM GRID up and running?

Hi,
What is a good strategy for keeping OEM GRID up and running? Currently, we have grid installed on one linux64bit box with 4 cpus and 8 gigs of RAM, oms 10204, repdb 10204, agent 10204. In addition to using this oem grid for notifications and performance monitring, we are also using this oem grid for scheduling over 700 jobs running over 30 targets.
What is a good strategy to have to backup the grid so that when this box goes down, we can restore and then recover the grid? Please lead to white papers or documentations. Thank you.

Take a look at Oracle Maximum Availability Architecture, a set of architectural recommendation on setting Oracle software up for high availability.
The information is available on this page:
http://www.oracle.com/technology/deploy/availability/htdocs/maa.htm
Look under HA Best Practices for Grid Control.
Chung Wu
[Application Management Blog|http://www.appmanagementblog.com/]

Similar Messages

  • What are some good apps for changing the pitch of my music? I currently use djay. Is there anything better?

    I like shifting the pitch of songs, it makes it sound new to me. what are some good apps that can do this? right now I use djay

    I like shifting the pitch of songs, it makes it sound new to me. what are some good apps that can do this? right now I use djay

  • What is a good case for iPhone 5? both stylish and protective.

    I want a new case for my iphone 5 i want something thats both good looking and can protect my Phone. especialy shock absorbing.
    my phone fell like 7 times including 1 hard fall ever since Google app is messed up ( letters override eachother) so yeah.
    a transparent 1 is also cool, My iPhone is Sexy.

    Hey, Michael
    Welcome to Apple Support Communities.
    My suggestion is you do have a look on the websites accesories section and find something that suits you, from what you are saying you need a stylish yet strong case. So any good plastic based one will do, you can choose the style and color then. Or you can actually visit the store and have a feel. I have several, when im at work i keep the stylish yet strong ones, but when i am in the field or sports i have a pretty strong one, a little chunky too.
    I hope this helps you. Let me know if it does. If not feel free to give me a shout. Best of luck.

  • What is a good replacement for the Adobe Flash Player for my iPad?

    What is a good substitute for Adobe Flash Player for my iPad? I would like to download a flash player for games but not sure what to get. Any suggestions, please?

    <http://store.apple.com/us/product/MC742ZM/A/ati-radeon-hd-5770-graphics-upgrade- kit-for-mac-pro-(mid-2010)>

  • What's a good strategy plan to import CDs into itunes library

    I have lots of CDs I'd like to import into my itunes library. What's a good strategy plan? Creating categories, playlist, etc will help?

    When you rip each CD, make sure that all the tag info is correct, including titles, artist, album, and genre. Then, once the tracks are in the library, you can use the built-in iTunes capabilities for sorting.
    There is no need to set up individual playlists per album; rather, use playlists for special lists or compilations that you make. When you are ready, learn how to use the smart playlist functionality, as it adds a lot of control and fun to your listening.

  • What's a good book for getting started?

    I've been doing web design in HTML and ColdFusion for almost 3 years. It's clear that ColdFusion is on it's way out and I need to learn J2EE/Java/JSP etc. I have a few questions:
    Java is a term I've heard associated with C++ and other types of programming as well as Web design. Are the Java/C++ Java and the Web Java basically the same type of language? Is the Web Java and JavaScript the same thing? I'm very confused!
    What is a good book for getting these types of questions answered and getting started in J2EE/Java/JSP? There are quite a few variations of script languages out there and I want to make sure I learn the right stuff, ie the stuff that employers are going to be needing.
    Thanks!

    Here is a free online version of a good book:
    http://pdf.coreservlets.com/Core-Servlets-and-JSP.pdf
    Print it off or read from the screen. Otherwise, there are several good Java books out there. What I would do is go to the bookstore and thumb through a few books. Depending on what type of book you want (example based or theory) find the books that you think would satisfy your learning style. Write down the names and authors, go home and buy them used online at Amazon for tremendous discounts. This way you can buy several versus just one.

  • What method should be used for resizing the particular JTable Column width

    I have a four table. Only one table which are on top have a table header. I want that when user resize the topmost table with a mouse other table colume also be resized automatically. So I want to know that what method should be used for resizing the particular JTable Column width.
    Thanks
    Lalit

    maybe you can implement a interface ComponentListener as well as ComponentAdapter with your topmost Table.
    for example:
    toptable.addComponentListener(
    new ComponentAdapter(){
    public void componentResized(ComponentEvent e){
    table1.setSize(....);
    table2.setSize(....);
    /*Optionally, you must also call function revalidate
    anywhere;*/
    );

  • What does symbol ! stand for in the following code?

    What does symbol *!* stand for in the following code? What does SYSTEM mean?
    <! DOCTYPE report-group SYSTEM "report-group.dtd">
    Edited by: user11337968 on Jul 3, 2009 4:53 PM

    It is just part of the XML specification; to do a "doctype", you must have an open angle bracket followed by an exclamation point. See [doctype decl | http://www.w3.org/TR/REC-xml/#NT-doctypedecl] for more information.
    Peace,
    Cameron Purdy | Oracle Coherence

  • When setting up yahoo e mail what info are they asking for in the description block

    When setting up Yahoo e mail on i pad2 what information are they asking for in the description block

    It's just a name/description so that you can identify the account in the Mail app. If you have more than one email account set up on the iPad, then that is the name that appears and which you select when switching between them - so it just needs to be something so that you can identify which email account it is so that you know which one it is that you are selecting/viewing

  • What is to be done for gettting the sign to the left of the figure?.

    Hi,
    what is to be done for gettting the sign to the left of the figure?.
    Example:
    On normal reports if there is a negative sign ie negative value
    then the sign appears like "123-"    to display it as  "-123"
    what needs to be done?
    I  want this on a report
    using a WRITE statement.
    Its urgent for me .
    Thanks,
    Satya,

    Hi,
    Use the FM CLOI_PUT_SIGN_IN_FRONT.
    The amount field cannot be directly passed to this FM.
    For example, If v_amount is the amount field. First move this value to a character field say lc_amount using
    write v_amount to lc_amount.
    Pass the lc_amount field to the FM CLOI_PUT_SIGN_IN_FRONT.
    If your system does not have the FM CLOI_PUT_SIGN_IN_FRONT,
    then use the below code
    DATA: lc_text(1) TYPE C.
      SEARCH lc_amount FOR '-'.
      IF SY-SUBRC = 0 AND SY-FDPOS <> 0.
        SPLIT VALUE AT '-' INTO lc_amount lc_text.
        CONDENSE lc_amount.
        CONCATENATE '-' lc_amount INTO lc_amount.
      ELSE.
        CONDENSE lc_amount.
      ENDIF.
    Reward points if found helpful.
    Thanks,
    Balaji

  • I've tried safe mode but I dont understand what is happening. I tried pressing the power button on and off for several times and nothing happens, I'm always stuck on an apple logo and a spinning wheel. I dont know how to get to the Partition and the DiskU

    I've tried safe mode but I dont understand what is happening. I tried pressing the power button on and off for several times and nothing happens, I'm always stuck on an apple logo and a spinning wheel. I dont know how to get to the Partition and the DiskUtility. The Apple Logo and the Progress Indicator will continue to spin and I have literally no idea what to do. i am in desperate need of help. help me pls

    Turn it off.
    Start it up again and (at the sound of the chime) press and hold the command and the R keys, hold them down until Recovery loads. When it does you will select Disk Utility and you should be on the First Aid tab when it opens, if you are not please select it. Then select the partition (in the side bar, 2nd entry on the list, see picture).
    Yours is probably called Macintosh HD.
    Once you have selected it go to the lower righthand corner of the First Aid dialog and press Repair Disk.
    This will take 10 minutes approximately. Post back when it is finished and tell me what it says.

  • I've tried safe mode but I dont understand what is happening. I tried pressing the power button on and off for several times and nothing happens, I'm always stuck on an apple logo and a spinning wheel. I dont know how to get to the Partition

    I've tried safe mode but I dont understand what is happening. I tried pressing the power button on and off for several times and nothing happens, I'm always stuck on an apple logo and a spinning wheel. I dont know how to get to the Partition and the DiskUtility. The Apple Logo and the Progress Indicator will continue to spin and I have literally no idea what to do. i am in desperate need of help. help me pls

    Reboot hold the command R for recovery.

  • Ok, so i bought a imac 27 about 4 months ago, and now they release a new one!  ****... So my question is, should I sell this one (which by the way is the i5 2.8 with 1 gb 5750 and 4gb ram) and buy the new imac 27 i5,or keep the one i have and buy more ram

    ok, so i bought a imac 27 about 4 months ago, and now they release a new one!  ****... So my question is, should I sell this one (which by the way is the i5 2.8 with 1 gb 5750 and 4gb ram) and buy the new imac 27 i5,or keep the one i have and buy more ram. I mostly use my computer for photoshop cs5 and illustrator cs5 for graphics out put as well as surfing the web and music.
         Please give me you thoughts on what I should do!!  Thanks  lot!

    The new iMac is about 25% or so faster than your current iMac(comparable model would be the 3.1ghz version). There are a couple of things that you will benefit from such as the dual Thunderbolt/Mini Display ports/ which may help with multitasking. The video card in the new iMac again the comparable model being the 3.1ghz is a lotttttttt better than the current one that you have. So thinking of the long run those few things may be beneficial for you to upgrade(but it depends on what is important to you).
    I had the 2.93ghz i7 version that I just bought in March this year and I turned around and sold it about a week before the new iMac's were announced. I got about $1600 for it, yeah I took a loss but to me it was worth it because my new iMac performs that much better. Now keep in mind I went from i7 to i7...3.4ghz i7 with the 2gb video card. Now I have dual thuderbolt/mini display ports. I have noticed significant gains in my video editing and also in my gaming. So to me it was definitely worth the upgrade!
    One last thing, I would not have sold my 2.93 i7 and then bought the 3.1ghz i5, the big reason is because HT(hyper threading), it's only on the i7 model(3.4ghz)... If you take a look at some of the bench marks on engadget, maclife, macrumors, macworld, ****Barefeats.com(they really get into benchmarking)*** you will see charts that will help you make a better decision.
    In closing I would say look into it, if you can get a good price out of your current iMac to put toward a new iMac then do it. Like others have mentioned to you, tech changes and Apple will change the tech in these machines next year or do a speed bump later this year or so. One last thing if you go from the 2.8 i5 up to the 3.4 i7, you would definitely see the difference (HT is a must especially for programs that utilize it. You can go to my youtube channel(mob1278) and take a look at my geekbench results.... my 2.93 i7 scored around 10500-11000(8gb ram)...my 3.4 i7 scores from 12700-13000 with 4gb ram....so yeah as you can see big difference. Basically the 3.4 i7 would perform similar or just under a 2.4ghz 8core 2010 Mac Pro which runs you about $3500 with no monitor.... it's your money spend it how you want....and Lion is only going to push it even more when it is released!

  • Replace a 2003 (not R2) File Server with a 2012R2 files server and preferably keep the same machine name and IP when finished

    I am wanting to replace a 2003 (not R2) File Server with a 2012R2 file server and preferably keep the same machine name and IP when finished.  For the moment I just need some "high level" guidance, little details can be worked out once I know
    which direction I will go.  I was considering that DFS might be a way to help get through the process although when finished the 2012R2 Files server will be by itself with no other file server planned at this time.  DFS can stay installed for maybe
    future purposes but clearly I wouldn't need the DFS Replication with only one machine.
    Here's a few details of the environment....
    1.  DC's are 2012R2 but it is still 2003 DFL because the old 2003 DCs are still present.  But likely they will be gone and the DFL elevated before I start on the File Server project
    2. Nearly all machines in the facility have a shortcut on the "All Users" Desktop that points to the existing old File Server.  Editing or replacing that shortcut would be a major pain,...hence why I want to keep the same machine name at least,
    and maybe the same IP if not too much trouble.  This way the existing shortcut would continue to work with the new 2012R2 File Server.  The UNC path represented in that shortcut is also configured into one or more of our major business applications,
    futher emphasizing the need to keep the UNC path the same throughout the process.
    3. The facility runs 24/7/365 but is "light" on weekends.  The political environment is such that there is little to no tolerance for any down time at all.
    4. Would DFS (based from the 2012R2 machine) be a good tool to get where I need to go?
    Thanks for any suggestions.
    Phillip Windell

    Hi Sharon,
    I've done some more reading and have a few new ideas to run past you....
    Yes regular DFS wouldn't help and the Namespace would still be different than how it was with just the old server. However I was thinking DFS Replication could replace the purpose of RoboCopy and it would keep the two locations "in sync" until I was ready
    to flip over to the new server.  DFS Rep can exist independently of a DFS Namespace, so a Namespace is not even needed. It needs a minimum of 2003R2 for the "later & better" DFS Rep but I believe 2003 can do an "in place" upgrade to 2003R2, so I would upgrade
    the old server to 2003R2 first.  As long as the DFS Rep on 2012R2 and 2003R2 will properly interact I think that will work.
    Thanks for the reg info on the Shares.  I'm debating if editing that would reg file would really be much better than manually creating the Shares on the new server while the DFS Replication was doing its job.  I'll probably export that Key as a
    safety move whether I use it or not.
    Once the DFS Rep is fully in sync and the Shares are in place on the new server, I figure I would then:
    1. Remove the DFS Replication Object (optionally remove DFS Services completely)
    2. Rename the old File Server to something else and set it to DHCP
    3. Rename the new File Server to the name I want to use and give it the IP the old server had.
    How does that sound?
    Phillip Windell

  • Migrate Active Directory 2008 to 2012 but need to keep the same ip address and server name

    Hi,
    Current setup is 2 DCs in one site running 2008 R2 AD.
    We are planning to migrate from 2008 R2 to 2012 R2 but need to keep the same ip address and server name. I have came up two plans to do this and hope someone can tell me which one would be the best approach. What is the pros
    and cons in Plan A and B or may be plan C if there is a better one?
    First, I was planning to do plan A but just had a second thought of Plan B.  My concern in Plan A is about changing the server name when the new 2012 R2 already running as DC.  Plan B would be changing all the old server
    name and ip before they become member sever and DC. 
    Any information and suggestion would be very appreciated.
    Plan A
    Run adprep /forestprep on 2008 R2 DC
    Build a new 2012 R2 server and promote it as 3rd DCs in current Domain
    Transfer FSMO from 2008 R2 to 2012 R2
    Run Repadmin /syncall to force replication
    Rename the demoted 2008 R2 DC to something else
    Change the demoted 2008 R2 ip address to something else
    Restart the demoted 2008 R2 server to take effect
    Now, run Netdom computername command to change the new 2012 R2 server name to the old 2008 R2 DC server name
    Change the new 2012 R2 DC's ip to old 2008 R2 DC's ip
    Run ipconfig /flushdns
    Run ipconfig /registerdns
    DCDIAG to see any error
    Plan B
    Build 2 new 2012 R2 standalone servers
    In 2008 R2 ServerA transfer FSMO to 2008 R2 ServerB
    Demote 2008 R2 ServerA to become member server
    Rename 2008 R2 ServerA to something else and change the ip address to something else and shut it down
    Now, rename one of the new 2012 R2 standalone server to the old demoted 2008 R2 ServerA name
    Change the new 2012 R2 standalone server ip to the old demoted 2008 R2 ServerA's ip address
    Add the new 2012 R2 standalone server (now with the old 2008 R2 ServerA name and ip) to become member server
    Run adprep /forestprep on the 2008 R2 ServerB
    Promote the new 2012 R2 (now with the old 2008 R2 ServerA name and ip) as DC
    Transfer 2008 R2 ServerB FSMO to the new 2012 R2 DC (now with the old 2008 R2 ServerA name and ip)
    Demote 2008 R2 ServerB as member server
    Rename 2008 R2 ServerB to something else and change the ip address to something else and shut it down
    Now, rename the 2nd new 2012 R2 standalone server to the old demoted 2008 R2 ServerB name
    Change the new 2012 R2 standalone server ip to the old demoted 2008 R2 SeverB 's ip address
    Add the 2nd new 2012 R2 standalone server to become member server
    Promote it as DC
    Run DCDIAG to check error
    Thanks.

    Hi,
    Renaming a Domain Controller is a risky operation which may lead to issues, therefore, I would suggest you go with the Plan B, rename the server before it becomes DC.
    Here is a blog below which could be helpful to you:
    Remove an Old DC and Introduce a New DC with the Same Name and IP Address
    http://blogs.msmvps.com/acefekay/2010/10/09/remove-an-old-dc-and-introduce-a-new-dc-with-the-same-name-and-ip-address/
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]

Maybe you are looking for

  • Why are results from xmlgen.getxml truncated?

    I have a table with 25 rows in it that displays all contents with a SELECT * statement. However, if I wrap this statement in an xmlgen.getxml the result is truncated. I'm sure this is a novice issue, and this novice would appreciate any insight. Than

  • How do I output a large Ai file as multiple PDFs (via views, pages, whatever)

    I am working in FreeHand 10 and Illustrator CS3 on a large street map. The client wants to do his own edits to the map in Illustrator (version unknown) then output it so he can show a section per page, in an atlas he plans to publish. And maintain th

  • I have an error with the hpe363xa instrument driver. Where do I go from here?

    I have the latest versions of labview, max, gpib, ivi engine,... I downloaded the hpe363xa driver (for Agilent E3633A power supply). MAX configured the gpib ok (can communicate with instrument and gpib tests run ok). When I run the hpe363xa Getting S

  • Updating LR5 Catalog to use different hard drive

    Just bought a new PC. All files (same folder structure) moved from D: to E:. How do I update LR5 catalog to "point" to different hard drive? Thanks for any and all help.

  • Appreance of Document structure

    Hi Gurus, My client is asking to suppress the document structure appearence which is in the DIR screen, where i could suppress Hierrarchy, CAD interface but iam unable to hide Document structure. Kindly get me the solution for this. Regards Kannan