Query on OMS

hi all,
When i try to start the OMS, am getting the following error.
$ oemctl start oms sysman/oem_temp
OEMCTL for AIX: Version 9.2.0.1.0 Production
Copyright (c) 1998, 2002, Oracle Corporation. All rights reserved.
Starting the Oracle Management Server...
Could not connect to the OMS: possible error in the configuration file.
Terminated
I also tried to see the status of the OMS. but this is what i got.....
$ oemctl status oms
OEMCTL for AIX: Version 9.2.0.1.0 Production
Copyright (c) 1998, 2002, Oracle Corporation. All rights reserved.
VXA-2008 : Could not locate an Oracle Management Server on node tam. Has it been shut down?
can anybody help me please?
Thanks in Advance
Karthik.J
Karthik.J
Message was edited by:
JAY KAY

Thanks for the replies. I checked out 10gR2 today and it seems like, as you both say, that the best way of doing it (if not the only way) is to install the agent onto the remote servers using the tools provided. Doesn't seem as if there's a way of discovering nodes running 9i or lower agents.
Cheers,
Marcus.

Similar Messages

  • Plug-in Mismatch while starting OMS

    Hi All,
    While starting the OMS using command "emctl start oms" fails by throwing an error stating.
    Plugin mismatch with repository. What might be the cause for this? Any ideas?
    Thanks,
    Wern

    Yes, this generally happens if there is some inconsistency b/w the plugins available b/w OMS & Repository.
    You can get this information using the following command & query:
    + On OMS side:
    emcli list_plugins_on_server
    + On Repository side:
    SELECT epv.display_name, epv.plugin_id, epv.version FROM em_plugin_version epv, em_current_deployed_plugin ecp
    WHERE epv.plugin_type NOT IN ( 'BUILT_IN_TARGET_TYPE' , 'INSTALL_HOME') AND ecp.dest_type='2' AND epv.plugin_version_id = ecp.plugin_version_id;
    Best Regards,
    Venkat

  • OEM 12c Report Database Growth Trends

    DB Size
    Shows DB size for all databases
    Total size and total free
    • Able to do this month by month in OEM 12c by whatever group we define via Information Publisher "canned reports"
    However, I need some help because OEM 12c does not provide this requested information:
    • Other than manually going to each database one by one (we have hundreds) Do any of you have any ideas or scripts that would provide the following:
    (Dumping the data out of OEM month by month via csv and trying to compare using excel is not working because we are adding and removing databases monthly and we have hundreds)
    - In one report show Jan, Feb, March, etc database size, used, free, %used by each database
    - Compare growth between months
    - Show Top 25 databases that have grown
    - Show Top 25 Trending growth

    Hi,
    You can query the OMS Repository directly, I used to run a report quite a long time back, using the SQL below to do similar thing:
    SELECT target_name Database, key_value TB, round(max(maximum),0) maximum
    FROM mgmt$metric_daily
    WHERE target_type = 'rac_database'
    and metric_name = 'tbspAllocation' and metric_column = 'spaceUsed'
    and trunc(rollup_timestamp, 'MONTH') = '01-JUL-08'
    and target_name in ('<DB_NAME>')
    GROUP BY target_name, key_value, trunc(rollup_timestamp, 'MONTH')
    ORDER BY Database, TB;
    This was query a 11g OMS, so the tables and columns may of changed.
    Hope this helps
    ZedDBA

  • Long running Query Tuning

    Hi all,
    We are using Oracle9i Enterprise Edition Release 9.2.0.6.0 - Production on
    Linux 2.6.5-7.282-bigsmp #1 SMP box.
    The following query is taking aproximately 1 hr to execute.
    SELECT item.ap_id, item.ap_version_id, oa.customer_id,CI.CAPTION OFFER_ID, ITEM.BILL_START_DATE , ITEM.CTDB_CRE_DATETIME , oa.order_unit_id
    FROM tbap_item item,
    tbprice_plan pp,
    tborder_action oa,
    tborder_action_impl oaimpl,
         TBCATALOG_ITEM CI
    WHERE item.entity_type = 'amdocs.oms.sbcproduct.ApPricePlanImpl'
    AND item.item_def_id = pp.cid
    AND item.item_def_ver = pp.pcversion_id
    AND pp.is_promote = '1'
    AND item.order_action_id = oa.order_unit_id
    AND oa.order_unit_id = oaimpl.order_unit_id
    AND oaimpl.bypass_reason_id = 'MI'
    AND oa.xml_id IS NOT NULL
    AND item.state IN ('AS', 'OR')
    AND item.status = 'AC'
    AND CI.CID = ITEM.ITEM_DEF_ID
    AND CI.PCVERSION_ID = ITEM.ITEM_DEF_VER
    AND item.ap_version_id = '0'
    AND EXISTS (SELECT 1 FROM TBAP_ITEM TEMP WHERE TEMP.AP_ID = ITEM.AP_ID AND TEMP.END_DATE > SYSDATE AND TEMP.STATE IN ('AS' , 'OR') AND TEMP.STATUS ='AC');
    the execution plan before collecting the stats is:
    Query Plan
    SELECT STATEMENT [CHOOSE] Cost=120002
    NESTED LOOPS SEMI Cost=120002 Card=98407 Bytes=18402109
    MERGE JOIN Cost=80639 Card=98407 Bytes=16040341
    SORT JOIN Cost=80607 Card=98407 Bytes=13481759
    MERGE JOIN Cost=78626 Card=98407 Bytes=13481759
    SORT JOIN Cost=76699 Card=119937 Bytes=14992125
    MERGE JOIN Cost=76699 Card=119937 Bytes=14992125
    SORT JOIN Cost=76682 Card=171602 Bytes=19219424
    MERGE JOIN Cost=76682 Card=171602 Bytes=19219424
    SORT JOIN Cost=74698 Card=990661 Bytes=82224863
    TABLE ACCESS FULL TBAP_ITEM [ANALYZED] Cost=62069 Card=990661 Bytes=82224863
    SORT JOIN Cost=1985 Card=89365 Bytes=2591585
    TABLE ACCESS FULL TBORDER_ACTION [ANALYZED] Cost=1511 Card=89365 Bytes=2591585
    SORT JOIN Cost=17 Card=195 Bytes=2535
    TABLE ACCESS FULL TBPRICE_PLAN [ANALYZED] Cost=2 Card=195 Bytes=2535
    SORT JOIN Cost=1928 Card=73323 Bytes=879876
    TABLE ACCESS FULL TBORDER_ACTION_IMPL [ANALYZED] Cost=1698 Card=73323 Bytes=879876
    SORT JOIN Cost=33 Card=3017 Bytes=78442
    TABLE ACCESS FULL TBCATALOG_ITEM [ANALYZED] Cost=4 Card=3017 Bytes=78442
    TABLE ACCESS BY INDEX ROWID TBAP_ITEM [ANALYZED] Cost=1 Card=2037512 Bytes=48900288
    INDEX RANGE SCAN TBAP_ITEM_PK [ANALYZED] Cost=2 Card=2 Bytes=
    after collecting the stats:
    SELECT STATEMENT [CHOOSE] Cost=64972
    NESTED LOOPS SEMI Cost=64972 Card=333 Bytes=62937
    NESTED LOOPS Cost=64839 Card=333 Bytes=54945
    MERGE JOIN Cost=64446 Card=1965 Bytes=300645
    SORT JOIN Cost=64414 Card=1965 Bytes=249555
    MERGE JOIN Cost=64414 Card=1965 Bytes=249555
    SORT JOIN Cost=62429 Card=13393 Bytes=1312514
    MERGE JOIN Cost=62429 Card=13393 Bytes=1312514
    SORT JOIN Cost=2 Card=140 Bytes=1820
    TABLE ACCESS FULL TBPRICE_PLAN [ANALYZED] Cost=2 Card=140 Bytes=1820
    SORT JOIN Cost=62428 Card=26785 Bytes=2276725
    TABLE ACCESS FULL TBAP_ITEM [ANALYZED] Cost=62072 Card=26785 Bytes=2276725
    SORT JOIN Cost=1985 Card=89365 Bytes=2591585
    TABLE ACCESS FULL TBORDER_ACTION [ANALYZED] Cost=1511 Card=89365 Bytes=2591585
    SORT JOIN Cost=33 Card=3017 Bytes=78442
    TABLE ACCESS FULL TBCATALOG_ITEM [ANALYZED] Cost=4 Card=3017 Bytes=78442
    TABLE ACCESS BY INDEX ROWID TBORDER_ACTION_IMPL [ANALYZED] Cost=1 Card=1 Bytes=12
    INDEX UNIQUE SCAN TBORDER_ACTION_IMPL_PK [ANALYZED] Cost=1 Card=1 Bytes=
    TABLE ACCESS BY INDEX ROWID TBAP_ITEM [ANALYZED] Cost=1 Card=2972308 Bytes=71335392
    INDEX RANGE SCAN TBAP_ITEM_PK [ANALYZED] Cost=2 Card=2 Bytes=
    I am now taking the level 4 trace now.will post it once Its done. I found some "latchfree" timeouts while running it now...
    I also find that few cols refered in where clause doesn't have indexes...So I am going to discuss this with the developers. also I want modify the query too..as below.
    ELECT item.ap_id, item.ap_version_id, oa.customer_id,CI.CAPTION OFFER_ID, ITEM.BILL_START_DATE , ITEM.CTDB_CRE_DATETIME , oa.order_unit_id
    FROM tbap_item item,
    tbprice_plan pp,
    tborder_action oa,
    tborder_action_impl oaimpl,
         TBCATALOG_ITEM CI
    WHERE
    item.entity_type = 'amdocs.oms.sbcproduct.ApPricePlanImpl'
    AND item.status = 'AC'
    AND item.state IN ('AS', 'OR')
    AND item.ap_version_id = '0'
    AND pp.is_promote = '1'
    AND oaimpl.bypass_reason_id = 'MI'
    AND oa.xml_id IS NOT NULL
    AND item.item_def_id = pp.cid
    AND item.item_def_ver = pp.pcversion_id
    AND item.order_action_id = oa.order_unit_id
    AND oa.order_unit_id = oaimpl.order_unit_id
    AND CI.CID = ITEM.ITEM_DEF_ID
    AND CI.PCVERSION_ID = ITEM.ITEM_DEF_VER
    AND EXISTS (SELECT 1 FROM TBAP_ITEM TEMP WHERE
    TEMP.STATE IN ('AS' , 'OR') AND TEMP.STATUS ='AC' AND TEMP.AP_ID = ITEM.AP_ID AND TEMP.END_DATE > SYSDATE );
    Please suggest. what else I need to check to imporve the performace .
    Thanks in advace for your help and suggestions.

    here is formatted one:
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.14       0.19          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        8     58.21    4169.28    1663901    1699503         10         103
    total       10     58.36    4169.47    1663901    1699503         10         103
    Misses in library cache during parse: 1
    Optimizer goal: CHOOSE
    Parsing user id: 139
    Rows     Row Source Operation
        103  NESTED LOOPS SEMI
        158   NESTED LOOPS
       3613    MERGE JOIN
       3613     SORT JOIN
       3613      MERGE JOIN
    110996       SORT JOIN
    110996        MERGE JOIN
        195         SORT JOIN
        195          TABLE ACCESS FULL OBJ#(33959)
    110996         SORT JOIN
    820046          TABLE ACCESS FULL OBJ#(33563)
       3613       SORT JOIN
      89365        TABLE ACCESS FULL OBJ#(33538)
       3613     SORT JOIN
       3017      TABLE ACCESS FULL OBJ#(33889)
        158    TABLE ACCESS BY INDEX ROWID OBJ#(33534)
       3613     INDEX UNIQUE SCAN OBJ#(33645) (object id 33645)
        103   TABLE ACCESS BY INDEX ROWID OBJ#(33563)
        275    INDEX RANGE SCAN OBJ#(48320) (object id 48320)
    ********************************************************************************

  • Error, trouble, when patching OMS GridControl 10.2.0.1 to 10.2.0.4

    I have an error when I try to patch my OMS GridControl. Always at the OMS patch configuration
    content of configToolFailedCommands
    oracle.sysman.emcp.oms.OmsPatchUpgrade -configureOms
    oracle.sysman.emcp.aggregates.ConfigPlugIn
    oracle.sysman.emcp.oms.StartOMS -configureOms
    content of CfmLogger_2008-04-14_11-00-34-AM.log
    INFO: Creating new CFM connection
    INFO: Creating a new logger for oracle.sysman.patchset
    INFO: Unmarshalling E:\OracleHome\oms10g\inventory\ContentsXML\ConfigXML\oracle.sysman.patchset.10_2_0_4_0.xml
    INFO: No description found in E:\OracleHome\oms10g\inventory\ContentsXML\ConfigXML for aggregate=oracle.sysman.top.agent
    INFO: Creating a new logger for OuiConfigVariables
    INFO: Unmarshalling E:\OracleHome\oms10g\inventory\ContentsXML\ConfigXML\OuiConfigVariables.1_0_0_0_0.xml
    INFO: Creating a new logger for oracle.sysman.top.oms
    INFO: Unmarshalling E:\OracleHome\oms10g\inventory\ContentsXML\ConfigXML\oracle.sysman.top.oms.10_2_0_4_0.xml
    INFO: Creating a new logger for oracle.sysman.ccr
    INFO: Unmarshalling E:\OracleHome\oms10g\inventory\ContentsXML\ConfigXML\oracle.sysman.ccr.10_2_6_0_0.xml
    WARNING: {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
    INFO: Aggregate Description oracle.sysman.patchset:10.2.0.4.0:common successfully loaded
    INFO: Aggregate Description OuiConfigVariables:1.0.0.0.0:common successfully loaded
    INFO: Aggregate Description oracle.sysman.top.oms:10.2.0.4.0:common successfully loaded
    INFO: Aggregate Description oracle.sysman.ccr:10.2.6.0.0:common successfully loaded
    INFO: Creating a new logger for oracle.sysman.top.oms
    INFO: Unmarshalling E:\OracleHome\oms10g\inventory\ContentsXML\ConfigXML\oracle.sysman.top.oms.10_2_0_2_0.xml
    INFO: Creating a new logger for oracle.calypso
    INFO: Unmarshalling E:\OracleHome\oms10g\inventory\ContentsXML\ConfigXML\oracle.calypso.10_1_2_1_0.xml
    INFO: Creating a new logger for oracle.java.j2ee.iascfg
    INFO: Unmarshalling E:\OracleHome\oms10g\inventory\ContentsXML\ConfigXML\oracle.java.j2ee.iascfg.10_1_2_1_0.xml
    INFO: Creating a new logger for oracle.apache.apache
    INFO: Unmarshalling E:\OracleHome\oms10g\inventory\ContentsXML\ConfigXML\oracle.apache.apache.1_3_31_0_0.xml
    INFO: Creating a new logger for oracle.oid.oradas
    INFO: Unmarshalling E:\OracleHome\oms10g\inventory\ContentsXML\ConfigXML\oracle.oid.oradas.10_1_2_1_0.xml
    INFO: Creating a new logger for oracle.iappserver.iasobject
    INFO: Unmarshalling E:\OracleHome\oms10g\inventory\ContentsXML\ConfigXML\oracle.iappserver.iasobject.10_1_2_0_2.xml
    INFO: Creating a new logger for oracle.apache
    INFO: Unmarshalling E:\OracleHome\oms10g\inventory\ContentsXML\ConfigXML\oracle.apache.10_1_2_1_0.xml
    INFO: Creating a new logger for oracle.iappserver.iapptop
    INFO: Unmarshalling E:\OracleHome\oms10g\inventory\ContentsXML\ConfigXML\oracle.iappserver.iapptop.10_1_2_0_2.xml
    INFO: Creating a new logger for oracle.rdbms.jazn.config
    INFO: Unmarshalling E:\OracleHome\oms10g\inventory\ContentsXML\ConfigXML\oracle.rdbms.jazn.config.10_1_2_0_2.xml
    INFO: Creating a new logger for oracle.iappserver.repository.api
    INFO: Unmarshalling E:\OracleHome\oms10g\inventory\ContentsXML\ConfigXML\oracle.iappserver.repository.api.10_1_2_0_2.xml
    INFO: Creating a new logger for oracle.iappserver.iappcore
    INFO: Unmarshalling E:\OracleHome\oms10g\inventory\ContentsXML\ConfigXML\oracle.iappserver.iappcore.10_1_2_0_2.xml
    INFO: No description found in E:\OracleHome\oms10g\inventory\ContentsXML\ConfigXML for aggregate=oracle.sysman.top.agent
    WARNING: {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
    WARNING: {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
    INFO: Aggregate Description oracle.sysman.patchset:10.2.0.4.0:common successfully loaded
    INFO: Aggregate Description OuiConfigVariables:1.0.0.0.0:common successfully loaded
    INFO: Aggregate Description oracle.sysman.top.oms:10.2.0.4.0:common successfully loaded
    INFO: Aggregate Description oracle.sysman.ccr:10.2.6.0.0:common successfully loaded
    INFO: Aggregate Description oracle.sysman.top.oms:10.2.0.2.0:common successfully loaded
    INFO: Aggregate Description oracle.calypso:10.1.2.1.0:common successfully loaded
    INFO: Aggregate Description oracle.java.j2ee.iascfg:10.1.2.1.0:common successfully loaded
    INFO: Aggregate Description oracle.apache.apache:1.3.31.0.0:common successfully loaded
    INFO: Aggregate Description oracle.oid.oradas:10.1.2.1.0:common successfully loaded
    INFO: Aggregate Description oracle.iappserver.iasobject:10.1.2.0.2:common successfully loaded
    INFO: Aggregate Description oracle.apache:10.1.2.1.0:common successfully loaded
    INFO: Aggregate Description oracle.iappserver.iapptop:10.1.2.0.2:common successfully loaded
    INFO: Aggregate Description oracle.rdbms.jazn.config:10.1.2.0.2:common successfully loaded
    INFO: Aggregate Description oracle.iappserver.repository.api:10.1.2.0.2:common successfully loaded
    INFO: Aggregate Description oracle.iappserver.iappcore:10.1.2.0.2:common successfully loaded
    INFO: Successfully returning from CfmFactory.connect()
    INFO: Cfm.save() was called
    INFO: Cfm.save(): 15 aggregate instances saved
    INFO: oracle.sysman.patchset:IAction.perform() was called on {Action state:patchsetconfigure in CfmAggregateInstance: oracle.sysman.patchset:10.2.0.4.0:common:family=CFM:oh=E:\OracleHome\oms10g:label=0}
    INFO: CfwProgressMonitor:actionProgress:About to perform Action=patchsetconfigure Status=is running with ActionStep=0 stepIndex=0 microStep=0
    INFO: CfwProgressMonitor:actionProgress:About to perform Action=patchsetconfigure Status=is running with ActionStep=1 stepIndex=1 microStep=0
    INFO: oracle.sysman.top.oms:About to execute plug-in OMS Oneoff Patch Application
    INFO: oracle.sysman.top.oms:The plug-in OMS Oneoff Patch Application is running
    INFO: oracle.sysman.top.oms:Launching CmdExec
    INFO: oracle.sysman.top.oms:ExitCode=0
    INFO: oracle.sysman.top.oms:The plug-in OMS Oneoff Patch Application executed as attached=true in separate process with exitcode=0
    INFO: oracle.sysman.top.oms:The plug-in OMS Oneoff Patch Application has successfully been performed
    INFO: oracle.sysman.top.oms:About to execute plug-in Repository Upgrade
    INFO: oracle.sysman.top.oms:The plug-in Repository Upgrade is running
    INFO: oracle.sysman.top.oms:Internal PlugIn Class: oracle.sysman.emcp.oms.RepositoryPatchUpgrade
    INFO: oracle.sysman.top.oms:Classpath = E:\OracleHome\oms10g\sysman\jlib\omsPlug.jar;E:\OracleHome\oms10g\jlib\emConfigInstall.jar;E:\OracleHome\oms10g\sysman\jlib\emCORE.jar;E:\OracleHome\oms10g\sysman\jlib\emagentSDK.jar;E:\OracleHome\oms10g\sysman\jlib\log4j-core.jar;E:\OracleHome\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=1:microstep=0
    INFO: oracle.sysman.top.oms:called initialize method
    INFO: oracle.sysman.top.oms:
    Invoking Repmanager tool ...
    INFO: oracle.sysman.top.oms:The value of ORACLE_HOME is E:\OracleHome\oms10g
    INFO: oracle.sysman.top.oms:The value of ConnectDes is (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=VMORACLE01)(PORT=1521)))(CONNECT_DATA=(SID=rep)))
    INFO: oracle.sysman.top.oms:The command is E:\OracleHome\oms10g\sysman\admin\emdrep\bin\RepManager -connect (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=VMORACLE01)(PORT=1521)))(CONNECT_DATA=(SID=rep))) -action upgrade -verbose -repos_user sysman -output_file E:/OracleHome/oms10g/sysman/log/emrepmgr.log.10.2.0.4.0
    INFO: oracle.sysman.top.oms:[RepositoryPatchUpgrade]:Initialize Environment Variable:{CLIENTNAME=T8193, PROCESSOR_ARCHITECTURE=x86, NEED_EXIT_CODE=TRUE, TMP=C:\Temp\1, ClusterLog=C:\WINDOWS\Cluster\cluster.log, __PROCESS_HISTORY=E:\Source\Grid control 10.1.2.0.4\p3731593_10204\3731593\Disk1\setup.exe;E:\Source\Grid control 10.1.2.0.4\p3731593_10204\3731593\Disk1\install\setup.exe, COMPUTERNAME=VMORACLE01, OS=Windows_NT, PROMPT=$P$G, PERL5LIB=E:\OracleHome\db10g\perl\5.8.3\lib\MSWin32-x86;E:\OracleHome\db10g\perl\5.8.3\lib;E:\OracleHome\db10g\perl\5.8.3\lib\MSWin32-x86;E:\OracleHome\db10g\perl\site\5.8.3;E:\OracleHome\db10g\perl\site\5.8.3\lib;E:\OracleHome\db10g\sysman\admin\scripts, SystemDrive=C:, HOMEDRIVE=C:, LOGONSERVER=\\SIDOMP01, PROCESSOR_IDENTIFIER=x86 Family 15 Model 4 Stepping 8, GenuineIntel, ProgramFiles=C:\Program Files, NUMBER_OF_PROCESSORS=2, TEMP=C:\Temp\1, SMS_LOCAL_DIR=C:\WINDOWS, USERDOMAIN=SCT, PROCESSOR_LEVEL=15, USERDNSDOMAIN=SCT.GOUV.QC.CA, Path=E:\OracleHome\db10g\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem, SESSIONNAME=RDP-Tcp#1, USERNAME=admora, PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH, ComSpec=C:\WINDOWS\system32\cmd.exe, SystemRoot=C:\WINDOWS, windir=C:\WINDOWS, PROCESSOR_REVISION=0408, USERPROFILE=C:\Documents and Settings\admora, oracle_home = e:\OracleHome\agent10g, CommonProgramFiles=C:\Program Files\Common Files, oracle_home=e:\oraclehome\oms10g, APPDATA=C:\Documents and Settings\admora\Application Data, HOMEPATH=\Documents and Settings\admora, ALLUSERSPROFILE=C:\Documents and Settings\All Users}
    INFO: oracle.sysman.top.oms:calling constructEnvVariables
    INFO: oracle.sysman.top.oms:Constructed Env Variable:{CLIENTNAME=T8193, PROCESSOR_ARCHITECTURE=x86, NEED_EXIT_CODE=TRUE, TMP=C:\Temp\1, ClusterLog=C:\WINDOWS\Cluster\cluster.log, __PROCESS_HISTORY=E:\Source\Grid control 10.1.2.0.4\p3731593_10204\3731593\Disk1\setup.exe;E:\Source\Grid control 10.1.2.0.4\p3731593_10204\3731593\Disk1\install\setup.exe, COMPUTERNAME=VMORACLE01, OS=Windows_NT, PROMPT=$P$G, PERL5LIB=E:\OracleHome\db10g\perl\5.8.3\lib\MSWin32-x86;E:\OracleHome\db10g\perl\5.8.3\lib;E:\OracleHome\db10g\perl\5.8.3\lib\MSWin32-x86;E:\OracleHome\db10g\perl\site\5.8.3;E:\OracleHome\db10g\perl\site\5.8.3\lib;E:\OracleHome\db10g\sysman\admin\scripts, SystemDrive=C:, HOMEDRIVE=C:, LOGONSERVER=\\SIDOMP01, PROCESSOR_IDENTIFIER=x86 Family 15 Model 4 Stepping 8, GenuineIntel, ProgramFiles=C:\Program Files, NUMBER_OF_PROCESSORS=2, TEMP=C:\Temp\1, SMS_LOCAL_DIR=C:\WINDOWS, USERDOMAIN=SCT, PROCESSOR_LEVEL=15, USERDNSDOMAIN=SCT.GOUV.QC.CA, Path=E:\OracleHome\db10g\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem, SESSIONNAME=RDP-Tcp#1, USERNAME=admora, PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH, ComSpec=C:\WINDOWS\system32\cmd.exe, SystemRoot=C:\WINDOWS, windir=C:\WINDOWS, PROCESSOR_REVISION=0408, USERPROFILE=C:\Documents and Settings\admora, oracle_home = e:\OracleHome\agent10g, ORACLE_HOME=E:\OracleHome\oms10g, CommonProgramFiles=C:\Program Files\Common Files, oracle_home=e:\oraclehome\oms10g, APPDATA=C:\Documents and Settings\admora\Application Data, HOMEPATH=\Documents and Settings\admora, ALLUSERSPROFILE=C:\Documents and Settings\All Users}
    INFO: oracle.sysman.top.oms:Upgrade->Executing Command: CMD /c E:\OracleHome\oms10g\bin\emctl status emkey
    INFO: oracle.sysman.top.oms: Command Exit Code:1
    INFO: oracle.sysman.top.oms: Command Output:----------
    INFO: oracle.sysman.top.oms:Oracle Enterprise Manager 10g Release 4 Grid Control
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    The Em Key is configured properly, but is not secure. Secure the Em Key by running "emctl config emkey -remove_from_repos".
    INFO: oracle.sysman.top.oms: Command Error:----------
    INFO: oracle.sysman.top.oms:Please enter repository password:
    INFO: oracle.sysman.top.oms:calling run commands with inputs
    INFO: oracle.sysman.top.oms:Upgrade->Executing Command: CMD /c E:\OracleHome\oms10g\sysman\admin\emdrep\bin\RepManager -connect (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=VMORACLE01)(PORT=1521)))(CONNECT_DATA=(SID=rep))) -action upgrade -verbose -repos_user sysman -output_file E:/OracleHome/oms10g/sysman/log/emrepmgr.log.10.2.0.4.0
    INFO: oracle.sysman.top.oms: Entering another input
    INFO: oracle.sysman.top.oms: Command Exit Code:0
    INFO: oracle.sysman.top.oms: Command Output:----------
    INFO: oracle.sysman.top.oms:Enter SYS user's password :
    Enter repository user password :
    Getting temporary tablespace from database...
    Found temporary tablespace: TEMP
    Environment :
    ORACLE HOME = e:/oraclehome/oms10g
    REPOSITORY HOME = e:/oraclehome/oms10g
    SQLPLUS = e:/oraclehome/oms10g/bin/sqlplus
    SQL SCRIPT ROOT = e:/oraclehome/oms10g/sysman/admin/emdrep/sql
    EXPORT = e:/oraclehome/oms10g/bin/exp
    IMPORT = e:/oraclehome/oms10g/bin/imp
    LOADJAVA = e:/oraclehome/oms10g/bin/loadjava
    JAR FILE ROOT = e:/oraclehome/oms10g/sysman/admin/emdrep/lib
    JOB TYPES ROOT = e:/oraclehome/oms10g/sysman/admin/emdrep/bin
    Arguments :
    Connect String = (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=VMORACLE01)(PORT=1521)))(CONNECT_DATA=(SID=rep)))
    Action = upgrade
    Repos User = SYSMAN
    Default tablespace = MGMT_TABLESPACE
    Default Data file = mgmt.dbf
    Dflt Dfile Init size = 20m
    Dflt Dfile Ext size = 20m
    ECM tablespace = MGMT_ECM_DEPOT_TS
    ECM Data file = mgmt_ecm_depot1.dbf
    ECM Dfile Init size = 100m
    ECM Dfile Ext size = 100m
    ECM CSA tablespace = MGMT_TABLESPACE
    ECM CSA Data file = mgmt_ecm_csa1.dbf
    ECM CSA Dfile Init size = 100m
    ECM CSA Dfile Ext size = 100m
    TEMP tablespace = TEMP
    Create options = 3
    Verbose output = 1
    Output File = E:/OracleHome/oms10g/sysman/log/emrepmgr.log.10.2.0.4.0
    Repos creation mode = CENTRAL
    MetaLink user name = NOTAVAILABLE_
    MetaLink URL = http://updates.oracle.com
    Export Directory = e:/oraclehome/oms10g/sysman/log
    Import Directory = e:/oraclehome/oms10g/sysman/log
    Path Separator = "\;"
    Checking SYS Credentials ... rem error switch
    Return code = 0.OK.
    rem error switch
    Upgrading the repository..
    Checking for Repos User ... Return code = 0.Exists.
    Loading necessary DB objects ...
    Checking DB Object (DBMS_SHARED_POOL , PACKAGE) ... rem error switch
    Return code = 0Exists.
    rem error switch
    DBMS POOL package exists.
    Return code = 0.
    Done Loading necessary DB objects
    Checking repository version..
    Running setSchemaStatus: BEGIN EMD_MAINTENANCE.SET_VERSION('_UPGRADE_','0','0','SYSTEM',EMD_MAINTENANCE.G_STATUS_UPGRADING);END;
    Upgrading EM Schema ... using new rep manager framework
    rem error switch
    parsing component core
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ********** Start header analysis ****************
    [14-04-2008 11:01:45] ********** End header analysis ****************
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] The following dump is meant for debugging purposes
    [14-04-2008 11:01:45] ********** Start SQL objects dump ****************
    [14-04-2008 11:01:45] ********** End SQL objects dump ****************
    parsing component db
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ********** Start header analysis ****************
    [14-04-2008 11:01:45] ********** End header analysis ****************
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] The following dump is meant for debugging purposes
    [14-04-2008 11:01:45] ********** Start SQL objects dump ****************
    [14-04-2008 11:01:45] ********** End SQL objects dump ****************
    parsing component pa
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ********** Start header analysis ****************
    [14-04-2008 11:01:45] ********** End header analysis ****************
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] The following dump is meant for debugging purposes
    [14-04-2008 11:01:45] ********** Start SQL objects dump ****************
    [14-04-2008 11:01:45] ********** End SQL objects dump ****************
    parsing component connector
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ********** Start header analysis ****************
    [14-04-2008 11:01:45] ********** End header analysis ****************
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] The following dump is meant for debugging purposes
    [14-04-2008 11:01:45] ********** Start SQL objects dump ****************
    [14-04-2008 11:01:45] ********** End SQL objects dump ****************
    parsing component ias
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ********** Start header analysis ****************
    [14-04-2008 11:01:45] ********** End header analysis ****************
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] The following dump is meant for debugging purposes
    [14-04-2008 11:01:45] ********** Start SQL objects dump ****************
    [14-04-2008 11:01:45] ********** End SQL objects dump ****************
    parsing component integic
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ********** Start header analysis ****************
    [14-04-2008 11:01:45] ********** End header analysis ****************
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] The following dump is meant for debugging purposes
    [14-04-2008 11:01:45] ********** Start SQL objects dump ****************
    [14-04-2008 11:01:45] ********** End SQL objects dump ****************
    parsing component sso_server
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ********** Start header analysis ****************
    [14-04-2008 11:01:45] ********** End header analysis ****************
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] The following dump is meant for debugging purposes
    [14-04-2008 11:01:45] ********** Start SQL objects dump ****************
    [14-04-2008 11:01:45] ********** End SQL objects dump ****************
    parsing component bc4j
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ********** Start header analysis ****************
    [14-04-2008 11:01:45] ********** End header analysis ****************
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] The following dump is meant for debugging purposes
    [14-04-2008 11:01:45] ********** Start SQL objects dump ****************
    [14-04-2008 11:01:45] ********** End SQL objects dump ****************
    parsing component forms
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ********** Start header analysis ****************
    [14-04-2008 11:01:45] ********** End header analysis ****************
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] The following dump is meant for debugging purposes
    [14-04-2008 11:01:45] ********** Start SQL objects dump ****************
    [14-04-2008 11:01:45] ********** End SQL objects dump ****************
    parsing component wireless
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ********** Start header analysis ****************
    [14-04-2008 11:01:45] ********** End header analysis ****************
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] The following dump is meant for debugging purposes
    [14-04-2008 11:01:45] ********** Start SQL objects dump ****************
    [14-04-2008 11:01:45] ********** End SQL objects dump ****************
    parsing component workflow
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ********** Start header analysis ****************
    [14-04-2008 11:01:45] ********** End header analysis ****************
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] The following dump is meant for debugging purposes
    [14-04-2008 11:01:45] ********** Start SQL objects dump ****************
    [14-04-2008 11:01:45] ********** End SQL objects dump ****************
    parsing component ocs
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ********** Start header analysis ****************
    [14-04-2008 11:01:45] ********** End header analysis ****************
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] The following dump is meant for debugging purposes
    [14-04-2008 11:01:45] ********** Start SQL objects dump ****************
    [14-04-2008 11:01:45] ********** End SQL objects dump ****************
    parsing component portal
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ********** Start header analysis ****************
    [14-04-2008 11:01:45] ********** End header analysis ****************
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] The following dump is meant for debugging purposes
    [14-04-2008 11:01:45] ********** Start SQL objects dump ****************
    [14-04-2008 11:01:45] ********** End SQL objects dump ****************
    parsing component integrationbpm
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ********** Start header analysis ****************
    [14-04-2008 11:01:45] ********** End header analysis ****************
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] The following dump is meant for debugging purposes
    [14-04-2008 11:01:45] ********** Start SQL objects dump ****************
    [14-04-2008 11:01:45] ********** End SQL objects dump ****************
    parsing component integrationbam
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ********** Start header analysis ****************
    [14-04-2008 11:01:45] ********** End header analysis ****************
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] The following dump is meant for debugging purposes
    [14-04-2008 11:01:45] ********** Start SQL objects dump ****************
    [14-04-2008 11:01:45] ********** End SQL objects dump ****************
    parsing component discoverer
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ********** Start header analysis ****************
    [14-04-2008 11:01:45] ********** End header analysis ****************
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] The following dump is meant for debugging purposes
    [14-04-2008 11:01:45] ********** Start SQL objects dump ****************
    [14-04-2008 11:01:45] ********** End SQL objects dump ****************
    parsing component pp
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ********** Start header analysis ****************
    [14-04-2008 11:01:45] ********** End header analysis ****************
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] The following dump is meant for debugging purposes
    [14-04-2008 11:01:45] ********** Start SQL objects dump ****************
    [14-04-2008 11:01:45] ********** End SQL objects dump ****************
    parsing component ifs
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ********** Start header analysis ****************
    [14-04-2008 11:01:45] ********** End header analysis ****************
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] The following dump is meant for debugging purposes
    [14-04-2008 11:01:45] ********** Start SQL objects dump ****************
    [14-04-2008 11:01:45] ********** End SQL objects dump ****************
    parsing component repserv
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ********** Start header analysis ****************
    [14-04-2008 11:01:45] ********** End header analysis ****************
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] The following dump is meant for debugging purposes
    [14-04-2008 11:01:45] ********** Start SQL objects dump ****************
    [14-04-2008 11:01:45] ********** End SQL objects dump ****************
    parsing component beehive
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ********** Start header analysis ****************
    [14-04-2008 11:01:45] ********** End header analysis ****************
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] The following dump is meant for debugging purposes
    [14-04-2008 11:01:45] ********** Start SQL objects dump ****************
    [14-04-2008 11:01:45] ********** End SQL objects dump ****************
    parsing component content
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ********** Start header analysis ****************
    [14-04-2008 11:01:45] ********** End header analysis ****************
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] The following dump is meant for debugging purposes
    [14-04-2008 11:01:45] ********** Start SQL objects dump ****************
    [14-04-2008 11:01:45] ********** End SQL objects dump ****************
    parsing component integb2b
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ********** Start header analysis ****************
    [14-04-2008 11:01:45] ********** End header analysis ****************
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] The following dump is meant for debugging purposes
    [14-04-2008 11:01:45] ********** Start SQL objects dump ****************
    [14-04-2008 11:01:45] ********** End SQL objects dump ****************
    parsing component ci
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ********** Start header analysis ****************
    [14-04-2008 11:01:45] ********** End header analysis ****************
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] The following dump is meant for debugging purposes
    [14-04-2008 11:01:45] ********** Start SQL objects dump ****************
    [14-04-2008 11:01:45] ********** End SQL objects dump ****************
    executing query :
    "select component_name, component_mode, version from SYSMAN.MGMT_VERSIONS where version<>'0'"
    executing query :
    "select tablespace_name, table_name from all_tables where owner ='SYSMAN' and table_name in ( 'MGMT_TARGETS' , 'MGMT_JOB_PARAMETER' ) order by table_name asc"
    component integic is already at 10.2.0.2.0
    component sso_server is already at 10.2.0.2.0
    component bc4j is already at 10.2.0.2.0
    component forms is already at 10.2.0.2.0
    component wireless is already at 10.2.0.2.0
    component workflow is already at 10.2.0.2.0
    component portal is already at 10.2.0.2.0
    component integrationbpm is already at 10.2.0.2.0
    component integrationbam is already at 10.2.0.2.0
    component discoverer is already at 10.2.0.2.0
    component ifs is already at 10.2.0.2.0
    component repserv is already at 10.2.0.2.0
    component integb2b is already at 10.2.0.2.0
    has_upgrade_scripts:0
    executing core schema_upgrade scripts from version 10.2.0.2.0
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for schema_upgrade (from version: 10.2.0.2.0) scripts in component: core *****
    [14-04-2008 11:01:45] ***** End Final order for schema_upgrade (from version: 10.2.0.2.0) scripts in component: core *****
    [14-04-2008 11:01:45]
    executing core recreation scripts
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for recreate scripts in component: core *****
    [14-04-2008 11:01:45] ***** End Final order for recreate scripts in component: core *****
    [14-04-2008 11:01:45]
    has_upgrade_scripts:0
    executing db schema_upgrade scripts from version 10.2.0.2.0
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for schema_upgrade (from version: 10.2.0.2.0) scripts in component: db *****
    [14-04-2008 11:01:45] ***** End Final order for schema_upgrade (from version: 10.2.0.2.0) scripts in component: db *****
    [14-04-2008 11:01:45]
    executing db recreation scripts
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for recreate scripts in component: db *****
    [14-04-2008 11:01:45] ***** End Final order for recreate scripts in component: db *****
    [14-04-2008 11:01:45]
    has_upgrade_scripts:0
    component pa does not exist in the current schema. create it.
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for create scripts in component: pa *****
    [14-04-2008 11:01:45] ***** End Final order for create scripts in component: pa *****
    [14-04-2008 11:01:45]
    has_upgrade_scripts:0
    component connector does not exist in the current schema. create it.
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for create scripts in component: connector *****
    [14-04-2008 11:01:45] ***** End Final order for create scripts in component: connector *****
    [14-04-2008 11:01:45]
    has_upgrade_scripts:0
    executing ias schema_upgrade scripts from version 10.2.0.2.0
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for schema_upgrade (from version: 10.2.0.2.0) scripts in component: ias *****
    [14-04-2008 11:01:45] ***** End Final order for schema_upgrade (from version: 10.2.0.2.0) scripts in component: ias *****
    [14-04-2008 11:01:45]
    executing ias recreation scripts
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for recreate scripts in component: ias *****
    [14-04-2008 11:01:45] ***** End Final order for recreate scripts in component: ias *****
    [14-04-2008 11:01:45]
    has_upgrade_scripts:0
    component integic is already at 10.2.0.2.0
    skipping integic upgrade
    has_upgrade_scripts:0
    component sso_server is already at 10.2.0.2.0
    skipping sso_server upgrade
    has_upgrade_scripts:0
    component bc4j is already at 10.2.0.2.0
    skipping bc4j upgrade
    has_upgrade_scripts:0
    component forms is already at 10.2.0.2.0
    skipping forms upgrade
    has_upgrade_scripts:0
    component wireless is already at 10.2.0.2.0
    skipping wireless upgrade
    has_upgrade_scripts:0
    component workflow is already at 10.2.0.2.0
    skipping workflow upgrade
    has_upgrade_scripts:0
    executing ocs schema_upgrade scripts from version 10.2.0.2.0
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for schema_upgrade (from version: 10.2.0.2.0) scripts in component: ocs *****
    [14-04-2008 11:01:45] ***** End Final order for schema_upgrade (from version: 10.2.0.2.0) scripts in component: ocs *****
    [14-04-2008 11:01:45]
    executing ocs recreation scripts
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for recreate scripts in component: ocs *****
    [14-04-2008 11:01:45] ***** End Final order for recreate scripts in component: ocs *****
    [14-04-2008 11:01:45]
    has_upgrade_scripts:0
    component portal is already at 10.2.0.2.0
    skipping portal upgrade
    has_upgrade_scripts:0
    component integrationbpm is already at 10.2.0.2.0
    skipping integrationbpm upgrade
    has_upgrade_scripts:0
    component integrationbam is already at 10.2.0.2.0
    skipping integrationbam upgrade
    has_upgrade_scripts:0
    component discoverer is already at 10.2.0.2.0
    skipping discoverer upgrade
    has_upgrade_scripts:0
    executing pp schema_upgrade scripts from version 10.2.0.2.0
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for schema_upgrade (from version: 10.2.0.2.0) scripts in component: pp *****
    [14-04-2008 11:01:45] ***** End Final order for schema_upgrade (from version: 10.2.0.2.0) scripts in component: pp *****
    [14-04-2008 11:01:45]
    executing pp recreation scripts
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for recreate scripts in component: pp *****
    [14-04-2008 11:01:45] ***** End Final order for recreate scripts in component: pp *****
    [14-04-2008 11:01:45]
    has_upgrade_scripts:0
    component ifs is already at 10.2.0.2.0
    skipping ifs upgrade
    has_upgrade_scripts:0
    component repserv is already at 10.2.0.2.0
    skipping repserv upgrade
    has_upgrade_scripts:0
    component beehive does not exist in the current schema. create it.
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for create scripts in component: beehive *****
    [14-04-2008 11:01:45] ***** End Final order for create scripts in component: beehive *****
    [14-04-2008 11:01:45]
    has_upgrade_scripts:0
    component content does not exist in the current schema. create it.
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for create scripts in component: content *****
    [14-04-2008 11:01:45] ***** End Final order for create scripts in component: content *****
    [14-04-2008 11:01:45]
    has_upgrade_scripts:0
    component integb2b is already at 10.2.0.2.0
    skipping integb2b upgrade
    has_upgrade_scripts:0
    executing ci schema_upgrade scripts from version 10.2.0.2.0
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for schema_upgrade (from version: 10.2.0.2.0) scripts in component: ci *****
    [14-04-2008 11:01:45] ***** End Final order for schema_upgrade (from version: 10.2.0.2.0) scripts in component: ci *****
    [14-04-2008 11:01:45]
    executing ci recreation scripts
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for recreate scripts in component: ci *****
    [14-04-2008 11:01:45] ***** End Final order for recreate scripts in component: ci *****
    [14-04-2008 11:01:45]
    executing core pre data upgrade scripts from versio
    n 10.2.0.2.0
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for pre_data_upgrade (from version: 10.2.0.2.0) scripts in component: core *****
    [14-04-2008 11:01:45] ***** End Final order for pre_data_upgrade (from version: 10.2.0.2.0) scripts in component: core *****
    [14-04-2008 11:01:45]
    executing core data upgrade scripts from version 10.2.0.2.0
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for data_upgrade (from version: 10.2.0.2.0) scripts in component: core *****
    [14-04-2008 11:01:45] ***** End Final order for data_upgrade (from version: 10.2.0.2.0) scripts in component: core *****
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for post_data_upgrade: scripts in component: core *****
    [14-04-2008 11:01:45] ***** End Final order for post_data_upgrade: scripts in component: core *****
    [14-04-2008 11:01:45]
    executing db pre data upgrade scripts from versio
    n 10.2.0.2.0
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for pre_data_upgrade (from version: 10.2.0.2.0) scripts in component: db *****
    [14-04-2008 11:01:45] ***** End Final order for pre_data_upgrade (from version: 10.2.0.2.0) scripts in component: db *****
    [14-04-2008 11:01:45]
    executing db data upgrade scripts from version 10.2.0.2.0
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for data_upgrade (from version: 10.2.0.2.0) scripts in component: db *****
    [14-04-2008 11:01:45] ***** End Final order for data_upgrade (from version: 10.2.0.2.0) scripts in component: db *****
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for post_data_upgrade: scripts in component: db *****
    [14-04-2008 11:01:45] ***** End Final order for post_data_upgrade: scripts in component: db *****
    [14-04-2008 11:01:45]
    running post_creation process for component pa
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for post_create scripts in component: pa *****
    [14-04-2008 11:01:45] ***** End Final order for post_create scripts in component: pa *****
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for outofbox scripts in component: pa *****
    [14-04-2008 11:01:45] ***** End Final order for outofbox scripts in component: pa *****
    [14-04-2008 11:01:45]
    running post_creation process for component connector
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for post_create scripts in component: connector *****
    [14-04-2008 11:01:45] ***** End Final order for post_create scripts in component: connector *****
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for outofbox scripts in component: connector *****
    [14-04-2008 11:01:45] ***** End Final order for outofbox scripts in component: connector *****
    [14-04-2008 11:01:45]
    executing ias pre data upgrade scripts from versio
    n 10.2.0.2.0
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for pre_data_upgrade (from version: 10.2.0.2.0) scripts in component: ias *****
    [14-04-2008 11:01:45] ***** End Final order for pre_data_upgrade (from version: 10.2.0.2.0) scripts in component: ias *****
    [14-04-2008 11:01:45]
    executing ias data upgrade scripts from version 10.2.0.2.0
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for data_upgrade (from version: 10.2.0.2.0) scripts in component: ias *****
    [14-04-2008 11:01:45] ***** End Final order for data_upgrade (from version: 10.2.0.2.0) scripts in component: ias *****
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for post_data_upgrade: scripts in component: ias *****
    [14-04-2008 11:01:45] ***** End Final order for post_data_upgrade: scripts in component: ias *****
    [14-04-2008 11:01:45]
    component integic is already at 10.2.0.2.0
    skipping integic data upgrade
    component sso_server is already at 10.2.0.2.0
    skipping sso_server data upgrade
    component bc4j is already at 10.2.0.2.0
    skipping bc4j data upgrade
    component forms is already at 10.2.0.2.0
    skipping forms data upgrade
    component wireless is already at 10.2.0.2.0
    skipping wireless data upgrade
    component workflow is already at 10.2.0.2.0
    skipping workflow data upgrade
    executing ocs pre data upgrade scripts from versio
    n 10.2.0.2.0
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for pre_data_upgrade (from version: 10.2.0.2.0) scripts in component: ocs *****
    [14-04-2008 11:01:45] ***** End Final order for pre_data_upgrade (from version: 10.2.0.2.0) scripts in component: ocs *****
    [14-04-2008 11:01:45]
    executing ocs data upgrade scripts from version 10.2.0.2.0
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for data_upgrade (from version: 10.2.0.2.0) scripts in component: ocs *****
    [14-04-2008 11:01:45] ***** End Final order for data_upgrade (from version: 10.2.0.2.0) scripts in component: ocs *****
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for post_data_upgrade: scripts in component: ocs *****
    [14-04-2008 11:01:45] ***** End Final order for post_data_upgrade: scripts in component: ocs *****
    [14-04-2008 11:01:45]
    component portal is already at 10.2.0.2.0
    skipping portal data upgrade
    component integrationbpm is already at 10.2.0.2.0
    skipping integrationbpm data upgrade
    component integrationbam is already at 10.2.0.2.0
    skipping integrationbam data upgrade
    component discoverer is already at 10.2.0.2.0
    skipping discoverer data upgrade
    executing pp pre data upgrade scripts from versio
    n 10.2.0.2.0
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for pre_data_upgrade (from version: 10.2.0.2.0) scripts in component: pp *****
    [14-04-2008 11:01:45] ***** End Final order for pre_data_upgrade (from version: 10.2.0.2.0) scripts in component: pp *****
    [14-04-2008 11:01:45]
    executing pp data upgrade scripts from version 10.2.0.2.0
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for data_upgrade (from version: 10.2.0.2.0) scripts in component: pp *****
    [14-04-2008 11:01:45] ***** End Final order for data_upgrade (from version: 10.2.0.2.0) scripts in component: pp *****
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for post_data_upgrade: scripts in component: pp *****
    [14-04-2008 11:01:45] ***** End Final order for post_data_upgrade: scripts in component: pp *****
    [14-04-2008 11:01:45]
    component ifs is already at 10.2.0.2.0
    skipping ifs data upgrade
    component repserv is already at 10.2.0.2.0
    skipping repserv data upgrade
    running post_creation process for component beehive
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for post_create scripts in component: beehive *****
    [14-04-2008 11:01:45] ***** End Final order for post_create scripts in component: beehive *****
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for outofbox scripts in component: beehive *****
    [14-04-2008 11:01:45] ***** End Final order for outofbox scripts in component: beehive *****
    [14-04-2008 11:01:45]
    running post_creation process for component content
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for post_create scripts in component: content *****
    [14-04-2008 11:01:45] ***** End Final order for post_create scripts in component: content *****
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for outofbox scripts in component: content *****
    [14-04-2008 11:01:45] ***** End Final order for outofbox scripts in component: content *****
    [14-04-2008 11:01:45]
    component integb2b is already at 10.2.0.2.0
    skipping integb2b data upgrade
    executing ci pre data upgrade scripts from versio
    n 10.2.0.2.0
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for pre_data_upgrade (from version: 10.2.0.2.0) scripts in component: ci *****
    [14-04-2008 11:01:45] ***** End Final order for pre_data_upgrade (from version: 10.2.0.2.0) scripts in component: ci *****
    [14-04-2008 11:01:45]
    executing ci data upgrade scripts from version 10.2.0.2.0
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for data_upgrade (from version: 10.2.0.2.0) scripts in component: ci *****
    [14-04-2008 11:01:45] ***** End Final order for data_upgrade (from version: 10.2.0.2.0) scripts in component: ci *****
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45]
    [14-04-2008 11:01:45] ***** Start Final order for post_data_upgrade: scripts in component: ci *****
    [14-04-2008 11:01:45] ***** End Final order for post_data_upgrade: scripts in component: ci *****
    [14-04-2008 11:01:45]
    Return code = 0
    *** running TransX for files under e:/oraclehome/oms10g/sysman/admin/emdrep/rsc ***
    using transx command line :
    e:/oraclehome/oms10g/jdk/bin/java -cp e:/oraclehome/oms10g/lib/oraclexsql.jar;e:/oraclehome/oms10g/lib/transx.zip;e:/oraclehome/oms10g/xdk/lib/transx.zip;e:/oraclehome/oms10g/lib/xml.jar;e:/oraclehome/oms10g/lib/xmlparserv2.jar;e:/oraclehome/oms10g/lib/xschema.jar;e:/oraclehome/oms10g/lib/xsu12.jar;e:/oraclehome/oms10g/rdbms/jlib/xdb.jar;e:/oraclehome/oms10g/jdk/lib/dt.jar;e:/oraclehome/oms10g/oc4j/jdbc/lib/orai18n.jar;e:/oraclehome/oms10g/jdbc/lib/ojdbc14.jar;e:/oraclehome/oms10g/emcore/classes/debug;e:/oraclehome/oms10g/emcore/lib/emCORE.jar;e:/oraclehome/oms10g/sysman/jlib/emCORE.jar;e:/oraclehome/oms10g/oc4j/jdbc/lib/ojdbc14.jar;e:/oraclehome/oms10g/oc4j/jdbc/lib/ojdbc14dms.jar;e:/oraclehome/oms10g/jdbc/lib/ojdbc5.jar;e:/oraclehome/oms10g/jdbc/lib/ojdbc5dms.jar;e:/oraclehome/oms10g/oc4j/lib/dms.jar;e:/oraclehome/oms10g/oc4j/jdbc/lib/dms.jar;e:/oraclehome/oms10g/dms/lib/dms.jar oracle.sysman.emdrep.util.TransxWrapper 2>> E:/OracleHome/oms10g/sysman/log/emrepmgr.log.10.2.0.4.0
    Found Metadata File: e:/oraclehome/oms10g/sysman/admin/emdrep/sql/core/latest/test_metadata/core.def
    Adding e:/oraclehome/oms10g/oc4j/jdbc/lib/ojdbc14dms.jar
    Adding e:/oraclehome/oms10g/oc4j/lib/dms.jar
    Adding e:/oraclehome/oms10g/oc4j/jdbc/lib/orai18n.jar
    Adding e:/oraclehome/oms10g/jdbc/lib/ojdbc14.jar
    Adding e:/oraclehome/oms10g/sysman/jlib/emCORE.jar
    Adding e:/oraclehome/oms10g/sysman/jlib/log4j-core.jar
    Adding e:/oraclehome/oms10g/lib/servlet.jar
    Adding e:/oraclehome/oms10g/jdbc/lib/orai18n.jar
    Adding e:/oraclehome/oms10g/sysman/jlib/emagentSDK.jar
    Running oracle.sysman.eml.gensvc.test.data.SeedMetadata
    ExecJava: Running e:/oraclehome/oms10g/jdk/bin/java -cp "e:/oraclehome/oms10g/oc4j/jdbc/lib/ojdbc14dms.jar;e:/oraclehome/oms10g/oc4j/lib/dms.jar;e:/oraclehome/oms10g/oc4j/jdbc/lib/orai18n.jar;e:/oraclehome/oms10g/jdbc/lib/ojdbc14.jar;e:/oraclehome/oms10g/sysman/jlib/emCORE.jar;e:/oraclehome/oms10g/sysman/jlib/log4j-core.jar;e:/oraclehome/oms10g/lib/servlet.jar;e:/oraclehome/oms10g/jdbc/lib/orai18n.jar;e:/oraclehome/oms10g/sysman/jlib/emagentSDK.jar" oracle.sysman.eml.gensvc.test.data.SeedMetadata Connection Descriptor: (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=VMORACLE01)(PORT=1521)))(CONNECT_DATA=(SID=rep)))
    HTTP Test Inserted Successfully
    Successfully Added HTTP Query Descriptors
    DHTML Test Inserted Successfully
    Successfully Added DHTML Query Descriptors
    HTTPPING Test Inserted Successfully
    Ping Test Inserted Successfully
    Successfully Added PING Query Descriptors
    DNS Test Inserted Successfully
    Successfully Added DNS Query Descriptors
    FTP Test Inserted Successfully
    Successfully Added FTP Query Descriptors
    Port Test Inserted Successfully
    Successfully Added Port Query Descriptors
    TNS Test Inserted Successfully
    Successfully Added TNS Query Descriptors
    SQLT Test Inserted Successfully
    Successfully Added SQLT Query Descriptors
    JDBC Test Inserted Successfully
    Successfully Added JDBC Query Descriptors
    Forms Test Inserted Successfully
    Successfully Added Forms Query Descriptors
    OS Test Inserted Successfully
    Successfully Added OS Query Descriptors
    Creating imap, smtp, ldap, pop, soap test types
    ******** ORACLE_HOME is e:/oraclehome/oms10g
    test properties path: e:/oraclehome/oms10g\sysman\admin\emdrep\prop\imap.properties
    CreateTestType:createTestMetadataObject: BEGIN
    Enabled test for: IMAP generic_service 1.0
    CreateTestType:createCompleteTest: END
    ******** ORACLE_HOME is e:/oraclehome/oms10g
    test properties path: e:/oraclehome/oms10g\sysman\admin\emdrep\prop\smtp.properties
    CreateTestType:createTestMetadataObject: BEGIN
    Enabled test for: SMTP generic_service 1.0
    CreateTestType:createCompleteTest: END
    ******** ORACLE_HOME is e:/oraclehome/oms10g
    test properties path: e:/oraclehome/oms10g\sysman\admin\emdrep\prop\ldap.properties
    CreateTestType:createTestMetadataObject: BEGIN
    Enabled test for: LDAP generic_service 1.0
    CreateTestType:createCompleteTest: END
    ******** ORACLE_HOME is e:/oraclehome/oms10g
    test properties path: e:/oraclehome/oms10g\sysman\admin\emdrep\prop\pop.properties
    CreateTestType:createTestMetadataObject: BEGIN
    Enabled test for: POP generic_service 1.0
    CreateTestType:createCompleteTest: END
    ******** ORACLE_HOME is e:/oraclehome/oms10g
    test properties path: e:/oraclehome/oms10g\sysman\admin\emdrep\prop\nntp.properties
    CreateTestType:createTestMetadataObject: BEGIN
    Enabled test for: NNTP generic_service 1.0
    CreateTestType:createCompleteTest: END
    ******** ORACLE_HOME is e:/oraclehome/oms10g
    test properties path: e:/oraclehome/oms10g\sysman\admin\emdrep\prop\soap.properties
    CreateTestType:createTestMetadataObject: BEGIN
    Enabled test for: SOAP generic_service 1.0
    CreateTestType:createCompleteTest: END
    ******** ORACLE_HOME is e:/oraclehome/oms10g
    test properties path: e:/oraclehome/oms10g\sysman\admin\emdrep\prop\siebel.properties
    CreateTestType:createTestMetadataObject: BEGIN
    CreateTestType:createCompleteTest: END
    Found Metadata File: e:/oraclehome/oms10g/sysman/admin/emdrep/sql/ocs/latest/test_metadata/test_metadata_cs.def
    Adding e:/oraclehome/oms10g/jdbc/lib/ojdbc14.jar
    Adding e:/oraclehome/oms10g/sysman/jlib/emCORE.jar
    Adding e:/oraclehome/oms10g/sysman/jlib/log4j-core.jar
    Adding e:/oraclehome/oms10g/lib/servlet.jar
    Adding e:/oraclehome/oms10g/jdbc/lib/orai18n.jar
    Adding e:/oraclehome/oms10g/sysman/jlib/emagentSDK.jar
    Adding e:/oraclehome/oms10g/sysman/jlib/emcs.jar
    Running oracle.sysman.ocs.test.data.OCSSeedMetadata
    ExecJava: Running e:/oraclehome/oms10g/jdk/bin/java -cp "e:/oraclehome/oms10g/jdbc/lib/ojdbc14.jar;e:/oraclehome/oms10g/sysman/jlib/emCORE.jar;e:/oraclehome/oms10g/sysman/jlib/log4j-core.jar;e:/oraclehome/oms10g/lib/servlet.jar;e:/oraclehome/oms10g/jdbc/lib/orai18n.jar;e:/oraclehome/oms10g/sysman/jlib/emagentSDK.jar;e:/oraclehome/oms10g/sysman/jlib/emcs.jar" oracle.sysman.ocs.test.data.OCSSeedMetadata Connection Descriptor: (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=VMORACLE01)(PORT=1521)))(CONNECT_DATA=(SID=rep)))
    Found Metadata File: e:/oraclehome/oms10g/sysman/admin/emdrep/sql/pa/latest/test_metadata/test_metadata_pa.def
    Adding e:/oraclehome/oms10g/jdbc/lib/ojdbc14.jar
    Adding e:/oraclehome/oms10g/sysman/jlib/emCORE.jar
    Adding e:/oraclehome/oms10g/sysman/jlib/log4j-core.jar
    Adding e:/oraclehome/oms10g/lib/servlet.jar
    Adding e:/oraclehome/oms10g/jdbc/lib/orai18n.jar
    Adding e:/oraclehome/oms10g/sysman/jlib/emagentSDK.jar
    Adding e:/oraclehome/oms10g/j2ee/OC4J_EM/applications/em/em/WEB-INF/lib/empa.jar
    Running oracle.sysman.siebel.test.data.SiebelSeedMetadata
    ExecJava: Running e:/oraclehome/oms10g/jdk/bin/java -cp "e:/oraclehome/oms10g/jdbc/lib/ojdbc14.jar;e:/oraclehome/oms10g/sysman/jlib/emCORE.jar;e:/oraclehome/oms10g/sysman/jlib/log4j-core.jar;e:/oraclehome/oms10g/lib/servlet.jar;e:/oraclehome/oms10g/jdbc/lib/orai18n.jar;e:/oraclehome/oms10g/sysman/jlib/emagentSDK.jar;e:/oraclehome/oms10g/j2ee/OC4J_EM/applications/em/em/WEB-INF/lib/empa.jar" oracle.sysman.siebel.test.data.SiebelSeedMetadata Connection Descriptor: (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=VMORACLE01)(PORT=1521)))(CONNECT_DATA=(SID=rep)))
    Done.
    Running setSchemaStatus: BEGIN EMD_MAINTENANCE.SET_VERSION('_UPGRADE_','0','0','SYSTEM',EMD_MAINTENANCE.G_STATUS_CONFIGURED_READY);END;
    Repository Upgrade Successful.
    INFO: oracle.sysman.top.oms: Command Error:----------
    INFO: oracle.sysman.top.oms:'stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    'stty' is not recognized as an internal or external command,
    operable program or batch file.
    INFO: oracle.sysman.top.oms:Upgrade->Executing Command: CMD /c E:\OracleHome\oms10g\bin\emctl config emkey -repos
    INFO: oracle.sysman.top.oms: Command Exit Code:0
    INFO: oracle.sysman.top.oms: Command Output:----------
    INFO: oracle.sysman.top.oms:Oracle Enterprise Manager 10g Release 4 Grid Control
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    The Em Key has been configured successfully.
    INFO: oracle.sysman.top.oms: Command Error:----------
    INFO: oracle.sysman.top.oms:Please enter repository password:
    INFO: oracle.sysman.top.oms:EmcpPlug:invoke:Completed EmcpPlug invoke method on an aggregate=oracle.sysman.top.oms for Action=patchsetConfiguration in step=1:microstep=0
    INFO: oracle.sysman.top.oms:The plug-in Repository Upgrade has successfully been performed
    INFO: oracle.sysman.top.oms:About to execute plug-in OMS Patch Configuration
    INFO: oracle.sysman.top.oms:The plug-in OMS Patch Configuration is running
    INFO: oracle.sysman.top.oms:Internal PlugIn Class: oracle.sysman.emcp.oms.OmsPatchUpgrade
    INFO: oracle.sysman.top.oms:Classpath = E:\OracleHome\oms10g\sysman\jlib\omsPlug.jar;E:\OracleHome\oms10g\jlib\emConfigInstall.jar;E:\OracleHome\oms10g\sysman\jlib\emCORE.jar;E:\OracleHome\oms10g\sysman\jlib\emagentSDK.jar;E:\OracleHome\oms10g\sysman\jlib\log4j-core.jar;E:\OracleHome\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=2:microstep=0
    INFO: oracle.sysman.top.oms:inside perform
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Performing Command=CMD /C E:\OracleHome\oms10g\opmn\bin\opmnctl stopall
    INFO: oracle.sysman.top.oms:Stop Opmn Error = CMD /C E:\OracleHome\oms10g\opmn\bin\opmnctl stopall
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:CMD /C E:\OracleHome\oms10g\opmn\bin\opmnctl stopall have completed with exitCode=2
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stdout:
    'opmnctl: opmn is not running
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stderr:
    INFO: oracle.sysman.top.oms:stopOpmnService:WINDOWS:status=2. Ignoring OpmnStatus='opmnctl: opmn is not running
    INFO: oracle.sysman.top.oms:stoping the Opms services
    INFO: oracle.sysman.top.oms:OmsPlugIn:Requested Configuration Step 0 have been completed with status=true
    INFO: oracle.sysman.top.oms:the value of OMS home isE:\OracleHome\oms10g
    INFO: oracle.sysman.top.oms:b_deployed is false
    INFO: oracle.sysman.top.oms:Starting Oms deploying
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Performing Command=CMD /C E:\OracleHome\oms10g\bin\EMDeploy.bat
    INFO: oracle.sysman.top.oms:EMDeploy Error = CMD /C E:\OracleHome\oms10g\bin\EMDeploy.bat
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:CMD /C E:\OracleHome\oms10g\bin\EMDeploy.bat have completed with exitCode=2
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stdout:
    'Environment :
    ORACLE HOME = e:\oraclehome\oms10g
    STAGE DIR = e:\oraclehome\oms10g/j2ee/OC4J_EM/applications/em
    TEMP DIR = C:\Temp\1
    PSEP = ;
    Info : e:\oraclehome\oms10g/lib/ojsp.jar doesn't exist
    Info : e:\oraclehome\oms10g/lib/ojsputil.jar doesn't exist
    Info : e:\oraclehome\oms10g/syndication/lib/syndserver.jar doesn't exist
    Info : e:\oraclehome\oms10g/rdbms/jlib/xsu12.jar doesn't exist
    Info : e:\oraclehome\oms10g/network/jlib/netcfg4em12.jar doesn't exist
    Info : e:\oraclehome\oms10g/encryption/jlib/ojmisc.jar doesn't exist
    adding <classpath path="e:\oraclehome\oms10g/lib/ojsp.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/webservices/lib/wsdl.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/lib/dsv2.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/lib/classgen.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/rdbms/jlib/jmscommon.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/lib/ojsputil.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/lib/oraclexsql.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/jlib/providerutil.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/syndication/lib/syndserver.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/lib/xschema.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/rdbms/jlib/xsu12.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/jlib/regexp.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/oui/jlib/OraInstaller.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/network/jlib/netcfg4em12.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/encryption/jlib/ojmisc.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/jlib/orai18n.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/portal/jlib/pdkjava.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/portal/jlib/ptlshare.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/jlib/share.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/jlib/uix2.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/jlib/ohw.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/jlib/commons-el.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/jlib/jsp-el-api.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/jlib/oracle-el.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/jlib/axis.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/jlib/axis-ant.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/jlib/commons-discovery-0.2.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/jlib/commons-logging-1.0.4.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/jlib/jaxrpc.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/jlib/saaj.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/jlib/wsdl4j-1.5.1.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/jdk/lib/tools.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emCORE.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emCfg.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emPid.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emProvisioningAll.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emSDKsamples.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emcliload.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emclidownload.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emcoreALL.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emcoreAgent.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emcoreTest.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emcore_emjsp.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emcore_emjspf_classes.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emdloader.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emagentSDK.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emagentTest.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/iview.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/jviewsall.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/qsma.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/svgdom.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/omsPlug.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/lib/xml.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/lib/xmlmesg.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/jcb.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/log4j-core.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/jlib/emConfigInstall.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emDB.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emdb_emjsp.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/ewm-1_1.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emas.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emasSDK.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emas_emdjsp.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emas_emjsp.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emd_java.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/webapps/emd/WEB-INF/lib/iview.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emcs_emdjsp.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emcs_emjsp.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emcs.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/emcsSDK.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/prov/agentpush/jlib/remoteinterfaces.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/prov/agentpush/jlib/ssh.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/prov/agentpush/jlib/jsch.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/j2ee/agentpush.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/j2ee/asprovALL.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/j2ee/bpelprovALL.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/j2ee/collabsuiteuser.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/j2ee/dnALL.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/j2ee/ecALL.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/j2ee/ejb-prov.jar"/> to orion-web.xml
    adding <classpath path="e:\oraclehome\oms10g/sysman/jlib/j2ee/empp_emjsp.jar"/> to orion-web.xml
    adding

    no update yet. I'm gonna run the tool that is suggested, but I have no other issues with any previous patch. I thought the content of the file I added to my post would have ring a bell to somebody, who had the same problem, but it seems like I was wrong. I'll post once I run the tool suggested in the note
    thx all

  • Silent Installation of Additional OMS 10.2.0.4 with 11.1.0.7 repo fails...

    Followed instructions from the OEM Installation and Basic Configuration guide E10953-04 - Software Only Installation...
    In the section 'Temporary update of the Repository Core Version' I changed the version to 10.2.0.1.0
    When trying to install additional OMS on Linux x86-64 using silent installation... The installer fails with the below message...
    connectString = xxxxx:xxxx:emdb1
    INFO: 1/17/09 1:09:42 AM EST: Query Returned: 11.1.0.7.0
    1/17/09 1:09:43 AM EST: User Selected: S&top installation of this component only.
    1/17/09 1:09:43 AM EST: Invalid version: To be used for the Management Repository, the database must be version 9.2.0.6.0, or version 10.1.0.3.0 or higher.
    1/17/09 1:09:43 AM EST: This silent installation was unsuccessful.
    Any Ideas...

    Directly pointy to 11G database is not supported, you have to go by note 467677.1

  • I can't find the db infomation in the oms

    HI ALL:
    pls help me,on server A,I have installed the 10g Grid Control,including the oms ,agent and a new database,other,server B,i hava installed a database and a agent.
    my question is that,in the EM,the server A's DB infomation is displayed,but the server B's db infomation can't display only the server B's host infomation.
    execute the command,find follow:
    server A:
    OMS STATUS:
    oracle@mmDB /opt/oracle/OracleHomes/oms10g/bin$./emctl status oms
    Oracle Enterprise Manager 10g Release 10.2.0.1.0
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    Oracle Management Server is Up.
    AGENT STATUS:
    oracle@mmDB /opt/oracle/OracleHomes/agent10g/bin$./emctl status agent
    Oracle Enterprise Manager 10g Release 10.2.0.1.0.
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    Agent Version : 10.2.0.1.0
    OMS Version : 10.2.0.1.0
    Protocol Version : 10.2.0.0.0
    Agent Home : /opt/oracle/OracleHomes/agent10g
    Agent binaries : /opt/oracle/OracleHomes/agent10g
    Agent Process ID : 17647
    Parent Process ID : 17630
    Agent URL : https://mmDB:3872/emd/main/
    Repository URL : https://mmDB:1159/em/upload
    Started at : 2006-10-12 11:08:14
    Started by user : oracle
    Last Reload : 2006-10-12 11:08:23
    Last successful upload : 2006-10-12 11:53:38
    Total Megabytes of XML files uploaded so far : 3.62
    Number of XML files pending upload : 0
    Size of XML files pending upload(MB) : 0.00
    Available disk space on upload filesystem : 74.21%
    Last successful heartbeat to OMS : 2006-10-12 11:53:22
    Agent is Running and Ready
    server B:
    AGENT STATUS:
    oracle@testdb /opt/oracle/OMS/agent10g/bin$./emctl status agent
    Oracle Enterprise Manager 10g Release 10.2.0.1.0.
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    Agent Version : 10.2.0.1.0
    OMS Version : 10.2.0.1.0
    Protocol Version : 10.2.0.0.0
    Agent Home : /opt/oracle/OMS/agent10g
    Agent binaries : /opt/oracle/OMS/agent10g
    Agent Process ID : 30359
    Parent Process ID : 30339
    Agent URL : https://testdb:3872/emd/main/
    Repository URL : https://mmDB:1159/em/upload
    Started at : 2006-10-12 10:52:42
    Started by user : oracle
    Last Reload : 2006-10-12 10:52:42
    Last successful upload : 2006-10-12 10:53:28
    Total Megabytes of XML files uploaded so far : 2.06
    Number of XML files pending upload : 0
    Size of XML files pending upload(MB) : 0.00
    Available disk space on upload filesystem : 80.27%
    Last successful heartbeat to OMS : 2006-10-12 10:53:44
    oracle@testdb /opt/oracle/OMS/agent10g/bin$./emctl upload
    Oracle Enterprise Manager 10g Release 10.2.0.1.0.
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    EMD upload completed successfully
    ALL IS fine.but in the em,i can't find the db infomation of the server B

    on the server B,the db version is 9206,
    on the server A,the db version is 10.2.0.1
    check the emagent.trc file,find follows:
    2006-10-12 15:59:25 Thread-16384 ERROR : sched_setaffinity failed, errno 22
    2006-10-12 15:59:25 Thread-16384 ERROR util.files: ERROR: nmeufis_new: failed in lfiopn on file: /opt/oracle/Or
    acleHomes/agent10g/sysman/emd/agntstmp.txt. error = 2 (No such file or directory)
    2006-10-12 15:59:25 Thread-16384 WARN main: clear collection state due to OMS_version difference
    2006-10-12 15:59:25 Thread-16384 WARN command: Job Subsystem Timeout set at 600 seconds
    2006-10-12 15:59:25 Thread-16384 WARN upload: Upload manager has no Failure script: disabled
    2006-10-12 15:59:25 Thread-16384 WARN upload: Recovering left over xml files in upload directory
    2006-10-12 15:59:25 Thread-16384 WARN upload: Recovered 0 left over xml files in upload directory
    2006-10-12 15:59:25 Thread-16384 ERROR upload: Error merging files
    2006-10-12 15:59:25 Thread-16384 ERROR upload: Error merging files
    2006-10-12 15:59:25 Thread-16384 WARN metadata: TABLE metric umsg_imap_user_count can't define table_name: mai
    l_imap_usercount
    2006-10-12 15:59:25 Thread-16384 WARN metadata: Metric umsg_imap_user_count does not have any data columns
    2006-10-12 15:59:25 Thread-16384 WARN metadata: TABLE metric umsg_imap_db_session_count can't define table_nam
    e: umsg_imap_dbconnections
    2006-10-12 15:59:25 Thread-16384 WARN metadata: Metric umsg_imap_db_session_count does not have any data colum
    ns
    2006-10-12 15:59:25 Thread-16384 WARN metadata: TABLE metric umsg_imap_socket_count can't define table_name: u
    msg_imap_socketcount
    2006-10-12 15:59:25 Thread-16384 WARN metadata: Metric umsg_imap_socket_count does not have any data columns
    2006-10-12 15:59:25 Thread-16384 WARN metadata: TABLE metric umsg_imap_connections can't define table_name: ma
    il_imap_connections
    2006-10-12 15:59:25 Thread-16384 WARN metadata: TABLE metric umsg_imap_connections_lost can't define table_nam
    e: umsg_imap_connections_lost
    2006-10-12 15:59:25 Thread-16384 WARN metadata: Metric umsg_imap_connections_lost does not have any data colum
    ns
    2006-10-12 15:59:25 Thread-16384 WARN metadata: TABLE metric umsg_imap_connections_timeout can't define table_
    name: umsg_imap_connections_timeout
    2006-10-12 15:59:25 Thread-16384 WARN metadata: Metric umsg_imap_connections_timeout does not have any data co
    lumns
    2006-10-12 15:59:25 Thread-16384 WARN metadata: TABLE metric umsg_imap_connections_total can't define table_na
    me: umsg_imap_connections_count
    2006-10-12 15:59:25 Thread-16384 WARN metadata: Metric umsg_imap_connections_total does not have any data colu
    mns
    2006-10-12 15:59:25 Thread-16384 WARN metadata: TABLE metric umsg_imap_debug_user_list can't define table_name
    : mail_pop_users_list
    2006-10-12 15:59:25 Thread-16384 WARN metadata: TABLE metric umsg_imap_ds_metrics can't define table_name: mai
    l_imap_functions
    2006-10-12 15:59:25 Thread-16384 WARN metadata: TABLE metric umsg_imap_network can't define table_name: mail_i
    map_network
    2006-10-12 15:59:25 Thread-16384 WARN metadata: TABLE metric umsg_imap_network_receive_bytes can't define tabl
    e_name: umsg_imap_network_receive
    2006-10-12 15:59:25 Thread-16384 WARN metadata: Metric umsg_imap_network_receive_bytes does not have any data
    columns
    2006-10-12 15:59:25 Thread-16384 WARN metadata: TABLE metric umsg_imap_network_transmit_bytes can't define tab
    le_name: umsg_imap_network_transmit
    2006-10-12 15:59:25 Thread-16384 WARN metadata: Metric umsg_imap_network_transmit_bytes does not have any data
    columns
    2006-10-12 15:59:25 Thread-16384 WARN metadata: TABLE metric umsg_imap_command_counts can't define table_name:
    mail_imap_commandcount
    2006-10-12 15:59:25 Thread-16384 WARN metadata: TABLE metric umsg_imap_protocol_metrics can't define table_nam
    e: umsg_imap_frequencytimes
    2006-10-12 15:59:25 Thread-16384 WARN metadata: TABLE metric umsg_sps_metrics can't define table_name: mail_im
    ap_sps
    2006-10-12 15:59:25 Thread-16384 WARN metadata: TABLE metric umsg_uptime can't define table_name: mail_imap_up
    time
    2006-10-12 15:59:25 Thread-16384 WARN metadata: Name FileSystems has already been used
    2006-10-12 15:59:25 Thread-16384 WARN emSDK.xml: <GetTable> can't be added to <ExecutionDescriptor>, it will b
    e freed
    2006-10-12 15:59:25 Thread-16384 WARN metadata: Name FileSystems has already been used
    2006-10-12 15:59:25 Thread-16384 WARN emSDK.xml: <GetTable> can't be added to <ExecutionDescriptor>, it will b
    e freed
    2006-10-12 15:59:25 Thread-16384 WARN metadata: The ValidMidTierVersions for metric DataSources mean that it i
    s not supported for CORE version 10.2.0.0.0. The metric will be discarded.
    2006-10-12 15:59:25 Thread-16384 ERROR metadata: DataSources: TableMetric Validation failed
    2006-10-12 15:59:25 Thread-16384 WARN emSDK.xml: <Metric> can't be added to <TargetMetadata>, it will be freed
    2006-10-12 15:59:25 Thread-16384 WARN metadata: The ValidMidTierVersions for metric NativeDataSources mean tha
    t it is not supported for CORE version 10.2.0.0.0. The metric will be discarded.
    2006-10-12 15:59:25 Thread-16384 ERROR metadata: NativeDataSources: TableMetric Validation failed
    2006-10-12 15:59:25 Thread-16384 WARN emSDK.xml: <Metric> can't be added to <TargetMetadata>, it will be freed
    2006-10-12 15:59:25 Thread-16384 WARN metadata: The ValidMidTierVersions for metric ManagedDataSources mean th
    at it is not supported for CORE version 10.2.0.0.0. The metric will be discarded.
    2006-10-12 15:59:25 Thread-16384 ERROR metadata: ManagedDataSources: TableMetric Validation failed
    2006-10-12 15:59:25 Thread-16384 WARN emSDK.xml: <Metric> can't be added to <TargetMetadata>, it will be freed
    2006-10-12 15:59:25 Thread-16384 WARN metadata: The ValidMidTierVersions for metric ConnectionPools mean that
    it is not supported for CORE version 10.2.0.0.0. The metric will be discarded.
    2006-10-12 15:59:25 Thread-16384 ERROR metadata: ConnectionPools: TableMetric Validation failed
    2006-10-12 15:59:25 Thread-16384 WARN emSDK.xml: <Metric> can't be added to <TargetMetadata>, it will be freed
    2006-10-12 15:59:25 Thread-16384 WARN metadata: The ValidMidTierVersions for metric DataSourcesTopo mean that
    it is not supported for CORE version 10.2.0.0.0. The metric will be discarded.
    2006-10-12 15:59:25 Thread-16384 ERROR metadata: DataSourcesTopo: TableMetric Validation failed
    2006-10-12 15:59:25 Thread-16384 WARN emSDK.xml: <Metric> can't be added to <TargetMetadata>, it will be freed
    2006-10-12 15:59:25 Thread-16384 WARN metadata: The ValidMidTierVersions for metric NativeDataSourcesTopo mean
    that it is not supported for CORE version 10.2.0.0.0. The metric will be discarded.
    2006-10-12 15:59:25 Thread-16384 ERROR metadata: NativeDataSourcesTopo: TableMetric Validation failed
    2006-10-12 15:59:25 Thread-16384 WARN emSDK.xml: <Metric> can't be added to <TargetMetadata>, it will be freed
    2006-10-12 15:59:25 Thread-16384 WARN metadata: The ValidMidTierVersions for metric ConnectionPoolsTopo mean t
    hat it is not supported for CORE version 10.2.0.0.0. The metric will be discarded.
    2006-10-12 15:59:25 Thread-16384 ERROR metadata: ConnectionPoolsTopo: TableMetric Validation failed
    2006-10-12 15:59:25 Thread-16384 WARN emSDK.xml: <Metric> can't be added to <TargetMetadata>, it will be freed
    2006-10-12 15:59:25 Thread-16384 WARN metadata: The ValidMidTierVersions for metric AppRoutingIds mean that it
    is not supported for CORE version 10.2.0.0.0. The metric will be discarded.
    2006-10-12 15:59:25 Thread-16384 ERROR metadata: AppRoutingIds: TableMetric Validation failed
    2006-10-12 15:59:25 Thread-16384 WARN emSDK.xml: <Metric> can't be added to <TargetMetadata>, it will be freed
    2006-10-12 15:59:25 Thread-16384 WARN metadata: The ValidMidTierVersions for metric WebModuleRoutingFlags mean
    that it is not supported for CORE version 10.2.0.0.0. The metric will be discarded.
    2006-10-12 15:59:25 Thread-16384 ERROR metadata: WebModuleRoutingFlags: TableMetric Validation failed
    2006-10-12 15:59:25 Thread-16384 WARN emSDK.xml: <Metric> can't be added to <TargetMetadata>, it will be freed
    2006-10-12 15:59:25 Thread-16384 WARN metadata: The ValidMidTierVersions for metric Oc4jRoutingMode mean that
    it is not supported for CORE version 10.2.0.0.0. The metric will be discarded.
    2006-10-12 15:59:25 Thread-16384 ERROR metadata: Oc4jRoutingMode: TableMetric Validation failed
    2006-10-12 15:59:25 Thread-16384 WARN emSDK.xml: <Metric> can't be added to <TargetMetadata>, it will be freed
    2006-10-12 15:59:25 Thread-16384 WARN metadata: The ValidMidTierVersions for metric RoutingIds mean that it is
    not supported for CORE version 10.2.0.0.0. The metric will be discarded.
    2006-10-12 15:59:25 Thread-16384 ERROR metadata: RoutingIds: TableMetric Validation failed
    2006-10-12 15:59:25 Thread-16384 WARN emSDK.xml: <Metric> can't be added to <TargetMetadata>, it will be freed
    2006-10-12 15:59:25 Thread-16384 WARN engine: File=file:/opt/oracle/OracleHomes/agent10g/sysman/admin/metadata
    /oracle_ovf_ivr.xml,line=398: <InstanceProperty> is not valid element, will be ignored
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric osm_diskGroupPolicies does not have any data columns
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric uptime can't define table_name: mail_pop_uptime
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric debug_usercount can't define table_name: mail_pop
    userslist
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric connections can't define table_name: mail_pop_con
    nections
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric commandcount can't define table_name: mail_pop_co
    mmandcount
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric spsstats can't define table_name: mail_pop_sps
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric usercount can't define table_name: mail_pop_userc
    ount
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric usercount does not have any data columns
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric socketcount can't define table_name: umsg_pop_soc
    ketcount
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric socketcount does not have any data columns
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric frequency_times can't define table_name: umsg_pop
    _frequencytimes
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric userlist can't define table_name: umsg_pop_userli
    st
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric userlist does not have any data columns
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric dbconnections can't define table_name: umsg_pop_d
    bconnections
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric dbconnections does not have any data columns
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric connections_lost can't define table_name: umsg_po
    p_connections_lost
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric connections_lost does not have any data columns
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric connections_timeout can't define table_name: umsg
    popconnections_timeout
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric connections_timeout does not have any data columns
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric connections_total can't define table_name: umsg_p
    op_connections_count
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric connections_total does not have any data columns
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric network_transmit can't define table_name: umsg_po
    p_network_transmit
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric network_transmit does not have any data columns
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric network_receive can't define table_name: umsg_pop
    networkreceive
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric network_receive does not have any data columns
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric Function calls can't define table_name: mail_pop_
    functions
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric uptime can't define table_name: mail_imap_health
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric uptime does not have any data columns
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric uptime can't define table_name: mail_smtpi_health
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric connections can't define table_name: mail_mta_con
    nections
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric connections_current can't define table_name: smtp
    in_connections_current
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric connections_current does not have any data columns
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric transmit can't define table_name: mail_mta_transm
    it
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric receive can't define table_name: mail_mta_receive
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric messages_received can't define table_name: umsg_s
    mtpin_messages_received
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric messages_received does not have any data columns
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric messages_avgsize can't define table_name: umsg_sm
    tpin_messages_avgsize
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric messages_avgdeliverytime can't define table_name:
    umsg_smtpin_messages_avgtime
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric transmission_response can't define table_name: um
    sg_smtpin_transmission_reponse
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric network_connection_total can't define table_name:
    umsg_smtpin_network_connection_total
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric network_connection_total does not have any data columns
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric network_receive_bytes can't define table_name: um
    sg_smtpin_network_receive_bytes
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric network_receive_bytes does not have any data columns
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric messages_receive_dl can't define table_name: umsg
    smtpinmessage_receive_dl
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric messages_receive_dl does not have any data columns
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric messages_deferred can't define table_name: umsg_s
    mtpin_messages_deferred
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric messages_deferred does not have any data columns
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric messages_avgreceip can't define table_name: umsg_
    smtpin_message_avgreceip
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric messages_avgreceip does not have any data columns
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric uptime can't define table_name: mail_smtpo_health
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric connections can't define table_name: mail_mta_con
    nections
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric transmit can't define table_name: mail_mta_transm
    it
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric connections_current can't define table_name: umsg
    smtpoutconnections_current
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric connections_current does not have any data columns
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric messages_transmitted can't define table_name: ums
    g_smtpout_messages_transmitted
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric messages_transmitted does not have any data columns
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric messages_avgsize can't define table_name: umsg_sm
    tpout_messages_avgsize
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric messages_avgdeliverytime can't define table_name:
    umsg_smtpout_messages_avgtime
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric messages_avgdeliverytime_local can't define table
    name: umsgsmtpout_messages_avgtime_local
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric messages_avgdeliverytime_remote can't define tabl
    e_name: umsg_smtpout_messages_avgtime_remote
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric messages_avgrelay_time can't define table_name: u
    msg_smtpout_messages_avgtime_relay
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric delivery_performance can't define table_name: ums
    g_smtpout_delivery_performance
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric relay_performance can't define table_name: umsg_s
    mtpout_messages_avgtime_relay
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric relay_performance does not have any data columns
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric connections_outbound can't define table_name: ums
    g_smtpout_connections_outbound
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric connections_outbound does not have any data columns
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric connections_outbound_local can't define table_nam
    e: umsg_smtpout_connections_outbound_local
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric connections_outbound_local does not have any data colum
    ns
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric connections_outbound_remote can't define table_na
    me: umsg_smtpout_connections_outbound_remote
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric connections_outbound_remote does not have any data colu
    mns
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric transmitted_bytes can't define table_name: umsg_s
    mtpout_transmitted_bytes
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric transmitted_bytes does not have any data columns
    2006-10-12 15:59:26 Thread-16384 WARN metadata: TABLE metric transmission_rate can't define table_name: umsg_s
    mtpout_transmission_rate
    2006-10-12 15:59:26 Thread-16384 WARN metadata: Metric transmission_rate does not have any data columns
    2006-10-12 15:59:26 Thread-16384 DEBUG TargetManager: call nmedt_waitDynPropertyFinish for testdb:3872
    2006-10-12 15:59:26 Thread-114692 DEBUG TargetManager: Computing dynamic properties for {testdb:3872, oracle_em
    d}
    2006-10-12 15:59:26 Thread-114692 DEBUG TargetManager: Computing dynamic property VersionAndLocation of oracle_
    emd,testdb:3872
    2006-10-12 15:59:26 Thread-114692 DEBUG TargetManager: Done with dynamic property evaluation for {testdb:3872,o
    racle_emd}
    2006-10-12 15:59:26 Thread-16384 DEBUG TargetManager: nmedt_waitDynPropertyFinish for testdb:3872, ret=0
    2006-10-12 15:59:26 Thread-16384 DEBUG TargetManager: nmeetm.c:<nmeetm_constructAssocInstancesUsingParent> Ente
    ring function
    2006-10-12 15:59:26 Thread-16384 DEBUG TargetManager: nmeetm.c:<nmeetm_constructAssocInstancesUsingParent>: for
    target {host:testdb} assocName:cluster_instance, assocType:cluster
    2006-10-12 15:59:26 Thread-16384 DEBUG TargetManager: nmeetm.c:<nmeetm_constructAssocInstancesUsingParent>: Exa
    mining target {oracle_emd:testdb:3872} for inclusion as assoc instance for {host:testdb}
    2006-10-12 15:59:26 Thread-16384 DEBUG TargetManager: nmeetm.c:<nmeetm_constructAssocInstancesUsingParent>: ass
    ocTgType cluster and type oracle_emd do not match ignoring
    2006-10-12 15:59:26 Thread-16384 DEBUG TargetManager: nmeetm.c:<nmeetm_constructAssocInstancesUsingParent>: Exa
    mining target {host:testdb} for inclusion as assoc instance for {host:testdb}
    2006-10-12 15:59:26 Thread-16384 DEBUG TargetManager: nmeetm.c:<nmeetm_constructAssocInstancesUsingParent>: ass
    ocTgType cluster and type host do not match ignoring
    2006-10-12 15:59:26 Thread-16384 DEBUG TargetManager: call nmedt_waitDynPropertyFinish for testdb
    2006-10-12 15:59:26 Thread-131076 DEBUG TargetManager: Computing dynamic properties for {testdb, host}
    2006-10-12 15:59:26 Thread-131076 DEBUG TargetManager: Computing dynamic property from_cluster of host,testdb
    2006-10-12 15:59:26 Thread-131076 WARN TargetManager: Query returned 0 rows (only one expected) for the dynami
    c property from_cluster
    2006-10-12 15:59:26 Thread-131076 DEBUG TargetManager: Computing dynamic property getCRSVCategory of host,testd
    b
    2006-10-12 15:59:26 Thread-131076 DEBUG TargetManager: Computing dynamic property Config of host,testdb
    2006-10-12 15:59:26 Thread-131076 DEBUG TargetManager: Computing dynamic property HardwareInfo of host,testdb
    2006-10-12 15:59:26 Thread-131076 DEBUG TargetManager: Computing dynamic property esa_dyn_prop of host,testdb
    2006-10-12 15:59:26 Thread-131076 DEBUG TargetManager: Done with dynamic property evaluation for {testdb,host}
    2006-10-12 15:59:26 Thread-16384 DEBUG TargetManager: nmedt_waitDynPropertyFinish for testdb, ret=0
    2006-10-12 15:59:26 Thread-16384 INFO TargetManager: save to targets.xml success
    2006-10-12 15:59:26 Thread-16384 WARN TargetManager: Regenerating all Metadata
    2006-10-12 15:59:27 Thread-16384 DEBUG TargetManager: In getTypeAndNameForHostTarget
    2006-10-12 15:59:27 Thread-16384 DEBUG TargetManager: getTypeAndNameForHostTarget found host, testdb
    2006-10-12 15:59:27 Thread-16384 DEBUG TargetManager: In getTypeAndNameForHostTarget
    2006-10-12 15:59:27 Thread-16384 DEBUG TargetManager: getTypeAndNameForHostTarget found host, testdb
    2006-10-12 15:59:27 Thread-16384 INFO TargetManager: TargetManager initialized
    2006-10-12 15:59:27 Thread-16384 DEBUG TargetManager: In getTypeAndNameForHostTarget
    2006-10-12 15:59:27 Thread-16384 DEBUG TargetManager: getTypeAndNameForHostTarget found host, testdb
    2006-10-12 15:59:27 Thread-16384 WARN collector: Regenerating all DefaultColls
    2006-10-12 15:59:27 Thread-16384 ERROR collector: nmecs_validateStateFile(): state file /opt/oracle/OracleHomes
    /agent10g/sysman/emd/state/snapshot invalid, backing up and wiping state
    2006-10-12 15:59:27 Thread-16384 ERROR collector: Collector state files cleaned, severity will be resent
    2006-10-12 15:59:27 Thread-16384 INFO TargetManager: save to targets.xml success
    2006-10-12 15:59:27 Thread-163847 ERROR upload: Error in uploadXMLFiles. Trying again in 60.00 seconds or earl
    ier.

  • OMS showing agent unreachable but agent is up

    Greetings !!!!!!!!!!!!!
    When I open the targets I see that for this particular host it is showing agent unreachable but if I do following on hte machine where agent is running I get:
    $ /u01/app/oracle/product/10.2/agent/agent10g/bin/emctl status agent -secure
    Oracle Enterprise Manager 10g Release 3 Grid Control 10.2.0.3.0.
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    Checking the security status of the Agent at location set in /u01/app/oracle/product/10.2/agent/agent10g/sysman/config/emd.properties... Done.
    Agent is secure at HTTPS Port 3872.
    Checking the security status of the OMS at http://grid:4889/em/upload/... Done.
    OMS is secure on HTTPS Port 1159
    oracle : dg01 : @test : /u01/app/oracle
    $
    MAy I know why grid is showing hte agent is not reachable even thought the agent is running and can talk to OMS:
    The following is the output from the agent installation machine:
    $ /u01/app/oracle/product/10.2/agent/agent10g/bin/emctl status agent
    Oracle Enterprise Manager 10g Release 3 Grid Control 10.2.0.3.0.
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    Agent Version : 10.2.0.3.0
    OMS Version : 10.2.0.3.0
    Protocol Version : 10.2.0.2.0
    Agent Home : /u01/app/oracle/product/10.2/agent/agent10g
    Agent binaries : /u01/app/oracle/product/10.2/agent/agent10g
    Agent Process ID : 10105
    Parent Process ID : 10062
    Agent URL : https://dg01:3872/emd/main/
    Repository URL : https://grid:1159/em/upload
    Started at : 2008-06-26 00:36:00
    Started by user : oracle
    Last Reload : 2008-06-26 00:36:00
    Last successful upload : 2008-06-26 06:46:03
    Total Megabytes of XML files uploaded so far : 34.76
    Number of XML files pending upload : 0
    Size of XML files pending upload(MB) : 0.00
    Available disk space on upload filesystem : 40.38%
    Last successful heartbeat to OMS : 2008-06-26 06:54:47
    Agent is Running and Ready
    oracle : dg01 : @test : /u01/app/oracle
    $
    Thanks in Advance
    Regards

    Mohammed, thanks for your time and reply and showing consideration to this thread.
    I bounced the agent and got the following:
    $ /u01/app/oracle/product/10.2/agent/agent10g/bin/emctl stop agent
    Oracle Enterprise Manager 10g Release 3 Grid Control 10.2.0.3.0.
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    Stopping agent ... stopped.
    oracle : dg01 : @test : /u01/app/oracle
    $ /u01/app/oracle/product/10.2/agent/agent10g/bin/emctl start agent
    Oracle Enterprise Manager 10g Release 3 Grid Control 10.2.0.3.0.
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    Starting agent ........ started.
    oracle : dg01 : @test : /u01/app/oracle
    $ /u01/app/oracle/product/10.2/agent/agent10g/bin/emctl status agent
    Oracle Enterprise Manager 10g Release 3 Grid Control 10.2.0.3.0.
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    Agent Version : 10.2.0.3.0
    OMS Version : 10.2.0.3.0
    Protocol Version : 10.2.0.2.0
    Agent Home : /u01/app/oracle/product/10.2/agent/agent10g
    Agent binaries : /u01/app/oracle/product/10.2/agent/agent10g
    Agent Process ID : 11692
    Parent Process ID : 11649
    Agent URL : https://dg01:3872/emd/main/
    Repository URL : https://grid:1159/em/upload
    Started at : 2008-06-26 14:32:46
    Started by user : oracle
    Last Reload : 2008-06-26 14:32:46
    Last successful upload : (none)
    Last attempted upload : (none)
    Total Megabytes of XML files uploaded so far : 0.00
    Number of XML files pending upload : 15
    Size of XML files pending upload(MB) : 6.06
    Available disk space on upload filesystem : 40.30%
    Last successful heartbeat to OMS : 2008-06-26 14:32:50
    Agent is Running and Ready
    oracle : dg01 : @test : /u01/app/oracle
    $ date
    Thu Jun 26 10:04:41 PDT 2008
    oracle : dg01 : @test : /u01/app/oracle
    $
    But even now grid is showing me agent not reachable......
    Here are the files that you requested. Can you please tell me the location of emoms.trc, couldn't find it.
    $ ls -lart
    total 1964
    -rw-r----- 1 oracle dba 0 Jun 23 03:05 emdctl.log
    drwxr-xr-x 12 oracle dba 4096 Jun 23 03:05 ..
    -rw-r----- 1 oracle dba 0 Jun 23 03:11 emagentfetchlet.trc
    -rw-r----- 1 oracle dba 0 Jun 23 03:11 emagentfetchlet.log
    -rw-r----- 1 oracle dba 0 Jun 23 03:11 nfsPatchPlug.log
    drwxr-xr-x 2 oracle dba 4096 Jun 23 07:37 .
    -rw-r----- 1 oracle dba 1086 Jun 23 13:21 agabend.log.lr
    -rw-r----- 1 oracle dba 11132 Jun 26 02:21 secure.log
    -rw-r----- 1 oracle dba 1327 Jun 26 10:02 agabend.log
    -rw-r----- 1 oracle dba 348790 Jun 26 10:02 emdctl.trc
    -rw-r----- 1 oracle dba 70426 Jun 26 10:02 emagent.nohup
    -rw-r----- 1 oracle dba 32998 Jun 26 10:02 emagent.log
    -rw-r----- 1 oracle dba 31408 Jun 26 10:03 emctl.log
    -rw-r----- 1 oracle dba 42996 Jun 26 10:04 emagent_perl.trc
    -rw-r----- 1 oracle dba 1425694 Jun 26 10:05 emagent.trc
    oracle : dg01 : @test : /u01/app/oracle/product/10.2/agent/agent10g/sysman/log
    $
    ========================================================
    $ tail -200 emagent.trc
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: Metric connections_timeout does not have any data columns
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric connections_total can't define table_name: umsg_pop_connections_count
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: Metric connections_total does not have any data columns
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric network_transmit can't define table_name: umsg_pop_network_transmit
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: Metric network_transmit does not have any data columns
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric network_receive can't define table_name: umsg_pop_network_receive
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: Metric network_receive does not have any data columns
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric Function calls can't define table_name: mail_pop_functions
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric siebel_component_sarm_overview can't define table_name: siebel_component_sarm_overview
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric siebel_component_task_overview can't define table_name: siebel_component_task_overview
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric siebel_component_overview can't define table_name: siebel_component_overview
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric siebel_component_resource_overview can't define table_name: siebel_component_resource_overview
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric siebel_component_database_overview can't define table_name: siebel_component_database_overview
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric siebel_component_group_overview can't define table_name: siebel_component_group_overview
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric SiebelSales can't define table_name: SiebelSalesBusinessMetrics
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric SiebelESales can't define table_name: SiebelESalesBusinessMetrics
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric SiebelService can't define table_name: SiebelServiceBusinessMetrics
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric SiebelSelfService can't define table_name: SiebelSelfServiceBusinessMetrics
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric SiebelMarketing can't define table_name: SiebelMarketingBusinessMetrics
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric SiebelPartnerManagement can't define table_name: SiebelPartnerManagementBusinessMetrics
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric SiebelUniversalCustomerMaster can't define table_name: SiebelUniversalCustomerMasterBusinessMetrics
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric SiebelFinancialServices can't define table_name: SiebelFinancialServicesBusinessMetrics
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric siebel_server_database_overview can't define table_name: siebel_server_database_overview
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric siebel_server_resource_overview can't define table_name: siebel_server_resource_overview
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric siebel_server_overview can't define table_name: siebel_server_overview
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric uptime can't define table_name: mail_imap_health
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: Metric uptime does not have any data columns
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric uptime can't define table_name: mail_smtpi_health
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric connections can't define table_name: mail_mta_connections
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric connections_current can't define table_name: smtpin_connections_current
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: Metric connections_current does not have any data columns
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric transmit can't define table_name: mail_mta_transmit
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric receive can't define table_name: mail_mta_receive
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric messages_received can't define table_name: umsg_smtpin_messages_received
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: Metric messages_received does not have any data columns
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric messages_avgsize can't define table_name: umsg_smtpin_messages_avgsize
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric messages_avgdeliverytime can't define table_name: umsg_smtpin_messages_avgtime
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric transmission_response can't define table_name: umsg_smtpin_transmission_reponse
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric network_connection_total can't define table_name: umsg_smtpin_network_connection_total
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: Metric network_connection_total does not have any data columns
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric network_receive_bytes can't define table_name: umsg_smtpin_network_receive_bytes
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: Metric network_receive_bytes does not have any data columns
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric messages_receive_dl can't define table_name: umsg_smtpin_message_receive_dl
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: Metric messages_receive_dl does not have any data columns
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric messages_deferred can't define table_name: umsg_smtpin_messages_deferred
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: Metric messages_deferred does not have any data columns
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric messages_avgreceip can't define table_name: umsg_smtpin_message_avgreceip
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: Metric messages_avgreceip does not have any data columns
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric uptime can't define table_name: mail_smtpo_health
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric connections can't define table_name: mail_mta_connections
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric transmit can't define table_name: mail_mta_transmit
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric connections_current can't define table_name: umsg_smtpout_connections_current
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: Metric connections_current does not have any data columns
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric messages_transmitted can't define table_name: umsg_smtpout_messages_transmitted
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: Metric messages_transmitted does not have any data columns
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric messages_avgsize can't define table_name: umsg_smtpout_messages_avgsize
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric messages_avgdeliverytime can't define table_name: umsg_smtpout_messages_avgtime
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric messages_avgdeliverytime_local can't define table_name: umsg_smtpout_messages_avgtime_local
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric messages_avgdeliverytime_remote can't define table_name: umsg_smtpout_messages_avgtime_remote
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric messages_avgrelay_time can't define table_name: umsg_smtpout_messages_avgtime_relay
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric delivery_performance can't define table_name: umsg_smtpout_delivery_performance
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric relay_performance can't define table_name: umsg_smtpout_messages_avgtime_relay
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: Metric relay_performance does not have any data columns
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric connections_outbound can't define table_name: umsg_smtpout_connections_outbound
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: Metric connections_outbound does not have any data columns
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric connections_outbound_local can't define table_name: umsg_smtpout_connections_outbound_local
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: Metric connections_outbound_local does not have any data columns
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric connections_outbound_remote can't define table_name: umsg_smtpout_connections_outbound_remote
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: Metric connections_outbound_remote does not have any data columns
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric transmitted_bytes can't define table_name: umsg_smtpout_transmitted_bytes
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: Metric transmitted_bytes does not have any data columns
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: TABLE metric transmission_rate can't define table_name: umsg_smtpout_transmission_rate
    2008-06-26 14:32:48 Thread-3086935744 WARN metadata: Metric transmission_rate does not have any data columns
    2008-06-26 14:32:48 Thread-3086935744 INFO TargetManager: nmeetm_setDynPropReComputeParam: Values have been retrieved dynamicPropReComputeInterval = 120 dynamicPropReComputeMaxTries = 4
    2008-06-26 14:32:48 Thread-3086935744 DEBUG TargetManager: call nmedt_waitDynPropertyFinish for dg01:3872
    2008-06-26 14:32:48 Thread-28801952 DEBUG TargetManager: Computing dynamic properties for {dg01:3872, oracle_emd}
    2008-06-26 14:32:48 Thread-28801952 DEBUG TargetManager: Computing dynamic property VersionAndLocation of oracle_emd,dg01:3872
    2008-06-26 14:32:48 Thread-28801952 DEBUG TargetManager: Done with dynamic property evaluation for {dg01:3872,oracle_emd}
    2008-06-26 14:32:48 Thread-3086935744 DEBUG TargetManager: nmedt_waitDynPropertyFinish for dg01:3872, ret=0
    2008-06-26 14:32:48 Thread-3086935744 DEBUG TargetManager: nmeetm.c:<nmeetm_constructAssocInstancesUsingParent> Entering function
    2008-06-26 14:32:48 Thread-3086935744 DEBUG TargetManager: nmeetm.c:<nmeetm_constructAssocInstancesUsingParent>: for target {host:dg01} assocName:cluster_instance, assocType:cluster
    2008-06-26 14:32:48 Thread-3086935744 DEBUG TargetManager: nmeetm.c:<nmeetm_constructAssocInstancesUsingParent>: Examining target {oracle_emd:dg01:3872} for inclusion as assoc instance for {host:dg01}
    2008-06-26 14:32:48 Thread-3086935744 DEBUG TargetManager: nmeetm.c:<nmeetm_constructAssocInstancesUsingParent>: assocTgType cluster and type oracle_emd do not match ignoring
    2008-06-26 14:32:48 Thread-3086935744 DEBUG TargetManager: nmeetm.c:<nmeetm_constructAssocInstancesUsingParent>: Examining target {host:dg01} for inclusion as assoc instance for {host:dg01}
    2008-06-26 14:32:48 Thread-3086935744 DEBUG TargetManager: nmeetm.c:<nmeetm_constructAssocInstancesUsingParent>: assocTgType cluster and type host do not match ignoring
    2008-06-26 14:32:48 Thread-3086935744 DEBUG TargetManager: nmeetm.c:<nmeetm_constructAssocInstancesUsingParent>: Examining target {oracle_listener:LISTENER_dg01} for inclusion as assoc instance for {host:dg01}
    2008-06-26 14:32:48 Thread-3086935744 DEBUG TargetManager: nmeetm.c:<nmeetm_constructAssocInstancesUsingParent>: assocTgType cluster and type oracle_listener do not match ignoring
    2008-06-26 14:32:48 Thread-3086935744 DEBUG TargetManager: nmeetm.c:<nmeetm_constructAssocInstancesUsingParent>: Examining target {oracle_database:test} for inclusion as assoc instance for {host:dg01}
    2008-06-26 14:32:48 Thread-3086935744 DEBUG TargetManager: nmeetm.c:<nmeetm_constructAssocInstancesUsingParent>: assocTgType cluster and type oracle_database do not match ignoring
    2008-06-26 14:32:48 Thread-3086935744 DEBUG TargetManager: nmeetm.c:<nmeetm_constructAssocInstancesUsingParent>: Examining target {osm_instance:+ASM_dg01} for inclusion as assoc instance for {host:dg01}
    2008-06-26 14:32:48 Thread-3086935744 DEBUG TargetManager: nmeetm.c:<nmeetm_constructAssocInstancesUsingParent>: assocTgType cluster and type osm_instance do not match ignoring
    2008-06-26 14:32:48 Thread-3086935744 DEBUG TargetManager: call nmedt_waitDynPropertyFinish for dg01
    2008-06-26 14:32:48 Thread-32218016 DEBUG TargetManager: Computing dynamic properties for {dg01, host}
    2008-06-26 14:32:48 Thread-32218016 DEBUG TargetManager: Computing dynamic property from_cluster of host,dg01
    2008-06-26 14:32:48 Thread-32218016 WARN TargetManager: Query returned 0 rows (only one expected) for the dynamic property from_cluster
    2008-06-26 14:32:48 Thread-32218016 DEBUG TargetManager: Computing dynamic property getCRSVCategory of host,dg01
    2008-06-26 14:32:48 Thread-32218016 DEBUG TargetManager: Computing dynamic property Config of host,dg01
    2008-06-26 14:32:48 Thread-32218016 DEBUG TargetManager: Computing dynamic property HardwareInfo of host,dg01
    2008-06-26 14:32:48 Thread-32218016 DEBUG TargetManager: Computing dynamic property esa_dyn_prop of host,dg01
    2008-06-26 14:32:48 Thread-32218016 DEBUG TargetManager: Done with dynamic property evaluation for {dg01,host}
    2008-06-26 14:32:48 Thread-3086935744 DEBUG TargetManager: nmedt_waitDynPropertyFinish for dg01, ret=0
    2008-06-26 14:32:48 Thread-3086935744 DEBUG TargetManager: call nmedt_waitDynPropertyFinish for LISTENER_dg01
    2008-06-26 14:32:48 Thread-49335200 DEBUG TargetManager: Computing dynamic properties for {LISTENER_dg01, oracle_listener}
    2008-06-26 14:32:48 Thread-49335200 DEBUG TargetManager: Computing dynamic property esaMaxRowCount of oracle_listener,LISTENER_dg01
    2008-06-26 14:32:48 Thread-49335200 DEBUG TargetManager: Done with dynamic property evaluation for {LISTENER_dg01,oracle_listener}
    2008-06-26 14:32:48 Thread-3086935744 DEBUG TargetManager: nmedt_waitDynPropertyFinish for LISTENER_dg01, ret=0
    2008-06-26 14:32:48 Thread-3086935744 ERROR TargetManager: Skipping target {test, oracle_database}: Missing properties - password
    2008-06-26 14:32:48 Thread-3086935744 ERROR TargetManager: Skipping target {+ASM_dg01, osm_instance}: Missing properties - password
    2008-06-26 14:32:48 Thread-3086935744 INFO TargetManager: save to targets.xml success
    2008-06-26 14:32:50 Thread-3086935744 DEBUG TargetManager: In getTypeAndNameForHostTarget
    2008-06-26 14:32:50 Thread-3086935744 DEBUG TargetManager: getTypeAndNameForHostTarget found host, dg01
    2008-06-26 14:32:50 Thread-3086935744 DEBUG TargetManager: In getTypeAndNameForHostTarget
    2008-06-26 14:32:50 Thread-3086935744 DEBUG TargetManager: getTypeAndNameForHostTarget found host, dg01
    2008-06-26 14:32:50 Thread-3086935744 DEBUG TargetManager: In getTypeAndNameForHostTarget
    2008-06-26 14:32:50 Thread-3086935744 DEBUG TargetManager: getTypeAndNameForHostTarget found host, dg01
    2008-06-26 14:32:50 Thread-3086935744 DEBUG TargetManager: In getTypeAndNameForHostTarget
    2008-06-26 14:32:50 Thread-3086935744 DEBUG TargetManager: getTypeAndNameForHostTarget found host, dg01
    2008-06-26 14:32:50 Thread-3086935744 DEBUG TargetManager: In getTypeAndNameForHostTarget
    2008-06-26 14:32:50 Thread-3086935744 DEBUG TargetManager: getTypeAndNameForHostTarget found host, dg01
    2008-06-26 14:32:50 Thread-3086935744 INFO TargetManager: TargetManager initialized
    2008-06-26 14:32:50 Thread-3086935744 DEBUG TargetManager: In getTypeAndNameForHostTarget
    2008-06-26 14:32:50 Thread-3086935744 DEBUG TargetManager: getTypeAndNameForHostTarget found host, dg01
    2008-06-26 14:32:50 Thread-3086935744 WARN collector: MESSAGE_NLSID "Authentication Request Containing Allow Federation Creation by Identity Provider" is too long, truncating to "Authentication Request Containing Allow Federation Creation by I"
    2008-06-26 14:32:50 Thread-3086935744 WARN collector: MESSAGE_NLSID "Authentication Request Containing Allow Federation Creation by Service Provider" is too long, truncating to "Authentication Request Containing Allow Federation Creation by S"
    2008-06-26 14:32:50 Thread-3086935744 WARN collector: MESSAGE_NLSID "Federation Termination Response Sent Successfully by Identity Provider" is too long, truncating to "Federation Termination Response Sent Successfully by Identity Pr"
    2008-06-26 14:32:50 Thread-3086935744 WARN collector: MESSAGE_NLSID "Signed Federation Termination Request Received by Identity Provider" is too long, truncating to "Signed Federation Termination Request Received by Identity Provi"
    2008-06-26 14:32:50 Thread-3086935744 WARN collector: MESSAGE_NLSID "Federation Termination Response Received Successfully by Identity Provider" is too long, truncating to "Federation Termination Response Received Successfully by Identit"
    2008-06-26 14:32:50 Thread-3086935744 WARN collector: MESSAGE_NLSID "Signed Federation Termination Response Received by Identity Provider" is too long, truncating to "Signed Federation Termination Response Received by Identity Prov"
    2008-06-26 14:32:50 Thread-3086935744 WARN collector: MESSAGE_NLSID "Name Registration Response Sent Successfully by Identity Provider" is too long, truncating to "Name Registration Response Sent Successfully by Identity Provide"
    2008-06-26 14:32:50 Thread-3086935744 WARN collector: MESSAGE_NLSID "Name Registration Response Received Successfully by Identity Provider" is too long, truncating to "Name Registration Response Received Successfully by Identity Pro"
    2008-06-26 14:32:50 Thread-3086935744 WARN collector: MESSAGE_NLSID "Federation Termination Response Sent Successfully by Service Provider" is too long, truncating to "Federation Termination Response Sent Successfully by Service Pro"
    2008-06-26 14:32:50 Thread-3086935744 WARN collector: MESSAGE_NLSID "Signed Federation Termination Request Received by Service Provider" is too long, truncating to "Signed Federation Termination Request Received by Service Provid"
    2008-06-26 14:32:50 Thread-3086935744 WARN collector: MESSAGE_NLSID "Federation Termination Response Received Successfully by Service Provider" is too long, truncating to "Federation Termination Response Received Successfully by Service"
    2008-06-26 14:32:50 Thread-3086935744 WARN collector: MESSAGE_NLSID "Signed Federation Termination Response Received by Service Provider" is too long, truncating to "Signed Federation Termination Response Received by Service Provi"
    2008-06-26 14:32:50 Thread-3086935744 WARN collector: MESSAGE_NLSID "Name Registration Response Received Successfully by Service Provider" is too long, truncating to "Name Registration Response Received Successfully by Service Prov"
    2008-06-26 14:32:50 Thread-3086935744 WARN collector: MESSAGE_NLSID "Successful Federation Termination Request Received By Service Provider(%)" is too long, truncating to "Successful Federation Termination Request Received By Service Pr"
    2008-06-26 14:32:50 Thread-3086935744 WARN collector: MESSAGE_NLSID "Successful Federation Termination Request Sent By Service Provider(%)" is too long, truncating to "Successful Federation Termination Request Sent By Service Provid"
    2008-06-26 14:32:50 Thread-3086935744 WARN collector: MESSAGE_NLSID "Successful Name Registration Request Received By Service Provider(%)" is too long, truncating to "Successful Name Registration Request Received By Service Provide"
    2008-06-26 14:32:50 Thread-3086935744 WARN collector: MESSAGE_NLSID "Successful Authentication Request Received By Identity Provider(%)" is too long, truncating to "Successful Authentication Request Received By Identity Provider("
    2008-06-26 14:32:50 Thread-3086935744 WARN collector: MESSAGE_NLSID "Successful Federation Termination Request Received By Identity Provider(%)" is too long, truncating to "Successful Federation Termination Request Received By Identity P"
    2008-06-26 14:32:50 Thread-3086935744 WARN collector: MESSAGE_NLSID "Successful Federation Termination Request Sent By Identity Provider(%)" is too long, truncating to "Successful Federation Termination Request Sent By Identity Provi"
    2008-06-26 14:32:50 Thread-3086935744 WARN collector: MESSAGE_NLSID "Successful Name Registration Request Received By Identity Provider(%)" is too long, truncating to "Successful Name Registration Request Received By Identity Provid"
    2008-06-26 14:32:50 Thread-3086935744 WARN collector: MESSAGE_NLSID "Successful Name Registration Request Sent By Identity Provider(%)" is too long, truncating to "Successful Name Registration Request Sent By Identity Provider(%"
    2008-06-26 14:32:50 Thread-3086935744 INFO TargetManager: save to targets.xml success
    2008-06-26 14:32:50 Thread-32218016 ERROR upload: Error in uploadXMLFiles. Trying again in 60.00 seconds or earlier.
    2008-06-26 14:33:15 Thread-28801952 WARN upload: FxferSend: received http error in header from repository: https://grid:1159/em/upload
    ERROR-100|No space left on device
    2008-06-26 14:33:15 Thread-28801952 ERROR upload: Failed to upload file A0000001.xml, ret = -2
    2008-06-26 14:33:15 Thread-28801952 WARN upload: FxferSend: received http error in header from repository: https://grid:1159/em/upload
    ERROR-100|No space left on device
    2008-06-26 14:33:15 Thread-28801952 ERROR upload: Failed to upload file A0000001.xml, ret = -2
    2008-06-26 14:33:15 Thread-28801952 WARN upload: FxferSend: received http error in header from repository: https://grid:1159/em/upload
    ERROR-100|No space left on device
    2008-06-26 14:33:15 Thread-28801952 ERROR upload: Failed to upload file A0000001.xml, ret = -2
    2008-06-26 14:33:15 Thread-28801952 ERROR upload: 3 Failures in a row for A0000001.xml, we give up
    2008-06-26 14:33:15 Thread-28801952 ERROR upload: Error in uploadXMLFiles. Trying again in 72.00 seconds or earlier.
    2008-06-26 14:33:34 Thread-28801952 WARN upload: FxferSend: received http error in header from repository: https://grid:1159/em/upload
    ERROR-100|No space left on device
    2008-06-26 14:33:34 Thread-28801952 ERROR upload: Failed to upload file A0000001.xml, ret = -2
    2008-06-26 14:33:35 Thread-28801952 WARN upload: FxferSend: received http error in header from repository: https://grid:1159/em/upload
    ERROR-100|No space left on device
    2008-06-26 14:33:35 Thread-28801952 ERROR upload: Failed to upload file A0000001.xml, ret = -2
    2008-06-26 14:33:35 Thread-28801952 WARN upload: FxferSend: received http error in header from repository: https://grid:1159/em/upload
    ERROR-100|No space left on device
    2008-06-26 14:33:35 Thread-28801952 ERROR upload: Failed to upload file A0000001.xml, ret = -2
    2008-06-26 14:33:35 Thread-28801952 ERROR upload: 3 Failures in a row for A0000001.xml, we give up
    2008-06-26 14:33:35 Thread-28801952 ERROR upload: Error in uploadXMLFiles. Trying again in 86.00 seconds or earlier.
    2008-06-26 14:33:50 Thread-32218016 WARN upload: FxferSend: received http error in header from repository: https://grid:1159/em/upload
    ERROR-100|No space left on device
    2008-06-26 14:33:50 Thread-32218016 ERROR upload: Failed to upload file A0000001.xml, ret = -2
    2008-06-26 14:33:50 Thread-32218016 WARN upload: FxferSend: received http error in header from repository: https://grid:1159/em/upload
    ERROR-100|No space left on device
    2008-06-26 14:33:50 Thread-32218016 ERROR upload: Failed to upload file A0000001.xml, ret = -2
    2008-06-26 14:33:51 Thread-32218016 WARN upload: FxferSend: received http error in header from repository: https://grid:1159/em/upload
    ERROR-100|No space left on device
    2008-06-26 14:33:51 Thread-32218016 ERROR upload: Failed to upload file A0000001.xml, ret = -2
    2008-06-26 14:33:51 Thread-32218016 ERROR upload: 3 Failures in a row for A0000001.xml, we give up
    2008-06-26 14:33:51 Thread-32218016 ERROR upload: Error in uploadXMLFiles. Trying again in 103.00 seconds or earlier.
    2008-06-26 14:33:52 Thread-32218016 WARN upload: FxferSend: received http error in header from repository: https://grid:1159/em/upload
    ERROR-100|No space left on device
    2008-06-26 14:33:52 Thread-32218016 ERROR upload: Failed to upload file A0000001.xml, ret = -2
    2008-06-26 14:33:53 Thread-32218016 WARN upload: FxferSend: received http error in header from repository: https://grid:1159/em/upload
    ERROR-100|No space left on device
    2008-06-26 14:33:53 Thread-32218016 ERROR upload: Failed to upload file A0000001.xml, ret = -2
    2008-06-26 14:33:53 Thread-32218016 WARN upload: FxferSend: received http error in header from repository: https://grid:1159/em/upload
    ERROR-100|No space left on device
    2008-06-26 14:33:53 Thread-32218016 ERROR upload: Failed to upload file A0000001.xml, ret = -2
    2008-06-26 14:33:53 Thread-32218016 ERROR upload: 3 Failures in a row for A0000001.xml, we give up
    2008-06-26 14:33:53 Thread-32218016 ERROR upload: Error in uploadXMLFiles. Trying again in 123.00 seconds or earlier.
    2008-06-26 14:35:57 Thread-32218016 WARN upload: FxferSend: received http error in header from repository: https://grid:1159/em/upload
    ERROR-100|No space left on device
    2008-06-26 14:35:57 Thread-32218016 ERROR upload: Failed to upload file A0000001.xml, ret = -2
    2008-06-26 14:35:57 Thread-32218016 WARN upload: FxferSend: received http error in header from repository: https://grid:1159/em/upload
    ERROR-100|No space left on device
    2008-06-26 14:35:57 Thread-32218016 ERROR upload: Failed to upload file A0000001.xml, ret = -2
    2008-06-26 14:35:58 Thread-32218016 WARN upload: FxferSend: received http error in header from repository: https://grid:1159/em/upload
    ERROR-100|No space left on device
    2008-06-26 14:35:58 Thread-32218016 ERROR upload: Failed to upload file A0000001.xml, ret = -2
    2008-06-26 14:35:58 Thread-32218016 ERROR upload: 3 Failures in a row for A0000001.xml, we give up
    2008-06-26 14:35:58 Thread-32218016 ERROR upload: Error in uploadXMLFiles. Trying again in 147.00 seconds or earlier.
    oracle : dg01 : @test : /u01/app/oracle/product/10.2/agent/agent10g/sysman/log
    $

  • Using PL/SQL in OMS Reports

    I've written a pl/sql block report and I'd like to add it to the OMS reports.
    Are there any examples or hints on how to do this ?
    Thanks

    Cloned canned report Oracle Database Configuration Summary.
    Removed all input constraints from query so it reads as follows:
    begin
    declare
    type cursor_type IS REF CURSOR;
    result_cursor_out CURSOR_TYPE;
    tgt_guid_in MGMT_IP_TGT_GUID_ARRAY;
    start_date_in DATE DEFAULT NULL;
    end_date_in DATE DEFAULT NULL;
    query_string VARCHAR(6000);
    begin
    result_cursor_out := ?;
    tgt_guid_in := ?;
    start_date_in := ?;
    end_date_in := ?;
    query_string :=
    'select o.database_name "DATABASE_NAME",
    o.characterset "CHARACTERSET",
    o.instance_name "INSTANCE_NAME",
    o.national_characterset "NATIONAL_CHARACTERSET",
    o.global_name "GLOBAL_NAME",
    o.log_mode "LOG_MODE",
    o.banner "BANNER",
    o.default_temp_tablespace "DEFAULT_TEMP_TABLESPACE"
    from mgmt$db_dbninstanceinfo o ';
    open result_cursor_out for query_string ;
    end;
    end;
    Original report allows target selection from a list of databases, I changed to a blank specific target, since I want an unrestricted listing.
    When I try to run, I get this error:
    Error rendering element. Exception: Closed Statement
    I've tried various ways to get around the error to no avail.
    What did I do incorrectly ?
    Thanks

  • Jdbc theme query problems

    Hi all,
    I'm integrating Oracle Maps (10) in BISE, I've used Navtweq maps with my spatial data and I've created some maps, themes etc.
    Now I'm trying to create some more complex JDBC themes.
    Everything works fine if I use simple query, but I'm not able to create a theme whit more complex queries
    for example I have 3 tables
    m_admin_area2 (with geometric infos)
    tab_supporto1 (a table with all the sales per day and region)
    I want to know all the regions where my sales are incremented by 10% in a specified arch of time
    this is the query :
    select m_admin_area2.geometry, A.corrente, B.precedente,  ((A.corrente-B.precedente)*100/B.precedente) INCREMENT
    FROM
    m_admin_area2,
      Select m_admin_area2.feature_name, m_admin_area2.carto_id, sum
      (tab_supporto1.tot) as corrente
      from tab_supporto1, m_admin_area2
      where m_admin_area2.carto_id = tab_supporto1.carto_id
      and tab_supporto1.data_ordine <= 20071231
      and tab_supporto1.data_ordine > 20061231
      group by m_admin_area2.carto_id, m_admin_area2.feature_name) A ,
      (Select m_admin_area2.feature_name, m_admin_area2.carto_id, sum
      (tab_supporto1.tot) as precedente
      from tab_supporto1, m_admin_area2
      where m_admin_area2.carto_id = tab_supporto1.carto_id
      and tab_supporto1.data_ordine <= 20061231
      and tab_supporto1.data_ordine > 20051231
      group by m_admin_area2.carto_id, m_admin_area2.feature_name ) B
      WHERE m_admin_area2.carto_id = A.carto_id AND m_admin_area2.carto_id = B.carto_id
      AND ((A.corrente-B.precedente)*100/B.precedente)>10The error returned is:
    Cannot process the following response from FOI server:
    <?xml version="1.0" encoding="UTF-8" ?> <oms_error> [Foi Server] foi process error.:Origine dati di mappa [oms] non trovata (map data source not found).</oms_error>
    Thanks,
    Luca
    Message was edited by:
    LukeBk

    Could the error be similar to this:
    JDBC query error
    Hope this helps,
    Dan Abugov (NAVTEQ)

  • Query regarding GRID CONTROL

    Hi,
    I am using Oracle version 10.2.0.1.
    I want to install GRID CONTROL on top of this installation. For this I will be installing OMA(Oracle Management Agent) first.
    My query is, can I straighaway install OMA version 10.2.03 over Oracle database version 10.2.0.1? Or do i need to patch firstly the base oracle database version from 10.2.0.1 to 10.2.0.3 then only I can install OMA version 10.2.0.3 over it.
    Thanks in advance.
    Regards
    Edited by: user12302569 on Sep 9, 2010 4:56 PM

    user12302569 wrote:
    Hi,
    I am using Oracle version 10.2.0.1.
    I want to install GRID CONTROL on top of this installation. For this I will be installing OMA(Oracle Management Agent) first.
    My query is, can I straighaway install OMA version 10.2.03 over Oracle database version 10.2.0.1? Or do i need to patch firstly the base oracle database version from 10.2.0.1 to 10.2.0.3 then only I can install OMA version 10.2.0.3 over it.
    Yes .. you can install OMA and I would suggest you to install 11G agents as they are available now and have more feature. Agent version doesn't depend on database version. An agent can monitor all supported versions of Oracle database(depends on agent version) .
    For agent-monitored targets certification , please check MOS note:
    Oracle Enterprise Manager Grid Control Certification Checker [ID 412431.1]
    What is your OMS version by the way ?
    OMA agent doesn't work standalone and you need to have OEM Grid control installed before installing agent on a target server.
    For OEM Grid , please refer to :
    http://www.oracle.com/technetwork/oem/grid-control/downloads/index.html
    http://www.oracle.com/technetwork/oem/grid-control/documentation/index.html
    Regards
    Rajesh

  • Is there a way to query TNSNames.ora info from OEM repository?

    Hello,
    My project requires me to generate TNSNames.ora from OEM repository.
    Is this possible? Does anyone know how to query this from OEM repository.
    I would need HOST, SID and PORT to generate the file in format being asked.
    Thanks,
    Mihir

    Hi Team,
    The easiest way is to check the output of below command
    OMS_HOME/bin
    emctl config oms -list_repos_details
    The command works for both 11g and 12c
    For EM 11g the output would be like
    Oracle Enterprise Manager 11g Release 1 Grid Control
    Copyright (c) 1996, 2010 Oracle Corporation. All rights reserved.
    Repository Connect Descriptor : (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=xyz.oracle.com)(PORT=1522)))(CONNECT_DATA=(SID=orcl)))
    Repository Host :
    Repository SID :
    Repository User : SYSMAN
    For 12c the output would be like
    $ emctl config oms -list_repos_details
    Oracle Enterprise Manager Cloud Control 12c Release 12.1.0.1.0
    Copyright (c) 1996, 2011 Oracle Corporation. All rights reserved.
    Repository Connect Descriptor : (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=xyz.oracle.com)(PORT=1522)))(CONNECT_DATA=(SID=orcl)))
    Repository User : SYSMAN
    Regards,
    Rahul

  • Ora-00942 when querying object privs

    Hi, I have a OEM 9.2 accessing an Oracle 9.2 instance. When querying object privs I get error 942. All else works OK. I have 07_dictionary_accesibility=true and the OEM user has DBA and select any dictionary privs. oms.nohup does not show anything unusual neither dbsnmp.log . Any ideas?

    there will still be some sys objects that may throw this

  • Error while running a query-Input for variable 'Posting Period is invalid

    Hi All,
    NOTE: This error is only cropping up when I input 12 in the posting period variable selection. If I put in any other value from 1-11 I am not getting any errors. Any ideas why this might be happening?
    I am getting the following error when I try and run a query - "Input for variable 'Posting Period (Single entry, mandatory)' is invalid" - On further clicking on this error the message displayed is as follows -
    Diagnosis
    Variable Posting Period (Single Value Entry, Mandatory) is used as a lower limit (X) and an upper limit () in an interval selection. This limit has the value #.
    System Response
    Procedure
    Enter a different value for variable Posting Period (Single Value Entry, Mandatory). If the value of the other limit is determined by another variable, you can change its value also.
    Procedure for System Administration

    OK.
    Well, if the variable is not used in any interval selection, then I would say "something happened to it".
    I would make a copy of the query and run it to check if I get the same problem with period 12.
       -> If not, something is wrong in the original query (you can proceed as below, if changes to original are permitted).
    If so, then try removing the variable completely from the query and hardcode restriction to 12.
       -> If problem still persists, I would have to do some thinking.
    If problem is gone, then add the variable again. Check.
       -> If problem is back, then the variable "is sick". Only quick thing to do, is to build an identical variable and use that one.
    If problem also happens with the new variable, then it's time to share this experience with someone else and consider raising an OSS.
    Good luck!
    Jacob
    P.S: what fisc year variant are you using?
    Edited by: Jacob Jansen on Jan 25, 2010 8:36 PM

  • Logical database in adhoc query

    Hello All,
    Can anyone tell me what is the logical database in adhoc query?

    Hi
    When you create a query , you have to select an infoset. Infoset can be considered as a source from which data is populated in the Query Fields.
    Infosets are created from Transaction SQ02.
    There can be four methods through which an Infoset can become a source of data:
    1.  Table join ( By joining two or more tables from Data dictionary)
         example: Joining tables PA0001 and PA0006 on Pernr to get a one resultant dataset
    2. Direct read of Basis Table ( Like PA0001 as a source for data in Infoset )
    3. Logical Database ( A Pre-written Program by SAP that extract data from clusters, tables taking care of authorizations and validity periods)
    Example : Logical database PNP, PNPCE (Concurrent Employement),PCH ( LDB for Personnel Development Data)
    Custom Logical DBs can be created in T_Code SE-36.
    4. Data Retrieval by a Program ( Custom code written by ABAP developers which will collect and process data) . This program has a corresponding Structure in data dictionary and the fields of this structure will be used in query)
    Reward Points, if helpful.
    Regards
    Waseem Imran

