Top sql in java enterprise manager 10G

i,
in the java enterprise manager 9i, I could use 'top sql', 'top sessions' from the java applications.
I recently installed 10G enterprise manager client, and I now miss the top sql and top sessions apps.
I know that they are available in the web interface for enterprise manager 10G, but I can't use the webinterface right now. I would like to use the standalone java enterprise manager. How can I get the top sql in there?
Greetings,
Ivo

anybody?

Similar Messages

  • Cannot send email using PL/SQL through Enterprise Manager 10g

    Hi
    I need to schedule a job that sends email periodically. I am using the scheduler in Oracle Enterprise Manager 10g for this. For sending the email, I am creating a PL/SQL job. The code is as follows:
    PROCEDURE send_test_message
    IS
    mailhost := 'iwblrcormsg001.sci.local';
    sender := '[email protected]';
    recipient := '[email protected]';
    mail_conn utl_smtp.connection;
    BEGIN
    mail_conn := utl_smtp.open_connection(mailhost, 25);
    utl_smtp.helo(mail_conn, mailhost);
    utl_smtp.mail(mail_conn, sender);
    utl_smtp.rcpt(mail_conn, recipient);
    utl_smtp.open_data(mail_conn);
    utl_smtp.write_data(mail_conn, 'This is a test message.' || chr(13));
    utl_smtp.write_data(mail_conn, 'This is line 2.' || chr(13));
    utl_smtp.close_data(mail_conn);
    utl_smtp.quit(mail_conn);
    END;
    I have setup the smtp server and received a test email from the EM notifying me of successful configuration. When the above job is run, the scheduler shows status as successful. If I go to the command step, it displays the following output:
    Output Log
    SQL*Plus: Release 10.1.0.2.0 - Production on Thu Feb 19 19:04:29 2009
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    SQL> SQL> SQL> SQL> Connected.
    SQL> SQL> 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 Disconnected from Personal Oracle Database 10g Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Now, the only issue is that I do not receive any email at the address specified! I would be very grateful if someone could point out the error here.

    I would use APEX4.0 for this.
    Create an interactive report based on your data. Add a chart to that report and use the NOTIFY feature to send you the email.

  • SQL Tuning using Enterprise manager in oracle 10g

    Hi,
    In oracle 10g you have the enterprise manager which can be used to tune sql statements using the SQL Tuning ADvisor and SQL access advisor.
    I believe in oracle 10g the process of SQL Tuning is slightly easier using the Enterprise Manager ...so if some one could explain me that process...
    Again thanking you in advance
    regds
    Manoj Gokhale

    Hi Manoj,
    Didn't you already start two other threads about this same question the SQL forum?
    How do i do the SQL Statement tuning
    Enterprise Manager - sql tuning advisor , Access advisor for SQL Tuning

  • Enterprise Manager 10g Java Console

    Hi ,
    I want to use EM 10g in order to set up the replication environment.
    In the Administration tab of the EM 10g there is a TIP at the bottom of the tab page ....
    TIP Use the Enterprise Manager 10g Java Console to manage Advanced Replication and Workspace.
    Which is the Enterprise Manager 10g Java Console and how can i call it.....??????
    NOTE: The database 10g v.2 is installed in Windows XP os.
    Thanks ,a lot
    Simon

    The EM 10g Java Console can be installed from the Oracle 10g Client CD and it is used the same way the 9i OEM. The difference is that EM 10g Java Console is only used in Stand-alone and does not include connection to a Management Server.
    It has limited functionality. There are a lot of features not available in it and is only available as a backup to some functionalities not yet in Grid Control and DB Control. (e.g, There is no Replication in 10.1 Grid Control, but it is in 10.1 Java Console). It will be phased out in future Releases (no idea which release yet).

  • Where to find Enterprise Manager 10g Java Console software on OTN?

    Hi All, Please let me know where to find Enterprise Manager 10g Java Console software on OTN? Appreciate your help!
    Thanks!

    "The Java Console program is on the Oracle 10G Client software CD. When you are prompted to choose the type of installation, select the Administrator option and the Java Console will be installed with the rest of the software. After the installation is complete, navigate to the Oracle home's bin directory where you installed the Oracle Client and type in:
    oemapp console
    "

  • Enterprise Manager 10g Java Console  for Windows

    Dear all,
    I have download Complete Files of Oracle10.1.0.2 for Microsoft Windows (32-bit). After installation, When I opened Web-based Oracle Enterprise Manager 10g; I see the following tip on the Administration page
    TIP Use the Enterprise Manager 10g Java Console to manage Streams, Advanced Replication, Advanced Queues, XML Database, Spatial and Workspace.
    But I am still looking from where it can be launched. Have any professional experienced the Enterprise Manager 10g Java Console on MS Windows platform?
    Regds,
    Faran

    It is not installed by default, you have to mark its
    checkbox explicitly. In the package selection tree, it is
    under Oracle Client 10.1.0.2.0.
    It's only a Beta! But it's much more stable and a little
    bit faster than 9iR2. They probably didn't check it for
    default installation as it's just a beta.
    There's one another interesting issue with Enterprise
    Managers (Java and web) in 10g: each of them recommends
    you in the welcome page to use the other one. What was
    first, the chicken, or the egg???
    M.

  • Error while creating data source using Oracle Enterprise Manager 10g

    Hi,
    I have deployed my web application developed on OC4J 9.0.4 stand alone (Win2K) to an integrated OC4J version(Solaris) using Oracle Enterprise Manager 10g.
    However, I get an error when I try to create a data source.
    The data source I want to create would have the following parameters (as seen in data-sources.xml on the stand alone version):
         <data-source
              class="com.evermind.sql.DriverManagerDataSource"
              name="TestDS"
              location="jdbc/OracleCoreDS"
              xa-location="jdbc/xa/OracleXADS"
              ejb-location="jdbc/TestDS"
              connection-driver="oracle.jdbc.driver.OracleDriver"
              url="jdbc:oracle:thin:@hostName:1521:test"
              username="user"
              password="password"
              min-connections="5"
              max-connections="20"          
              inactivity-timeout="30"
         />
    When I entered the above data on the Enterprise Manager Data Sources page, I got the following error:
    quote:
    Error saving Data Source Properties. - Entity et="system";ei="0",et="application";ei="48",et="data-sources";ei="167":child:data-sourcechild key:location:jdbc/OracleCoreDS; class:com.evermind.sql.DriverManagerDataSource; already exists in the repository. Resolution: Please check the code base.
    unquote:
    Could somebody tell me what I'm doing wrong ?
    I tried to manually edit the data-sources.xml file but the data source didn't show up on the Enterprise Manager.
    I'm using a new OC4J instance (on the Solaris machine) for my applications. Is the data source error related to this?
    Any help will be greatly appreciated.
    Thanks,
    Shyam

    Thanks for your reply , Steve.
    I noticed that there is a default datasouce on the EM with the following parameters:
    <data-source
              class="com.evermind.sql.DriverManagerDataSource"
              name="OracleDS"
              location="jdbc/OracleCoreDS"
              xa-location="jdbc/xa/OracleXADS"
              ejb-location="jdbc/OracleDS"
              connection-driver="oracle.jdbc.driver.OracleDriver"
              username="scott"
              password="->pwForScott"
              url="jdbc:oracle:thin:@localhost:1521:oracle"
              inactivity-timeout="30"
         />
    The location and xa-location attributes that I use for my "test" data source are the same as the default one. So, could this be the issue?
    What should be the values for location and xa-location attributes from my "test" data source?
    Any help will be greatly appreciated.
    Thanks,
    Shyam

  • Reg:Enterprise Manager 10g

    hi all,
    when i login to Oracle Enterprise Manager 10g. using http://server name:port no/em.
    I got Home, Performance, Administration, Maintenance      these four options.
    In the Administration i am getting tip like this      TIP      Use the Enterprise Manager 10g Java Console to manage Streams, Advanced Replication, Advanced Queues, XML Database, Spatial and Workspace.. I want to do Oracle replication. is there any thing i need to install. where i can fount the setup. Please help.
    Thanks in advs

    Enterprise Manager 10g Java Console can be installed from the Oracle Client CD or Download. It is the (almost) equivalent of the 9i OEM in Stand-alone if you have used it before.

  • Oracle Enterprise Manager 10g Database Control Release 10.2.0.3.0

    Oracle Enterprise Manager 10g Database Control Release 10.2.0.3.0 is one hour behiend on AIX 5.3.
    I have installed the new timezone version 4 already by oracle DST path database is good OEM main page is showing one hour behiend.
    I have done every possible effort last thing may be i have to update java home i have 1.4 IBM java on the server.
    Please help me in this. Thanks.

    See the Metalink Note *Impact Document for Daylight Saving Time Shift for Enterprise Manager Grid Control [ID 417939.1]* Appendix B - FAQ - point 18
    What is the impact of not patching the JDK on the OMS for 10g Grid Control?
    If you do not patch the JDK on the OMS page refreshed times and possibly other times displayed in the console will be incorrect (they will be off by 1 hour) during an affected period.
    Oracle strongly recommends that you do patch the OMS JDK but we are not aware of any data corruption in the repository nor of any impact on critical EM functionalities (such as severities, notifications and jobs) when the JDK is not patched.

  • Enterprise Manager 10g & trigger problem

    Hi.
    Trying to create a trigger using Enterprise manager 10g WEB Console and trigger creating "wizard" without success.
    Example: I've added a simple trigger using SQL+ (this works ockey):
    CREATE OR REPLACE TRIGGER "SRECKO".TESTNA_TRIG BEFORE
    INSERT ON "SRECKO"."TESTNA" REFERENCING OLD AS OLD NEW AS NEW FOR EACH ROW begin
    select testna_seq.nextval into :new.kljuc from dual;
    end;
    If I use Enterprise's Manager feature and I construct this trigger with (General/Event/Advanced) tabs it just doesn't work. I allways get the same SQL Error (missing IN or OUT parameters -> PreparedStatement bug ???).
    Has anybody had any similar experiences ?
    matev¾

    I am having the same problem. Unfortunately, it looks like no one else is or no one else has an answer. I will check back again later. Right now I am going to try and google and answer. Hope someone responds here.

  • How to View Queries run by Users in Enterprise Manager 10g?

    I want to view all the queries as an Administrator, being run by all the Users on Oracle Database, where can I view in Enterprise Manager 10g ?
    In Microsoft Sql Server 2000, there is a utility called "Sql Profiler" which does this purpose, any idea please ?
    Best Regards,
    Luqman

    The "Performance" tab is part of the Tuning Pack, list price USD3000 per CPU or something to that effect. So I use good ole SQLPLUS and this sql(below). This sql includes global views for RAC which can just be changed to v$ for sinlge instance:
    column osuser format a10;
    set linesize 500;
    set pagesize 0;
    select sid, serial#, to_char(logon_time, ' YYYYMMDD, HH24:MI:SS'),
    osuser, sql_text
    from gv$session, gv$sqltext
    where gv$session.sql_address=gv$sqltext.address
    order by sid, piece;

  • Installing the Enterprise Manager 10g (Browser-based) Console

    i've installed the oracle 10g client and am successfully running the OEM 10g java interface. however, when i try to start the web browser-based interface, i get a "page cannot be displayed" error. the URL shown is <the name of the machine: >/em
    Are any special procedures required for installing the Enterprise Manager 10g (Browser-based) Console???

    There seems to be some confusion with what you are installing. Your original question was how do you install the DBConsole for 10g. When you install a 10g database, you get the option of either installing a database console or point to a Grid Control. If you need to reinstall the database console for some reason, you use the emca utility.
    From your last note, it seems u don't have any Oracle database running on ur server...

  • Can not stop cleanly Oracle Enterprise Manager 10g

    Hi,
    i can not stop cleanly the OEM (Oracle 10.2.0.1.0) on my Debian 3.1.
    saturn:~# su - oracle -c "/u01/app/oracle/product/10.2.0/db_1/bin/emctl stop dbconsole"
    TZ set to Europe/Berlin
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.1.0
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    http://saturn:1158/em/console/aboutApplication
    Stopping Oracle Enterprise Manager 10g Database Control ...
    --- Failed to shutdown DBConsole Gracefully ---
    failed.
    When i look into the processlist i see the running agent :-(
    oracle 25434 0.0 0.3 70188 14296 ? S Nov29 0:31 /u01/app/oracle/product/10.2.0/db_1/bin/emagent
    Any ideas to stop the OEM-Agent Console cleanly, without hard kill the process?
    Thanks!
    Blue

    I have read there is a bug in EM-Konsole, i help me with the kill commands:
    killall emagent
    killall perl
    killall java
    Sorry, thats not a fine solution, but it works.
    Blue

  • DST Patch 2007 for Oracle Enterprise Manager 10g

    Hi,
    I went through several metalink documents for DST 2007 patch application on my Oracle Enterprise Manager Server and got confused in lot of articles. It is a stand-alone server
    Can you please help me in formulating a plan?
    I have the following versions installed:
    1) Repository db -Oracle Database 10g Enterprise Edition Release 10.1.0.4.0 - 64bit
    2) Oracle Enterprise Manager 10g Grid Control Release 10.2.0.1.0
    3) OS - AIX 5.3
    Thanks

    I just had a similar problem the other day. My repositoy is on 10.1.0.4, which is behind on released. We are very cautious of upgrade OEM.
    After doing research on OEM DST issue and reviewing our jobs, we found out that OEM was reporting we were on EST instead of EDT. The fix we applied was to download the "tzupdater" from sun.com. Then we ran "tzupdater" on the OMS home directories ($OMS_HOME/jdk/lib/tzupdater -u). This will update your java DST file for OMS.
    Then you should be able to do the OPatch to bring OEM to DST 4.
    Bobby

  • LogMiner Viewer in the Enterprise Manager 10g ??

    Does somebody know if there is LogMiner Viewer in the Enterprise Manager 10g?
    How could I do to work with this tool ?
    Thanks

    There is a 10g style. It comes with the client software. It is very much a stripped down version. I downloaded it and installed it. I could not find Logminer viewer in it. I did find some documentation. Here is what it says.
    Launching LogMiner Viewer
    To launch LogMiner Viewer, take the following steps:
    Invoke LogMiner Viewer: On UNIX platforms, enter:oemapp lmviewer
    The command string is case-sensitive and must be entered with lowercase characters.
    On Windows NT, from the Programs menu,
    choose Oracle_home > Database Administration > LogMiner Viewer.
    After you invoke LogMiner Viewer,the Login dialog box is displayed.
    Select Launch standalone.
    Now, you can connect to a standalone Oracle Enterprise Manager repository.
    If you do not have a standalone repository or if LogMiner Viewer is not aware
    of an existing standalone repository, you cannot save queries.
    When you attempt to expand a database or save a query, LogMiner Viewer displays
    an informational message and leads you through a dialog to connect to or to create
    a repository. See Connecting to or Creating a Standalone Repository for more information.
    Click OK.

Maybe you are looking for