Need to monitor 9i and 10g databases in OEM

Need inputs as how to go about?
I dont find OEM in the Oracle installation.

To mointor 9i and 10g database you have to install 10g GC and agents on every host machine. For more information kindly check below links.
http://download-east.oracle.com/docs/cd/B16240_01/doc/em.102/b40002/toc.htm
http://download-east.oracle.com/docs/html/B12013_03/toc.htm

Similar Messages

  • Making a procedure to work against 8i, 9i and 10g databases

    Hello all,
    I made a procedure that gathers info from user. At some point I execute this part of code:
    CURSOR tabPrivs IS
    SELECT owner, table_name, privilege, grantable, hierarchy
    FROM dba_tab_privs
    WHERE grantee = uName;
    At first my procedure was only for 9i and 10g databases. I tried it once on 8i and get the logical error that the hierarchy column doesn't exist in the table dba_tab_privs.
    I want my procedure to work against all versions of databases so I tried to do an additional select if the database version was upper than 8, but it seems that it won't compute, as if before executing my procedure, the engine look to all the select I am trying to do and check if they are correct.
    I want to know if there's a work-around because I want to provide the most generic procedure possible.
    Thank you,

    You need to declare your cursor according to your DB version. Something like this might keep you going:
    DECLARE
       VERSION         VARCHAR2 (30);
       COMPATIBILITY   VARCHAR2 (30);
       uname           VARCHAR2 (30);
       TYPE cur IS REF CURSOR;
       p_sys           cur;
    BEGIN
       DBMS_UTILITY.db_version (VERSION, COMPATIBILITY);
       IF VERSION LIKE '10%' OR VERSION LIKE '9%'
       THEN
          OPEN p_sys FOR 'SELECT owner, table_name, PRIVILEGE, grantable, HIERARCHY
               FROM dba_tab_privs
              WHERE grantee = :uname' USING uname;
       ELSIF VERSION LIKE '8%'
       THEN
          OPEN p_sys FOR 'SELECT owner, table_name, PRIVILEGE, grantable
               FROM dba_tab_privs
              WHERE grantee = :uname' USING uname;
       END IF;
       do_your_fetch_and_work_here;
       CLOSE p_sys;
    END;

  • Can we locate oracle 9i and 10g databases in same PC

    hi all
    wish U happy new year...
    I have installed oracle 9i and 10g database ..but 10g database is not working it says TNS protocol adapter error or invalied username password...I stpeed the 9i services and listner in the 9i home...but 10g database is not working.9i and 10g databases are in two different partitions....
    I want to know is it possible to running 9i and 190g database in same PC...if it's possible pls can you give me a solution for my problem
    regards
    Buddhike

    when I was trying to up the database it is looking for another listener
    and massage coming listener is not running...Not clear. The database does not look for a listener, maybe you got that error when trying to connect ?
    Do you have a listener 10g service ? Did you start it ? If not, please try the following :
    C:\> set ORACLE_HOME=<Your 10g Home>
    C:\> set PATH=%ORACLE_HOME%\bin;%PATH%
    C:\> lsnrctl start
    wait up to a minute, then execute
    C:\> lsnrctl status
    and post the result.

  • Replicating data between oracle9i(source) and 10g database

    sucessfully replicated data between source and target in 10g
    Now I have to replicate the data between oracle9i(source) and 10g database(Target) please help me to solve this issue

    sucessfully replicated data between source and target in 10g What sort of Replication you talking about ? Is it Object level , Schema level or DB Level ?
    Now I have to replicate the data between oracle9i(source) and 10g database (Target) please help me to solve this issue
    http://www.freelists.org/archives/oracle-l/08-2005/msg01260.html
    Hare Krishna
    Alok

  • Replicating data between oracle9i(source) and 10g database(Target)

    sucessfully replicated data between source and target in 10g
    Now I have to replicate the data between oracle9i(source) and 10g database(Target)
    please help me to solve this issue

    sucessfully replicated data between source and target in 10g What sort of Replication you talking about ? Is it Object level , Schema level or DB Level ?
    Now I have to replicate the data between oracle9i(source) and 10g database (Target) please help me to solve this issue
    http://www.freelists.org/archives/oracle-l/08-2005/msg01260.html
    Hare Krishna
    Alok

  • Question on this combination -- Reports 6i, 9i AS and 10g Database

    Hi all,
    Currently we have an environment where we have application developed in Reports 6i, deployed on 9i AS and run against 9i database. We are supporting both web-based and client-server reports with this configuration.
    Now I would like to know if we migrate to 10g database, (still being on 9iAS and Reports 6i while applying relevant patches) can we still be able to support client-server reports ?
    My understanding so far is that unless we use Reports 9i or 10g for our development we are good for client-server reports.
    Please throw me some light if I'm wrong?
    Thanks,
    ML

    If you need client/server you cannot go further than 6i. With the latest Developer 6i patch this is certified for a 10g database, with some character set restrictions. See:
    connecting form 6i  to oracle database 10G express edition

  • Does 10gAS and 10g database comes together?

    We are planning to upgrade our database to 10g and application server to 10gAS. So will to know whether 10g database and 10gAS Application server comes along in the same box or do we need to be buy it seperately?

    It comes with 10.1.0.5 (10gR1) database, which you are only allowed to use for infrastructure usage. As soon as you put your own data in it, you will need a separate license.
    So buying and installing/'coming with it' are totally different things.

  • BIBeans Tutorial and 10g Database

    Is BIBeans 9.0.4 compatible with 10g Database ? Has anyone successfully completed BIBeans tutorial(9.0.4) with 10g database ?
    thanks
    shankar

    The current production release of BI Beans is not compatible with 10g database. There will be a database patch out soon that will resolve this problem. Currently only 9i (9.2.0.4.l and 9.2.0.5) is supported
    Business Intelligence Beans Product Management Team
    Oracle Corporation

  • Can I monitor an 8i Standby Database with OEM 10gR3?

    I have added the target for an 8i instance and its physical standby. The primary looks fine but the standby shows down and reports the following message:
    ORA-01033: ORACLE initialization or shutdown in progress
    I also notice that OEM doesn't display the type as "Database Instance:
    Primary or Physical Standby" like the 9i and 10g ones we have. I have searched this forum, Metalink and the Doc library for the answer with no luck. Do you know if this is a support configuration and if so what I need to do to get it working?
    Thanks.

    Think grid supports 8.1.7.4 and above, check metalink for exact support details.
    Have you configed the agent properly? For standby databases you need to set up the connect with sys as sysdba rather than dbsnmp.
    Go to setup ---> agents
    Click on the relevant agent
    Select the standby database and click on configure
    Edit the connection type to sysdba FIRST
    then you can change the user to sys
    Good luck

  • Monitoring the Hyperion Essbase Database through OEM.

    Hi DBAs,
    I have setup the Hyperion Planning application (on windows 2003 server 64bit) with Essbase DB and Oracle (10.2.0.3) RDBMS (on Linux 5.3 64bit). I want to monitor the Planning Applicatoin and Essbase DB through OEM Grid Control. I have already installed the agent on Windows and Linux Server. Only able to monitor the Oracle RDBMS.
    Can someone guide me how I can monitor the Essbase DB? Also how can I setup the Hyperion Planning Application with OEM ?
    Thanks
    -Samar-

    See the below link
    http://www.oracle.com/technology/products/bi/epm/pdf/sys9_oem_integration.pdf
    It may help,
    Regards,
    http://www.oracleracexpert.com
    Click here to [Send EMAIL using UTL_MAIL in Oracle 10g |http://www.oracleracexpert.com/2009/11/send-email-using-utlmail-in-oracle-10g.html]
    Click here for [Backup and Restore SPFILE and PFILE|http://www.oracleracexpert.com/2009/11/oracle-spfile-and-pfile.html]

  • Need 3 monitor support and currently have ATI  X1900XT

    I have a single x1900xt and now have 3 monitors I need to power. Is it possible to combine NVIDIA cards and ATI or do I need to purchase another x1900xt? It is important that this setup work both in windows XP as well as OSX. I am planning on connecting a 30" and 2 20" monitors. Anyone have a similar configuration yet or can make any recommendations on a proper setup?
    Mac Pro dual 2.66GHz 2GB RAM   Mac OS X (10.4.7)  

    For the benfit of others, my (AKA Neurorad) original posts from Macrumors:
    I have two Apple XT1900 upgrade kits. Installing the second card can be hazardous - it is a tight fit for slot 3. Removing the adjacent SATA drives will help. The release tabs on the slot sockets can be easily broken off if you do not have good access - I have proven that.
    1. Yes, you can install two ATI cards, one in the 16 lane slot 1 position, and the other in either slot 2 or 3. It will not fit in slot 4. Slot 2 shares bandwith with slot 1 and can give you up to 8 lanes each. Slot 3 can give your 4 lanes at most for a card, but leaves slot 1 at 16 - probably the best if a secondary monitor is used on the slot 3 card. BUT - only the Mac OS works properly. Windows XP Pro get confused and the device manager has several additional unusable system components, including the 16 lane PCI express slot. Bootcamp 1.1.1 does not correct this. In Windows, you cannot properly activate a monitor on the second card or properly adjust to monitor attached to the slot 1 card. Not very useful. The grossly reduced bandwith of the second card in Mac OS X and the conflicts in Windows makes this useless for anyone who wants to boot into Windows.
    More info: http://developer.apple.com/documenta...mentation.html
    There is an application that helps manage the card settings called "Expansion Slot Utility" that appears after you add a card. It is in the /System/Library/CoreSerivces folder.
    2. You CAN run the ATI X19000XT in slot 1 and put a Nvidia 7300 in slot 4. Again, Mac OS X handles this without a problem, but - surprise - Windows chokes and cannot use both at the same time.
    Next, an RMA for the second card. Any suggestions from anyone??
    Windows does boot with either Two ATI or an ATI and Nvidia card. WIth two ATI cards, only one the slot 1 card is active (tested with only one monitor hooked to each). The resolution is too low and cannot be properly set. With an ATI and Nvidia card, I was able to boot into the ATI card on one monitor, again only is low resolutions. I reinstalled the Nvidia drivefr then windows would boot only to the Nvidia card,a lthough at decreased resolution . I did not try the Nvidia card in slots 2 or 3.
    I gave up with the second card (either Nvidia or ATI) after no luck in Windows via Bootcamp. I am hope to try again. The presence of the second ATI card in slot 3 messed up Windows Device Manager. Besides the usual PCI slots being flagged before I added anything, the additional ATI card caused the slot 1 driver to report a problem under Device Manager. Even if it worked, running the card in at best a 4 lane slot seems counterproductive (the only way to preserve the full 16 lanes in Slot 1 is to put the additioanl card in slot 3. The ATI card will not fit in slot four (8 lanes) although the Nvidia 7300 can fit in slot 4.

  • JDBC 1.0 and 10g Database

    Hi,
    we have an application which needs to use JDBC 1.0 drivers for some reason.
    This works with 8i and 9i (with the regarding drivers).
    Now I recognized, that for 10g there are only drivers for JDK > 1.2 available.
    Does this mean, that I can't access 10g with any JDBC 1.0 driver?
    If its possible, which one should we take?
    bye
    Thomas

    I checked, I'am sure of the problem:
    package test;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    import java.sql.Statement;
    public class Test {
         public static void main(String[] args) {
              try {
                   String className = "oracle.jdbc.driver.OracleDriver";
                   Class driverObject = Class.forName(className);
                   Connection con = DriverManager.getConnection("jdbc:oracle:thin:@<server>[:<1521>]:<database_name>", "user", "password");
                   Statement stmt = con.createStatement();
                   ResultSet rs = stmt.executeQuery(
                      "SELECT nummsg  FROM CWD01 where nummsg = '00000001' or nummsg = 'AAAA0001' order by nummsg");
                   while (rs.next()) {
                        String x = rs.getString("nummsg");
                        System.out.println("nummsg " + x);
              } catch (Exception e) {
                   System.out.println("Failed: Driver Error: " + e.getMessage());
    }The table CWD01 defines the column NUMMSG as VARCHAR2(8).
    The output gives:
    nummsg AAAA0001
    nummsg 00000001

  • Compatability between Forms 6(Forms 6i also) and Oracle Database 10g

    Hai All,
    I want to know Any Compatible issue between ORACLE FORMS 6 (ORACLE FORMS 6i also ) and Oracle Database 10g .
    Any special patches, parameters needed?
    Any white paper describing this document.
    Please help?
    shiju

    Forms 6i Patches pre 16 and 10g databases - many problems
    Forms 6i Patch 17 - 10g DB Rel.1 - certified
    Forms 6i Patch 18 - 10g DB Rel.2 - certified only for E-Business-Suite-user

  • Accessing and Managing RAC 10g database with 9i OEM

    can i Access and Manage RAC 10g database with 9i OEM? If yes How?

    9i EM can 'see' a 10g database and perform some basic functions (rsp. all what is known to 9i). But it cannot manage any 10g functionality , because it doesn't know it. So such a constellation doesn't make really sense. On the other hand 10g EM can manage 8i,9i and 10g databases.
    Werner

  • Upgrade Oracle 10g database 10.2.0.1 to 10.2.0.2

    I have downloaded the trial version of 10g application server and 10g oracle database from Oracle site. But when I tried installed the 10g application server which needs to connect to the 10g database, I got the following error.
    Database version should be 9.2.0.7 or higher in the oracle9i database release 2 series, 10.1.0.5 or higher in the oracle database 10g release 1 series, oracle database XE (10.2.0.1), 10.2.0.2 or higher in the oracle database 10g release 2 series.
    How do I upgrade to 10.2.0.2 from 10.2.0.1?
    Thanks.

    Download patch set from metalink and extract patch into some directory.
    Then from that directory run "Opatch install". ( You need to shutdown all database and other service while upgrading code tree)
    Cheer,
    Virag Sharma
    http://virag.sharma.googlepages.com/
    http://viragsharma.blogspot.com/

Maybe you are looking for

  • Print quality terrible, may not be the printer - how can I fix it?

    I've been cleaning and replacing cartridges in my printer lots but no improvement of print quality, in fact a deteriation so that now only magenta and a tiny bit of black print. I just used someone else's printer and same problem (different colour er

  • The Quicktime 10.1 viewer adds black borders

    Since updating to Lion, the Quicktime viewer adds borders to my pre-existing videos. No matter how I re-size the window the borders remain on the sides of my portrait aspect ratio videos.  They played just fine (borderless) before upgrading, now the

  • Why are some files missing from import screen?

    I'm trying to import some files into LR, but the import screen isn't showing all of the files that are in the folder I've selected. I've notice this only when there are multiple files with the same base filename.  For example, when the folder contain

  • How do I turn off launching CaptureOnTouch when placing an ID card in the ImageFormula P-215 scanner

    My company currently uses the P-215 to scan documents and ID cards into our application using a TWAIN scanning interface. Some of our customers also use the CaptureOnTouch software for other purposes.  The issue is that every time a user loads an ID

  • CS5 Mouse scroll up jumps full page

    I need some help. Just starting to use Flash but I've got this one issue that is just ruining everything for me. When drawing on the stage, any upward movement of my scroll wheel scrolls the screen by at least half a screen width, if not more. Scroll