Maybe you are looking for

  • I cant access my custom library. "error:Package X does not exist".

    First of all, there is nothing wrong with my sourcecode. I've checked it and it runs fine when my client class and the rest of the classes is thrown into the same directory together. Thing is, I have a lot of reusable code,which works, and I have to

  • Nokia 6210 Problems with using Edge (Internet Conn...

    I have a Nokia 6210 phone bought from an authorized Nokia Care Center in Delhi, India two weeks ago.  The software version on the phone is 3.08 dated 11-June 2008. It also mentions custom version as 03.08.c00.01 I am an Airtel Prepaid customer in New

  • Memory Leak in NK.exe

    Hi All, OS: Windows Embedded Compact 7 with updates till Feb 2015. Hardware: AM335x based  Applications running: one serial port application and one tcpclient and tcpserver apps. all are managed (C#) applications I am facing memory leak issue with ou

  • 92010NT_clt.zip

    Is the 92010NT_CLT.ZIP a valid ZIP file. I have downloaded it three times and each time WINZIP indicates it is an invalid ZIP file. I successfully downloaded and unzipped disk 1 - 3. Thanks John.

  • Falult Message Types

    Hi Experts,    We have a scenario like ,  Oracle -PI- Proxy. Once i get the data from oracle and delivery orders will be processed in proxy (ECC). Incase any fault messages are there, i need to send it back to PI. Then PI map to fault message type in