EM Grid Control 10.2.0.2 and Connecting to 11g Database?

I am having a problem trying to the EM 10.2.0.2 connect to an 11.1.0.6 database. I can connect to the database without the EM, but with EM, I get teh following error:
Listener refused the connection with the following error: ORA-12505, TNS:listener does not currently know of SID given in connect descriptor The Connection descriptor used by the client was: (description=(address=(host=JAX0104616-1.FNFIS.COM)(protocol=tcp)(port=1521))(connect_data=(sid=ORCL11G)(server=dedicated)))
I can connect to a 10g database (which holds the EM repository), but not the 11g database. Does anyone have any ideas? Is 11g not supported yet with EM 10g Grid Control?
Thanks,
Mike

11106 is not supported for EM Grid Control 10.2.0.2
Please check the certfication metrix

Similar Messages

  • Oracle Grid control 10.2.0.5 over a cluster repository database

    Dear Guys,
    Can you help me by providing the exact procedure to install Oracle Grid control 10.2.0.5 over a RAC repository database, I checked MOS knowledge base, but i haven't find a suitable one, can anone help me out?
    Thanks
    Raghunath

    http://docs.oracle.com/cd/B16240_01/doc/install.102/e10953/toc.htm
    For RAC => Prerequisites for Installing Enterprise Manager Grid Control on Oracle RAC

  • ALV Grid Control -  Modifiy data in total and subtotal lines

    Hello all,
    I´am creating a report using ALV Grid Control. This report calculates (using delivered and returned materials) for each vendor/material-combination the return quote.
    Using the totals and subtotals function for different characteristics I want to calculate the return quote for the selected characteristic. Example:
    Material delivered returned quote
    ..4711 . . . 500 . . . 5 . . . . 1 (=returned*100/delivered)
    ..4711 . . . 400 . . . 10 . . . . 2,5
    . SUM . . . 900 . . . 15 . . . . 3,5 <-- 3,5 is the sum but I want display the calculated value 1,667
    Is there a possibility to modify data in the total and subtotal lines.
    Thank you for your answer
    Best regards
    Thomas

    you said instead of 3.5 you want to show 1,667 ..
    how is it possible...
    3,5 become 1,667
    i thought you are doing any conversions...
    vijay

  • Enterprise Manger Grid Control 10.1.0.4 and OAS 10.1.2 Interconnect/Adapter

    Hi,
    Can some one tell me whether Enterprise Manger Grid Control 10.1.0.4 can monitor Oracle Application Server 10.1.2 Interconnect and Adapter (Interconnect Repository and DB/FTP adapter)
    Cheers
    Harsha

    You can view the documentation to see if it helps
    http://www.oracle.com/pls/db102/portal.portal_db?selected=3

  • Grid Control 10.2.0.5 patchset fails for 11g repository database

    Installing GridControl 10.2.0.5 on Windows 2003 Server SP2. Initial install successful of 10.2.0.2 using existing database 11.1.0.7. The database was created new to use for GC. Patchset no problems until Configuration Assitant step "Repository Upgrade" failed with errors:
    rem Copyright (c) 1999, 2009, Oracle. All rights reserved.
    oracle.sysman.emcp.oms.RepositoryPatchUpgrade -verbose
    oracle.sysman.emcp.oms.OmsPatchUpgrade -configureOms
    oracle.sysman.emcp.aggregates.ConfigPlugIn
    oracle.sysman.emcp.oms.StartOMS -configureOms
    oracle.sysman.emcp.oms.EMCLISetup
    oracle.sysman.ccr.configCCR.ConfigCCRPlugIn
    oracle.sysman.ccr.configCCR.ConfigRepeaterPlugIn
    Tried to find cause of errors and cannot seem to understand why this step failed.
    Considering uninstalling GC and Oracle 11g and reinstalling GC with "new database" option.
    Anyone successful at installing GC 10.2.0.5 with an 11g database?
    Thank you,
    Curt Swartzlander
    DBA

    10.2.0.5 Database is in extended support. Make sure to purchase the licensing.
    You need to download the software by logging an SR with Oracle support to get delivered as DVD or through e-delivery.
    But I would suggest you to upgrade to 11.2.0.3.
    Upgrading 10g Grid Control repository database is doing a normal database upgrade.
    References:
    http://docs.oracle.com/cd/B19306_01/server.102/b14238/toc.htm
    How to upgrade a 10.1.0.X or 10.2.0.X Repository Database for Grid Control 10.2.0.4/5 to a Version 11.1.0.X Database (Doc ID 399520.1)
    HTH
    Mani

  • Invalid Username and Password in 11G database

    Hi,
    I am facing the issue with 11g database.
    Database version 11.1.0.6 , 11.1.0.7.
    I was able to login to the user yseterday, but i am not able to login today, i need to reset the password again and again.
    I have created the Oracle user as externally it has DBA Privilege, i was able to login yesterday but not today.
    I am able to login to sysdba.
    Please help how to resolve the issue.
    Regards
    Pramodh

    Hi again,
    Did I understand correctly the following :
    1) The database you are trying to access is in fact a clone of the production database and it is in the clone database that you get the error ?
    Yes facing the error in clone database only.
    2) When you said the user/password worked fine the previous day I assume you mean it worked fine on the source database , not on the clone database ?
    It was the clone only (Not the production)
    3) So, in fact you have never been able to access the clone database with this userid ?
    The user id were able to login yesterday and not today(This the cloned one)
    4) I also assume that the original user still works fine when accessing the source database ?
    Yes
    If I have understood correctly all these things then I think we need to understand the cloning process. How exactly do you clone the database ?
    1. Taken the control file trace and shutdown the source db.
    2. Copied the cold backup from target to source destination.
    3. moved the controlfile to other location (in source).
    4. started with
    startup nomount (source)
    i have run the script that was taken trace( I have done crosschecking of all datafiles with production for your information)
    create controlfile set database <name> resetlogs noarchivelog
    controlfile got created
    alter database open resetlogs.
    thats it.
    Regards
    Pramodh

  • Using jdk1.3.1 and connecting to oracle database

    The following is my program of servlet connecting to database and viewing the data from table,
    I am getting an error of SQLException caught which i wrote in my second catch block.I didn't understand what to do.Is that i have to download jdbc seperately with jdk1.3.1 or it is there in the kit.Please give me reply.I also created my dsn ,i have my odbc loaded in my pc.
    Thanks
    import java.io.*;
    import java.sql.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class EmpServlet extends HttpServlet
    public void init(ServletConfig sc) throws ServletException
         super.init(sc);
    public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException,
    IOException
         Connection con=null;
         Statement st=null;
         ResultSet rs=null;
    res.setContentType("text/html");
    PrintWriter out=res.getWriter();
    try
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    con=DriverManager.getConnection("jdbc:odbc:plk","scott","tiger");
    st=con.createStatement();
    rs=st.executeQuery("select uname,upwd from userinfo");
    out.println("<html><title>empservlet</title>");
    out.println("<body>");
    out.println("<ul>");
    while(rs.next())
    out.println("<Li>" rs.getString("uname") " " + rs.getString("upwd"));
    out.println("</ul>");
    out.println("</body></html>");
    catch(ClassNotFoundException e)
              out.println("could not load database driver");
    catch(SQLException se)
              out.println("sql exception caught");
    finally
         con.close();
    }

    Instead of using the odbc driver to connect to the Oracle server, why don't you use the JDBC driver from Oracle?
    By using the ODBC driver, you need to configure two things in addition to your Java program - ODBC setup (to setup the DSN) and also the SQLnet (to connect to the oracle server).
    However, with the Oracle JDBC thin client, you just have to configure in your java program.
    I hope this helps.

  • Grid Control and Ora-12557 error

    Hello, I'm trying to install the Oracle DataGuard in my work. I have two server with these features:
    2 Processors Intel Xeon 2.8 GHz
    4 GB Ram
    6 SATA hdd 250GB (Raid 5)
    for each server. Actually, only one server have the database production, and the another server I have for testing purpose. I must be have a high availability system. I want to build an Oracle RAC system, but I think that I need an external storage (something like SAN, or fibre channel or iSCSI). Well, I assumed that I don't create a Oracle RAC because I do not have the hardware requirements. Then, I thougth use Oracle DataGuard. For that, I have one server in one building and another server in another building like a standby database. If a server fail, then I use the another.
    I decided to create Oracle DataGuard configuration. I installed windows 2003 server standard edition in my server for test purpose, and then I installed the Oracle Database 10 g with my database. After I installed the Oracle Grid Control with a new database for repository. Well, when the installation of Oracle Grid Control was completed, I didn´t connect to my database because sqlplus show me an error (Ora-12557). Before I install the Oracle Grid Control I can connect perfectly with my database, but after that I can not connect any time.
    Anyone can help me, please????

    After formatting (clean server)
    1. Install grid control Repository and Management Server
    2. Patch it to the latest version (10.2.0.3)
    3. Install agent on your other server ,see that you should be able to communicate, check for propert username/password settings.
    4. Install your first database , lets say you install it on the same machine with grid
    Check for ports/etc and see its in a working order
    5. From Grid control ,create your standby on another machine , grid required no interfearance from user once some pre-requisits (you should be able to ping/ftp) on the host.
    there are number of possibilites for meeting your requirements, keep refering installation guide where possible.

  • Create user in OEM Grid Control

    Hi,
    I have a oem GRID control database, i have actually 3 users sys, sysman and system.
    I connect to the grid control with th sysman user and i administered the database with this user.
    I want to create a new user 'CONSULT' for a developper , the new user 'CONSULT' has just the privilege to connect only to one machine , someone know HOW TO CREATE THE USER ?
    Thanks for your help .

    As sysman, Go to Setup/Administrators, and create a new administrator.

  • Grid Control : Change Management Across Non-Prod and Prod

    All,
    I had some questions with regards to Grid Control Implementation Architechture on Prod and Non-Prod Env's
    The best practice is to configure a production Grid Control (GC) environment to monitor only production targets. This prevents nonproduction targets from adversely impacting a production environment.Another issue could be the compliance policy where in the production systems are to be isolated from Non-Production Environments.
    If this is the case then we have to have 2 GC environments , 1 for Prod and 1 for Non-Prod. In such a scenario how well can we do change management (Version control ) across the Non-Prod and Prod Environments ?
    To be more specific
    How is version control managed for Oracle builds if we have separate GC for Prod and Non-PROD? (Change Management pack / Configuration Management Packs are there but what is the real depth of these? )
    Change management for the Oracle Environments from DEV -> Test -> Pre-Production-> Production? We aim to have consist build across the environments can we achieve this if the GC is managed by Different OMS/OMR and if we have 2 separate environments how do we sync the GC environments managing PROD/NON-PROD after a change?

    This is feature is not there in 10.2
    This situation can be avoid by chagning the 9i port to 1522
    or install the GC on diffrent box

  • Grid control and em console !!

    We have been using em console for a long time. It is very usefull for us. But we want to go one step further. What is the difference between these two? What will we gain if we use Grid control instead of em console?
    Thank you very much for the replies.
    Regards.

    I assume you are refering to EM Database Control.
    EM Database Control is focussed on management of one single Database.
    OEM GRID Control, allows you to monitor and manage a complete data center. Meaning all Hosts (servers), Databases, Application Servers, Applications, Network components, Storage components etc. etc.
    By using Management Packs you will have an enormous amount of features to do things like:
    Configuration Management
    Performance Tuning
    Diagnostics
    Service Level Management
    Provisioning and Automated Patching
    Application Testing
    etc.etc.
    CHeckout the documentation and data sheets on OTN for more info.
    If you have any questions please ask.
    Regards
    Rob
    For more info on OEM GC, you might want to check my blog http://oemgc.wordpress.com

  • Grid Control and CEP

    Hi,
    We are building for one of our clients a solution that is comprized from several products. One of them is CEP. For all theother products we can use Grid Control to "watch" the status and "health" of the products but we could not find any reference to CEP.
    We know that we can get the statistics on the EPNs using Visualizer or JMX but we prefer to have it all in one place. Is it possible to use Grid Control?
    Is there any information regarding Grid Control and CEP?
    Thanks,
    Shimon

    Hello,
    There is currently no support for CEP in Grid Control.
    andy

  • When to install Grid Control and when to just use 10g built in?

    1. is Grid Control really the only way to Enterprise Manage multiple databases? (if not, how do i switch from different databases on the 10g built in EM)
    2. I only have about 10 databases, is Grid Control overboard?
    3. Is it a bad or good idea to install GC on the 10g server?
    thanks,

    Hi.
    As far as I know, the dbconsole installed with the Oracle database applies for only one database on one server. The information accessed by the dbconsole relies within the sysman schema inside the actual database. For a database environment with 10 databases, it is possible to install grid control and manage all these databases despite version and OS. And I think that grid is a good solution to such an environment.
    The grid installation itself is a application server installation, and I suggest if possible that you separate the rdbms server and the server that contains the grid control.
    The repository database the grid control uses can either be installed in the 10g environment or in the grid control environment (server). You can place the repository in a new database in a separate ORACLE_HOME from the actual grid control application server.
    Good luck.
    rgds
    Kjell Ove

  • Grid Control Scripts and SNMP Traps

    Hi guys,
    Does anyone knows here where i could find some good Grid Control Scripts for monitoring purposes?
    Thanks!

    The database monitoring is done by GC (thats a reason why GC is used) and you can create a SMS if something is wrong with the DB.
    If you create backups using RMAN a lot of backup info can be found in the repository. So you can create a User Defined Metric checking for instance if the last backup date is before sysdate -1. If yes you will see a warning/alert.
    Eric

  • Grid Control performance tab not available when on the target home of ASM

    I noticed recently that the "Performance" tab/link is not available when you are using 10g Grid Control and you are on the home page of an ASM instance. Can this be explained?

    Hi MarGur
    I try to help you. The OEM Grid Control in some times not discover the Oracle 9i databases and you must to add manually.
    First, check in your target machine that the user owner of agent software have rights of read and write in the ORACLE_HOME directories of Oracle 9i databases.
    Go to Grid Control Console
    Select Targets ---> Databases
    Press Add --> Select the host ebisdb2.oneshield.com and press continue
    The automatic discover process begin. When finished is very normal that nor discover the Oracle 9i databases. You press the Add manually button
    in the page that appear you must entry all the configuration information of database:
    ORACLE_HOME directory
    DBSNMP USER
    DBSNMP PASSWORD
    HOSTNAME
    PORT
    SID
    Check that the dbsnmp user in your database is unlock and press the TEST button to verify the connection work fine.
    After this many windows appear of configuration process, and you will put the sys password and host credentials.
    If you have problems, tell me
    Regards

Maybe you are looking for