Building reports around grid control database.

As a part of Grid control support activity many times we need spend hours to verify if all the targets have been assigned rules and thresholds so that they can generate alerts well before the trouble occurs.
So i was wondering is there any way by which which can write some script that will scan all the targets and find out which are not assigned to rules.
I am not sure if i can access these information from grid control database.
Can somebody help me in this ? is there any way to find out which rules have been assigned to which target or what is the threshold assigned to a particular targets by writing sql query / using oracle packages ?
Appreciate help in this regard.

Here is some sql I use for this purpose..
(I comment out pieces and such to tweak what I am reporting against)
Run this as sysman in your repository db.
select
target_type,
target_name,
metric_column Metric,
metric_name || ' ' || key_value Name,
decode(warning_threshold,' ',null, decode(warning_operator,'Equal To','=','Not Equal','!=','Greater Than','>','Less Than','<',warning_operator) || ' ' || warning_threshold) Warning,
decode(critical_threshold,' ', null, decode(critical_operator,'Equal To','Not Equal','!=','=','Greater Than','>','Less Than','<',critical_operator) || ' ' || critical_threshold) Critical
from mgmt$metric_collection m
--where target_type = 'oracle_emd'
--and  metric_column = 'HostInfovszGrowth'
--and warning_threshold != '20'
--where target_type = 'host'
where-- metric_column like 'tnsPing'
-- (warning_threshold != '80' and critical_threshold != '95')
--and
target_type = 'oracle_database'
--and target_type = 'host'
--and
--target_type  = 'oracle_listener'
--target_type = 'oracle_emd'
--and metric_column like 'generic%'
--and warning_threshold like '%ORA%'
and target_name like 'QL%'
and metric_column = 'pctUsed'
order by 1,3,2

Similar Messages

  • Report from Grid Control:Monthly Growth of each database in Single Report

    Hi,I want to make the report from Grid Control for Monthly Growth of each Database for Capacity planning
    I can See under Report->Storage->Oracle Database Tablespace Monthly Space Usage
    But this is only for once database and I want to include all the database in single report that too with limited INfo
    Want the format something like..just wanted to make you guys
    Database     Actual Size on 1st     Actual Size on 30th     INcrease in Size
    1.
    2.
    Something close to above format will do...
    Thanx
    Gagan

    Hi Thanx for the reply
    But Which Tablespace Metric You are talking about?I can See 5-6 Tablespace Metric and infact I dont want the data at the tablespace level and I want the total size of the database and growth in last month as shown in ' Oracle Database Tablespace Monthly Space Usage '.
    But Thanx again for the reply
    Regards
    Gagan

  • Report from Grid Control:Monthly Growth of Each Database on Single Report

    Hi,I want to make the report from Grid Control for Monthly Growth of each Database for Capacity planning
    I can See under Report->Storage->Oracle Database Tablespace Monthly Space Usage
    But this is only for once database and I want to include all the database in single report that too with limited INfo
    Want the format something like..just wanted to make you guys
    Database     Actual Size on 1st     Actual Size on 30th     INcrease in Size
    1.
    2.
    Something close to above format will do...
    Thanx
    Gagan

    Hi Thanx for the reply
    But Which Tablespace Metric You are talking about?I can See 5-6 Tablespace Metric and infact I dont want the data at the tablespace level and I want the total size of the database and growth in last month as shown in ' Oracle Database Tablespace Monthly Space Usage '.
    But Thanx again for the reply
    Regards
    Gagan

  • Performance reports using Grid Control

    Hello!
    Can we create and schedule database performance reports using oracle 10g grid control?
    Thanks.

    Hi
    Yeah its possible to generate the performance reports using Grid Control.
    Ex:
    Oracle Enterprise Manager GRID Server contains built in reports to support Database Administrators to generate sightly reports.
    First Thing is to click to "Reports" tab on the top, right hand side of the GRID Management Console (figure_grid_management_console). This page is where all the predefined and custom reports can be find. Now click on the "Create" Button on top of the page to create a new custom report. "Create Report Definition" page comes to the screen. There are four tabs for the definition of the report.

  • Creation of reports from Grid control 12c

    Hi All,
    I wish to create some reports from Grid Control and push to mail especially looking for Daily Health Check report like Tablespace,Locks,Alertlog file errors,File systems,Archivelog files sync information in to one report.
    Thanks in advance.

    The native reporting application i.e. Information Publisher does not support such a feature, but in you are using BI Publisher integrated with EM, then BIP allows you to control when to email reports. for example, on completion, on failure, etc ..

  • Grid control database

    Oracle 11g Grid, can Grid Control database be set up on the same server as the databases it monitors? Or it has to be the different server for the easy maintenance purpose. Please advise.
    Thanks
    S.

    ski123 wrote:
    Oracle 11g Grid, can Grid Control database be set up on the same server as the databases it monitors? Or it has to be the different server for the easy maintenance purpose. Please advise.
    Thanks
    S.Enterprise Manager Grid Control is different than Enterprise Manager "Database" Control. Grid Control is for managing all data center not just one database. It has a repository database and an application server (weblogic), so it's installed to a separate server.
    Regards
    Gokhan

  • Statistics report from Grid Control

    Hi All,
    How to generate a report from Oracle 10.2.0.5 Grid Control with the details about when the statistics were last collected in all the databases. A mail with these details from all the databases should be sent from Grid Control.
    Why is this script not working?
    SELECT ui.index_name, ui.last_analyzed, ui.table_name
    FROM user_indexes ui
    INNER JOIN user_tables ut ON ut.table_name = ui.table_name
    WHERE ut.temporary = 'N'
    Please help.
    Thanks,
    Dan

    906051 wrote:
    Hi All,
    How to generate a report from Oracle 10.2.0.5 Grid Control with the details about when the statistics were last collected in all the databases. A mail with these details from all the databases should be sent from Grid Control.
    Why is this script not working?
    SELECT ui.index_name, ui.last_analyzed, ui.table_name
    FROM user_indexes ui
    INNER JOIN user_tables ut ON ut.table_name = ui.table_name
    WHERE ut.temporary = 'N'
    Please help.
    Thanks,
    Danwhat does "not work" mean?
      1  SELECT ui.index_name, ui.last_analyzed, ui.table_name
      2  FROM user_indexes ui
      3  INNER JOIN user_tables ut ON ut.table_name = ui.table_name
      4* WHERE ut.temporary = 'N'
    21:24:48 SQL> /
    INDEX_NAME                 LAST_ANALYZED        TABLE_NAME
    TEST_DEPARTMENT_PK            2011-06-23 18:23:46 TEST_DEPARTMENT
    SYS_IL0000420684C00001$$                  TEST
    SYS_C0046851                 2011-09-15 22:00:45 TB_DELETE
    SYS_C0046852                 2011-09-15 22:00:46 TB_CHILD
    XPKTAB2                  2011-08-26 22:00:31 TAB2
    XPKTAB1                  2011-08-26 22:00:31 TAB1
    SYS_C0031937                 2011-06-23 18:23:45 SURVEYS
    SYS_C0031903                 2011-06-23 18:23:44 SUPPLIERS
    SYS_C0045632                 2011-07-26 22:00:29 SHELTER
    SYS_C0031943                 2011-06-23 18:23:44 SCHEDULE
    ROOM_CON                 2011-06-23 18:23:43 ROOM
    INDEX_NAME                 LAST_ANALYZED        TABLE_NAME
    SYS_C0031904                 2011-06-23 18:23:43 RATING
    SYS_C0031922                 2011-06-23 18:23:43 PROGRAM
    PK_PRID                  2011-06-23 18:23:42 PRODUCTS
    SYS_C0048548                 2011-12-15 22:00:29 PATIENT
    SYS_C0031907                 2011-06-23 18:23:42 PACKAGE
    SYS_C0048255                 2011-12-04 15:05:04 P
    SYS_IL0000284470C00003$$                  LONG_CLOB
    SYS_C0048549                 2011-12-15 22:00:29 ITEMS_USED
    SYS_C0048547                 2011-12-15 22:00:29 ITEM
    SYS_IL0000337403C00008$$                  IDB_IMAGE_MNU_TEMP
    HOTEL_CON                 2011-06-23 18:23:40 HOTEL
    INDEX_NAME                 LAST_ANALYZED        TABLE_NAME
    GUEST_CON                 2011-06-23 18:23:40 GUEST
    PK_FRIENDS                 2011-06-23 18:23:40 FRIENDS
    PK_FREG                  2011-06-23 18:23:40 FIRMAS
    SYS_C0032526                 2011-06-23 18:23:40 E_SERVICE
    E_EMP_PK                 2011-06-23 18:23:40 E_EMP
    SYS_C0031948                 2011-06-23 18:23:39 EPISODE
    SYS_C0031895                 2011-06-23 18:23:39 EMPLOYEES
    SYS_C0031913                 2011-06-23 18:23:38 CUSTOMER
    SYS_C0031898                 2011-06-23 18:23:37 CHANNEL_TYPES
    SYS_C0031918                 2011-06-23 18:23:37 CHANNELS
    CASE_PK                  2011-06-23 18:23:37 CASE_DETAILS
    INDEX_NAME                 LAST_ANALYZED        TABLE_NAME
    SYS_C0027803                 2011-06-23 18:23:37 BRANCH
    BOOKING_CON                 2011-06-23 18:23:37 BOOKING
    SYS_C0031932                 2011-06-23 18:23:36 BILLING
    SYS_IL0000226980C00002$$                  BASELINE_TEST
    37 rows selected.
    21:24:50 SQL>

  • PolicyUtil error when clicking on Grid Control database

    Hi. I installed Grid Control 10.2.0.4 using a new database (didn't upgrade after installation, so DB is 10.2.0.2). When I click on the repository database under 'Database' (the only one that appears listed since I haven't installed Agent on any other machines), I get some Internal Error message. Here's the content of the file sysman\log\emoms.log:
    2008-10-20 09:24:08,843 [EMUI_09_24_06_/console/database/instance/sitemap] ERROR svlt.PageHandler handleRequest.639 - java.lang.NoClassDefFoundError: oracle/sysman/eml/ecm/policy/util/PolicyUtil
    java.lang.NoClassDefFoundError: oracle/sysman/eml/ecm/policy/util/PolicyUtil
         at oracle.sysman.db.adm.inst.SitemapController.setOverviewPage(SitemapController.java:1381)
         at oracle.sysman.db.adm.inst.SitemapController.setRequestAttributes(SitemapController.java:989)
         at oracle.sysman.db.adm.BaseController.handleEvent(BaseController.java:1026)
         at oracle.sysman.emSDK.svlt.PageHandler.handleRequest(PageHandler.java:577)
         at oracle.sysman.db.adm.RootController.handleRequest(RootController.java:170)
         at oracle.sysman.db.adm.DBControllerResolver.handleRequest(DBControllerResolver.java:114)
         at oracle.sysman.emSDK.svlt.EMServlet.myDoGet(EMServlet.java:784)
         at oracle.sysman.emSDK.svlt.EMServlet.doGet(EMServlet.java:340)
         at oracle.sysman.eml.app.Console.doGet(Console.java:319)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.sysman.eml.app.EMRepLoginFilter.doFilter(EMRepLoginFilter.java:190)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:16)
         at oracle.sysman.eml.app.BrowserVersionFilter.doFilter(BrowserVersionFilter.java:122)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:20)
         at oracle.sysman.emSDK.svlt.EMRedirectFilter.doFilter(EMRedirectFilter.java:102)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:20)
         at oracle.sysman.eml.app.ContextInitFilter.doFilter(ContextInitFilter.java:353)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:659)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:224)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    Any ideas of what's happening? How to fix it?
    Thanks

    The file is 2 Mb in size, so I copied just some warnings and a fragment of the end of the file:
    ADVERTENCIA: {oracle.sysman.emCfg.core.CfmAggregateRef ref to oracle.sysman.top.agent:null:LATEST(unresolved_version):common} was marked unavailable: There are no loaded aggregates for oracle.sysman.top.agent:common
    Oc4jDeploy tool completed successfully!
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stderr:
    INFO: oracle.sysman.top.oms:Oms deploying
    INFO: oracle.sysman.top.oms:OmsPlugIn:Requested Configuration Step 1 have been completed with status=true
    INFO: oracle.sysman.top.oms:OmsPlugIn:Requested Configuration Step 2 have been completed with status=true
    INFO: oracle.sysman.top.oms:OmsPlugIn:Requested Configuration Step 3 have been completed with status=true
    INFO: oracle.sysman.top.oms:EmcpPlug:invoke:Completed EmcpPlug invoke method on an aggregate=oracle.sysman.top.oms for Action=patchsetConfiguration in step=2:microstep=0
    INFO: oracle.sysman.top.oms:El plugin OMS Patch Configuration se ha realizado correctamente
    INFO: oracle.sysman.top.oms:About to execute plug-in Deploy Provision Application
    INFO: oracle.sysman.top.oms:El plugin Deploy Provision Application se está ejecutando
    INFO: oracle.sysman.top.oms:Internal PlugIn Class: oracle.sysman.emcp.aggregates.ConfigPlugIn
    INFO: oracle.sysman.top.oms:Classpath = C:\OracleHomes\oms10g\sysman\jlib\aggPlug.jar;C:\OracleHomes\oms10g\sysman\jlib\omsPlug.jar;C:\OracleHomes\oms10g\jlib\emConfigInstall.jar;C:\OracleHomes\oms10g\sysman\jlib\emCORE.jar;C:\OracleHomes\oms10g\sysman\jlib\emagentSDK.jar;C:\OracleHomes\oms10g\sysman\jlib\log4j-core.jar;C:\OracleHomes\oms10g\jdbc\lib\classes12.jar
    ADVERTENCIA: oracle.sysman.top.oms:Before reading the ConfigTool
    INFO: oracle.sysman.top.oms:El comando es: cmd /c C:\OracleHomes\oms10g/bin/PARDeploy -action deploy -parDir C:\OracleHomes\oms10g/sysman/prov/paf -force
    INFO: oracle.sysman.top.oms:El valor de salida es = 0
    INFO: oracle.sysman.top.oms:STDERR=
    STDOUT=
    ERROR !
    Software Library has not been setup !
    Please configure Software Library and try again.
    INFO: oracle.sysman.top.oms:El comando es: cmd /c C:\OracleHomes\oms10g/perl/5.6.1/bin/MSWin32-x86/perl C:\OracleHomes\oms10g/sysman/plugins/connector/install_remedycntr.pl C:\OracleHomes\oms10g RemedyDeploy.xml CONSOLAORACLE 1521 emrep
    INFO: oracle.sysman.top.oms:El valor de salida es = 0
    INFO: oracle.sysman.top.oms:STDERR=
    "stty" no se reconoce como un comando interno o externo,
    programa o archivo por lotes ejecutable.
    "stty" no se reconoce como un comando interno o externo,
    programa o archivo por lotes ejecutable.
    STDOUT=
    Oracle Enterprise Manager 10g Release 4 Grid Control
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    C:\OracleHomes\oms10g
    Destination directory: C:\OracleHomes\oms10g\sysman\connector\Remedy_Connector
    Creating directory C:\OracleHomes\oms10g\sysman\connector\Remedy_Connector ...
    Done
    Extracting META-INF/MANIFEST.MF
    Extracting templates/Remedy_DefaultCategory_HighPriority_AutoClose_w_Wlog.xsl
    Extracting templates/Remedy_DefaultCategory_HighPriority_AutoClose.xsl
    Extracting templates/Remedy_DefaultCategory_HighPriority_w_Wlog.xsl
    Extracting templates/Remedy_DefaultCategory_HighPriority.xsl
    Extracting templates/Remedy_DefaultCategory_LowPriority_AutoClose_w_Wlog.xsl
    Extracting templates/Remedy_DefaultCategory_LowPriority_AutoClose.xsl
    Extracting templates/Remedy_DefaultCategory_LowPriority_w_Wlog.xsl
    Extracting templates/Remedy_DefaultCategory_LowPriority.xsl
    Extracting templates/Remedy_DefaultCategory_MediumPriority_AutoClose_w_Wlog.xsl
    Extracting templates/Remedy_DefaultCategory_MediumPriority_AutoClose.xsl
    Extracting templates/Remedy_DefaultCategory_MediumPriority_w_Wlog.xsl
    Extracting templates/Remedy_DefaultCategory_MediumPriority.xsl
    Extracting templates/Remedy_DefaultCategory_UrgentPriority_AutoClose_w_Wlog.xsl
    Extracting templates/Remedy_DefaultCategory_UrgentPriority_AutoClose.xsl
    Extracting templates/Remedy_DefaultCategory_UrgentPriority_w_Wlog.xsl
    Extracting templates/Remedy_DefaultCategory_UrgentPriority.xsl
    Extracting createTicketResponse.xsl
    Extracting getTicket_request.xsl
    Extracting getTicket_response.xsl
    Extracting RemedyDeploy.xml
    Extracting EMEventModel.xml
    Extracting RemedyDeploy_w_Worklog.xml
    Extracting HelpDesk_Modify_Service_w_Worklog.def
    Extracting HelpDesk_Query_Service_By_Case_ID.def
    Please enter the SYSMAN password:
    Oracle Enterprise Manager 10g Release 4 Grid Control
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    Connector type 4c10d5d7f74044008281a7d38f45c845 registered.
    Oracle Enterprise Manager 10g Release 4 Grid Control
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    Connector type is Remedy Connector
    The connector type guid is 4C10D5D7F74044008281A7D38F45C845
    Oracle Enterprise Manager 10g Release 4 Grid Control
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    Connector type is Remedy Connector
    The connector type guid is 4C10D5D7F74044008281A7D38F45C845
    Oracle Enterprise Manager 10g Release 4 Grid Control
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    Connector type is Remedy Connector
    The connector type guid is 4C10D5D7F74044008281A7D38F45C845
    Oracle Enterprise Manager 10g Release 4 Grid Control
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    Connector type is Remedy Connector
    The connector type guid is 4C10D5D7F74044008281A7D38F45C845
    Oracle Enterprise Manager 10g Release 4 Grid Control
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    Connector type is Remedy Connector
    The connector type guid is 4C10D5D7F74044008281A7D38F45C845
    Oracle Enterprise Manager 10g Release 4 Grid Control
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    Connector type is Remedy Connector
    The connector type guid is 4C10D5D7F74044008281A7D38F45C845
    Oracle Enterprise Manager 10g Release 4 Grid Control
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    Connector type is Remedy Connector
    The connector type guid is 4C10D5D7F74044008281A7D38F45C845
    Oracle Enterprise Manager 10g Release 4 Grid Control
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    Connector type is Remedy Connector
    The connector type guid is 4C10D5D7F74044008281A7D38F45C845
    INFO: oracle.sysman.top.oms:El comando es: cmd /c C:\OracleHomes\oms10g/perl/5.6.1/bin/MSWin32-x86/perl C:\OracleHomes\oms10g/sysman/plugins/connector/install_momcntr.pl C:\OracleHomes\oms10g CONSOLAORACLE 1521 emrep
    INFO: oracle.sysman.top.oms:El valor de salida es = 0
    INFO: oracle.sysman.top.oms:STDERR=
    "stty" no se reconoce como un comando interno o externo,
    programa o archivo por lotes ejecutable.
    "stty" no se reconoce como un comando interno o externo,
    programa o archivo por lotes ejecutable.
    STDOUT=
    C:\OracleHomes\oms10g/bin/emctl extract_jar connector C:\OracleHomes\oms10g/j2ee/OC4J_EM/applications/em/em/WEB-INF/lib/momconnector.jar "Microsoft Operations Manager Connector" C:\OracleHomes\oms10g
    Oracle Enterprise Manager 10g Release 4 Grid Control
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    C:\OracleHomes\oms10g
    Destination directory: C:\OracleHomes\oms10g\sysman\connector\Microsoft_Operations_Manager_Connector
    Creating directory C:\OracleHomes\oms10g\sysman\connector\Microsoft_Operations_Manager_Connector ...
    Done
    Extracting MOMConnector.xml
    Extracting acknowledge_request.xsl
    Extracting cleanup_request.xsl
    Extracting createEvent_request.xsl
    Extracting createEvent_response.xsl
    Extracting defaultTargetInstance.xml
    Extracting getNewAlert_request.xsl
    Extracting getNewAlerts_response.xsl
    Extracting getUpdatedAlert_request.xsl
    Extracting getUpdatedAlerts_response.xsl
    Extracting initialize_request.xsl
    Extracting setup_request.xsl
    Extracting setup_response.xsl
    Extracting targetType.xml
    Extracting uninitialize_request.xsl
    Extracting update_alert_request.xsl
    Extracting updateEvent_request.xsl
    Extracting updateEvent_response.xsl
    Extracting cleanup_request.xml
    Extracting GenericAcknowledgeRequest.xsd
    Extracting GenericGetAlertRequest.xsd
    Extracting GenericGetUpdateRequest.xsd
    Extracting generic_request_acknowledgealerts.xml
    Extracting generic_request_newalerts.xml
    Extracting generic_request_updatedalerts.xml
    Extracting GenericSetupRequest.xsd
    Extracting getResponse_request.xml
    Extracting getResponse_request.xsl
    Extracting initialize_request.xml
    Extracting setup_request.xml
    Extracting uninitialize_request.xml
    Extracting update_alert_request.xml
    SYSMAN Password:
    C:\OracleHomes\oms10g/bin/emctl register_connector connector C:\OracleHomes\oms10g/sysman/connector/Microsoft_Operations_Manager_Connector/MOMConnector.xml CONSOLAORACLE 1521 emrep sysman ****** C:\OracleHomes\oms10g
    Oracle Enterprise Manager 10g Release 4 Grid Control
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    Connector type f2e4e0ac139b4917bc4dd6651f9a9f89 registered.
    Loading target type C:\OracleHomes\oms10g\sysman\connector\Microsoft_Operations_Manager_Connector\targetType.xml
    isTargetTypeExist checking for : mom_managed_host
    Target type is mom_managed_host
    Done.
    Loading default target instance C:\OracleHomes\oms10g\sysman\connector\Microsoft_Operations_Manager_Connector\defaultTargetInstance.xml
    TargetName added :generic_mom_managed_host
    Done.
    INFO: oracle.sysman.top.oms:El comando es: cmd /c C:\OracleHomes\oms10g/jdk/bin/java -jar C:\OracleHomes\oms10g/sysman/jlib/emclikit.jar client -install_dir=C:\OracleHomes\oms10g/bin
    INFO: oracle.sysman.top.oms:El valor de salida es = 0
    INFO: oracle.sysman.top.oms:STDERR=
    STDOUT=
    Oracle Enterprise Manager 10g Versión 10.2.0.4.0.
    Copyright (c) 1996, 2007 Oracle Corporation. Todos los Derechos Reservados.
    La instalación del cliente de EM CLI ha terminado correctamente.
    INFO: oracle.sysman.top.oms:El plugin Deploy Provision Application se ha realizado correctamente
    INFO: oracle.sysman.top.oms:About to execute plug-in Starting Oracle Management Server
    INFO: oracle.sysman.top.oms:El plugin Starting Oracle Management Server se está ejecutando
    INFO: oracle.sysman.top.oms:Internal PlugIn Class: oracle.sysman.emcp.oms.StartOMS
    INFO: oracle.sysman.top.oms:Classpath = C:\OracleHomes\oms10g\sysman\jlib\omsPlug.jar;C:\OracleHomes\oms10g\jlib\emConfigInstall.jar;C:\OracleHomes\oms10g\sysman\jlib\emCORE.jar;C:\OracleHomes\oms10g\sysman\jlib\emagentSDK.jar;C:\OracleHomes\oms10g\sysman\jlib\log4j-core.jar;C:\OracleHomes\oms10g\jdbc\lib\classes12.jar
    INFO: oracle.sysman.top.oms:EmcpPlug:invoke:Starting EmcpPlug invoke method on an aggregate=oracle.sysman.top.oms for Action=patchsetConfiguration in step=5:microstep=0
    INFO: oracle.sysman.top.oms:inside perform
    INFO: oracle.sysman.top.oms:Starting Oms again
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Performing Command=CMD /C C:\OracleHomes\oms10g\opmn\bin\opmnctl stopall
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:CMD /C C:\OracleHomes\oms10g\opmn\bin\opmnctl stopall have completed with exitCode=0
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stdout:
    'opmnctl: stopping opmn and all managed processes...
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stderr:
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Performing Command=CMD /C C:\OracleHomes\oms10g\opmn\bin\opmnctl startall
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:CMD /C C:\OracleHomes\oms10g\opmn\bin\opmnctl startall have completed with exitCode=0
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stdout:
    'opmnctl: starting opmn and all managed processes...
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stderr:
    INFO: oracle.sysman.top.oms:starting opmn service again
    INFO: oracle.sysman.top.oms:EmcpPlug:invoke:Completed EmcpPlug invoke method on an aggregate=oracle.sysman.top.oms for Action=patchsetConfiguration in step=5:microstep=0
    INFO: oracle.sysman.top.oms:El plugin Starting Oracle Management Server se ha realizado correctamente
    INFO: CfwProgressMonitor:actionProgress:About to perform Action=patchsetconfigure Status=is running with ActionStep=2 stepIndex=2 microStep=0
    INFO: Cfm.save() was called
    INFO: Cfm.save(): 15 aggregate instances saved

  • Daily Report using Grid Control

    Hi guys
    I would like to know if there is a way to schedule some daily reports under the Grid Control?
    There are some cool reports that I wish to receive automatically in my mailbox everyday.
    I don't know how to do that.
    Thanks
    Brahim DRIHEM

    Hi,
    It's very simple.
    Select your report (with the radio-button) and click Edit.
    Go to the schedule tab
    Select "Schedule Report"
    Select "Repeating" and fill out the details here
    select "E-mail report each time the scheduled report completes"
    Enter your mail address
    Press Ok button.
    Hope this helps.

  • Color setting for custom reports in Grid Control

    I created a report in GC (chart from SQL) which works fine.
    I like to adjust the colors for the report. Is there any possibility to do this?

    Which version of EM are you using? The native reporting tool does not support changing colors.
    In EM 12, we added support for Oracle BI Publisher which is a more advanced reporting tool and allows more design options.
    More details here: http://www.oracle.com/technetwork/middleware/bi-publisher/overview/index.html

  • Grid Control - Database Metrics

    Trying to implement applying templates to the target databases.
    What would be the recommended approach?
    We need alerts to be sent for just few metrics (compared to many out of box metrics).
    A) Is that ok to overwrite all metrics & just apply needed metrics through template? OR
    B) should we keep all other metrics and apply the needed/changed metrics with notication only for needed/changed metrics?
    Thanks for suggestions.

    You should go for creating a Monitoring Template,
    just specify the tresholds for the metrics you like to evaluate and 'nullify' (make empty) all others.
    By this the metric values will be collected and stored in the repository, but no alert will be generated for them.
    Regards
    Rob
    For more info on using OEM GC you might want to check http://oemgc.wordpress.com

  • Error creating a user defined report in the grid control

    I am trying to create a simple User Defined report in the Grid OEM
    Under the 'Elements' tab I have a 'Type' - 'Database Table from SQL'
    And I have this 'Statement' - SELECT * FROM SYS.DBA_USERS
    When I Click the 'Preview' button I get this error.
    Error rendering element. Exception: ORA-00942: table or view does not exist
    I'm logged on as SYSTEM.
    Isn't the SYS.DBA_USERS table accessible by SYSTEM?
    Any advice on what I'm doing wrong/
    Edited by: bfee_sdc on Oct 19, 2010 9:12 AM

    What are the tricks?
    It has to be some what supported since I found this somewhere in an Oracle note...
    How to create custom reports on tables other than mgmt* views.
    To create reports on other tables, grant permissions to MGMT_VIEW user as MGMT_VIEW is responsible for creating reports in grid control
    SQL> GRANT SELECT on SYSMAN.<table_name> to MGMT_VIEW;
    And then create the reports in the reporting framework referencing SYSMAN.<table_name> in the query.
    I tried GRANT SELECT on SYS.DBA_USERS to MGNT_VIEW but this did not work.

  • Grid control report

    Is there a way to run a report in grid control of the # of SQL statements run daily against a database? (select, update, insert, delete) they are trying to track the transactions daily in the production environment. Thanks in advance!

    or
    EM grid control -> Reports -> Create
    Under the General Tab
    Title : Test report - host performance for emx.us.oracle.com
    Category : Monitoring
    Sub category : Perfromance
    Target Type : Host
    Use Specified Target : emx.us.oracle.com
    Ensure that the following is checked
    -- Run report using target privileges of the report owner (SYSMAN)
    -- Time Period - Last 7 Days
    Under the Elements Tab
    Add -> Metric Details -> Continue
    Then
    Click on "Set Parameters"
    Time Period : Inherit Report Time Period
    Targets
    Select Metric : CPU Utilization (%) : Load
    When finished click on continue
    We can select another metric, so under the same Elements Tab
    Add -> Metric Details -> Continue
    Then
    Click on "Set Parameters" (now there will be 2 rows)
    Time Period : Inherit Report Time Period
    Targets
    Select Metric : memory Utilization (%) : Load
    You can do a Preview and it should show you the graphs
    When finished, select the Schedule Tab and put in the details

  • OEM Database Control and 10g Grid Control

    Can any one tell the difference between OEM Database Control and OEM 10g Grid Control.

    Database Control is the HTTP Management environment and comes installed with the 10g Database. It can be used to manage one database (one target) at a time (standalone). To monitor more than one database, you must create a new console on a different port for each database.
    10g Grid Control is the Enterprise version in that you can monitor different Target from different operationg systems at the same time. These include Application Servers, Listeners, Operation Systems, Non Oracle Database Systems using plugins (from 10gR2).
    So, for someone who was using OEM 9i, there was connection in to Standalone Console (Java) and Oracle Management Server (Java and HTML). In 10g, they are replaced with Database Control (Java and HTML versions) and Grid Control respectively.

  • 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.

Maybe you are looking for