Grid Control in JSP

Support me, to create Grid Control through jsp coding
should able to add, delete, update the rows in grid and also if possible change the colors.

i am create one grid contro in jsp.
grid control features dynamic edit,add records.
so plz help me in your ideas sent my mail id
[email protected]

Similar Messages

  • Data Grid Control +JSP+Sorting

    Hi,
    Can any one help me regarding In JSP by using Data Grid Control to sort columns in table and displayed in same JSP.

    Yes! We can help! Do you have any other questions?
    Edited by: SoulTech2012 on Sep 20, 2008 11:51 AM

  • Error while installing Grid Control 12c (ERROR STREAM: *sys-package-mgr*: skipping bad jar)

    Hi all,
       OS: OEL 6.3 64 bits
       DB: 11.2.0.3
       Grid: 12.1
       While installing Grid Control 12c, the following error appears to me:
    INFO: SaveInvWCCE JRE files in Scratch
    INFO: oracle.installer.mandatorySetup property is set to false, so skipping the execution of additional tools
    INFO: oracle.installer.installUpdates property is set to false, so skipping the checking of updates
    INFO: Config Initialize JRE files in Scratch
    INFO: no env vars set, no envVars.properties file is generated
    INFO: none of the components are configurable
    INFO: This is a shared oracle home or remote nodes are null. No copy required.
    INFO: Adding iterator oracle.sysman.oii.oiif.oiifw.OiifwRootShWCDE
    INFO: Updating the global context
    INFO: Path To 'globalcontext.xml' = /gridControl/WLS/jdk16/install/chainedInstall/globalcontext
    INFO: Since operation was successful, move the current OiicAPISessionDetails to installed list
    INFO: Install Finished at: 2013-07-04_11-12-49-PM
    INFO: The ARU ID found in shiphomeproperties.xml file is 226
    INFO: ARUId present in shiphomeproperties.xml matches with the 64 bit OMS Platforms ARU ID 226, so -d64 is passed for wls install.
    INFO: Executing the command /gridControl/WLS/jdk16/jdk/bin/java   -d64  -Djava.io.tmpdir=/gridControl/WLS/.wlsinstall_temp -Xms128m -Xmx1024m  -jar /u01/binaries//wls/wls1035_generic.jar -mode=silent -silent_xml=/gridControl/WLS/.wlsinstall_temp/wls.xml -log=/u01/oraInventory/logs/installActions2013-07-04_11-07-45PM.log.wls  -log_priority=debug
    INFO: Extracting 0%....................................................................................................100%
    INFO: ERROR STREAM: *sys-package-mgr*: skipping bad jar, '/u01/binaries/wls/wls1035_generic.jar'
    INFO: #
    INFO: # A fatal error has been detected by the Java Runtime Environment:
    INFO: #
    INFO: #  SIGSEGV (0xb) at pc=0x0000003a23689cdc, pid=24834, tid=139710737405696
    INFO: #
    INFO: # JRE version: 6.0_24-b50
    INFO: # Java VM: Java HotSpot(TM) 64-Bit Server VM (19.1-b02 mixed mode linux-amd64 compressed oops)
    INFO: # Problematic frame:
    INFO: # C  [libc.so.6+0x89cdc]
    INFO: #
    INFO: # An error report file with more information is saved as:
    INFO: # /tmp/hs_err_pid24834.log
    INFO: #
    INFO: # If you would like to submit a bug report, please visit:
    INFO: #   http://java.sun.com/webapps/bugreport/crash.jsp
    INFO: #
    INFO: Return value is 134
    INFO: POPUP ERROR:Installation of Oracle WebLogic Server has failed, check log files for more details.
       The line "skipping bad jar, '/u01/binaries/wls/wls1035_generic.jar'" is the one that's worring me. Can it be corrupt? Or it is something else?
       Thanks in advance.

    Its too early to conclude the issue is a bug with out looking into the logs. For the same reason i requested you to open an SR so that we can have a look at the logs and identify the cause.  If you are Oracle employee then you can share the VM details else we need logs to debug this further. If any one from your company can open an sr and share logs then that will be helpful. Can you also check if the shiphome that you downloaded is all correct and checksum/byte matches to what is mentioned on OTN.

  • Grid Format in JSP

    I just wanted to know whether any Grid form is available in JSP to display the result from the database as we do in VB.

    This is the code for database grid control
    <PRE lang=jsp id=pre2 style="MARGIN-TOP: 0px" nd="109"><%@ taglib uri="/WEB-INF/tags/datagrid.tld" prefix="grd" %>
    <%@ page import="java.sql.Connection" %>
    <%@ page import="java.sql.DriverManager" %>
    <%@ page import="java.sql.SQLException" %>
    <%@ page import="com.freeware.gridtag.*" %>
    <%
    int intCurr = 1;
    int intSortOrd = 0;
    String strTmp = null;
    String strSQL = null;
    String strSortCol = null;
    String strSortOrd = "ASC";
    boolean blnSortAsc = true;
    strSQL = "SELECT CLICORPORATION, CLICLIENT, CLIDESCRIPTION, " +
             "CLIENABLED, CLIUPDSTAMP FROM CLIENTMASTER ";
    Connection objCnn    = null;
    Class      objDrvCls = null;
    objDrvCls = Class.forName("oracle.jdbc.driver.OracleDriver");
    objCnn = DriverManager.getConnection("<A class=iAs style="FONT-WEIGHT: normal; FONT-SIZE: 100%; PADDING-BOTTOM: 1px; COLOR: darkgreen; BORDER-BOTTOM: darkgreen 0.07em solid; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" href="#" target=_blank itxtdid="3346226">jdbc</A>:oracle:thin:@Host:port:sid",
                                         "cashincpri", "cashincpri");
    if (objDrvCls != null) objDrvCls = null;
    strTmp = request.getParameter("txtCurr");
    try
      if (strTmp != null)
      intCurr = Integer.parseInt(strTmp);
    catch (NumberFormatException NFEx)
    strSortCol = request.getParameter("txtSortCol");
    strSortOrd = request.getParameter("txtSortAsc");
    if (strSortCol == null) strSortCol = "CLICLIENT";
    if (strSortOrd == null) strSortOrd = "ASC";
    blnSortAsc = (strSortOrd.equals("ASC"));
    %>
    <html>
    <head>
    <title>Grid Tag Demonstration</title>
    <link REL="StyleSheet" HREF="css/GridStyle.css">
    <script LANGUAGE="javascript">
    function doNavigate(pstrWhere, pintTot)
      var strTmp;
      var intPg;
      strTmp = document.frmMain.txtCurr.value;
      intPg = parseInt(strTmp);
      if (isNaN(intPg)) intPg = 1;
      if ((pstrWhere == 'F' || pstrWhere == 'P') && intPg == 1)
        alert("You are already viewing first page!");
        return;
      else if ((pstrWhere == 'N' || pstrWhere == 'L') && intPg == pintTot)
        alert("You are already viewing last page!");
        return;
      if (pstrWhere == 'F')
        intPg = 1;
      else if (pstrWhere == 'P')
        intPg = intPg - 1;
      else if (pstrWhere == 'N')
        intPg = intPg + 1;
      else if (pstrWhere == 'L')
        intPg = pintTot;
      if (intPg < 1) intPg = 1;
      if (intPg > pintTot) intPg = pintTot;
      document.frmMain.txtCurr.value = intPg;
      document.frmMain.submit();
    function doSort(pstrFld, pstrOrd)
      document.frmMain.txtSortCol.value = pstrFld;
      document.frmMain.txtSortAsc.value = pstrOrd;
      document.frmMain.submit();
    </script>
    </head>
    <body>
    <h2>Grid Example</h2>
    <form NAME="frmMain" METHOD="post">
    <grd:dbgrid id="tblStat" name="tblStat" width="100" pageSize="10"
        currentPage="<%=intCurr%>" border="0" cellSpacing="1" cellPadding="2"
        dataMember="<%=strSQL%>" dataSource="<%=objCnn%>" cssClass="gridTable">
    <grd:gridpager imgFirst="images/First.gif" imgPrevious="images/Previous.gif"
          imgNext="images/Next.gif" imgLast="images/Last.gif"/>
    <grd:gridsorter sortColumn="<%=strSortCol%>" sortAscending="<%=blnSortAsc%>"/>
    <grd:rownumcolumn headerText="#" width="5" HAlign="right"/>
    <grd:imagecolumn headerText="" width="5" HAlign="center"
          imageSrc="images/Edit.gif"
          linkUrl="javascript:doEdit('{CLICORPORATION}', '{CLICLIENT}')"
          imageBorder="0" imageWidth="16" imageHeight="16"
          alterText="Click to edit"/>
    <grd:textcolumn dataField="CLICLIENT" headerText="Client"
          width="10" sortable="true"/>
    <grd:textcolumn dataField="CLIDESCRIPTION" headerText="Description"
          width="50" sortable="true"/>
    <grd:decodecolumn dataField="CLIENABLED" headerText="Enabled" width="10"
          decodeValues="Y,N" displayValues="Yes,No" valueSeperator=","/>
    <grd:datecolumn dataField="CLIUPDSTAMP" headerText="Last Updated"
          dataFormat="dd/MM/yyyy HH:mm:ss" width="20"/>
    </grd:dbgrid>
    <input TYPE="hidden" NAME="txtCurr" VALUE="<%=intCurr%>">
    <input TYPE="hidden" NAME="txtSortCol" VALUE="<%=strSortCol%>">
    <input TYPE="hidden" NAME="txtSortAsc" VALUE="<%=strSortOrd%>">
    </form>
    </body>
    </html>
    <%
    try
        if (objCnn != null)
            objCnn.close();
    catch (SQLException SQLExIgnore)
    if (objCnn != null) objCnn = null;
    %>
    </PRE>

  • Error installing Grid Control 11g

    Hi. I'm trying to install Grid Control 11g without success.
    I'm using SuSe Enterprise 10 sp3, already installed weblogic 10.3.2 and created a database instance for repository without problems.
    The installation process fails when reaches the 'OMS configuration' step. Here's the last part of the omsca log file (log says to check the 'omsca_20110209122055.log' file for more info, but it points to itself):
    FINA: Stopped WebTier successfully.
    09-feb-2011 12:45:16 oracle.sysman.omsca.adapter.wls.OMSWLSAdapter adapterDeleteOMS
    FINA: Cleaning up instance directory: /home/oracle/gc_inst/user_projects
    09-feb-2011 12:45:41 oracle.sysman.omsca.adapter.wls.OMSWLSAdapter adapterDeleteOMS
    FINA: Cleaning up instance home directory: /home/oracle/gc_inst/em
    09-feb-2011 12:45:41 oracle.sysman.omsca.adapter.wls.OMSWLSAdapter adapterDeleteOMS
    FINA: Succesfully deleted the oms
    09-feb-2011 12:45:41 oracle.sysman.omsca.adapter.wls.OMSWLSAdapter adapterCleanup
    FINA: The value of infra setup completion is :true
    09-feb-2011 12:45:41 oracle.sysman.omsca.adapter.wls.OMSWLSAdapter adapterCleanup
    FINA: Cleaning the OMS from the repository
    09-feb-2011 12:45:51 oracle.sysman.omsca.adapter.wls.OMSWLSAdapter adapterCleanup
    FINA: Got the Host URL as: null
    09-feb-2011 12:45:51 oracle.sysman.omsca.framework.OMSGenericAdapter postDeployAndReposSetup
    GRAVE: OMSCA-ERR: Fallo de protección de OMS. Consulte el archivo de rastreo:/home/oracle/middleware_home/oms11g/cfgtoollogs/omsca/omsca_20110209122055.log
    09-feb-2011 12:45:51 oracle.sysman.omsca.framework.OMSCAFreshInstall execute
    GRAVE: Securing of OMS failed.
    09-feb-2011 12:45:51 oracle.sysman.omsca.framework.OMSConfigAssistantDriver main
    FINA: Got resultfalse
    Thanks for your help.

    Here it is:
    FINA: Properties: {ListenAddress=consolaoracle.indra.es,ListenPort=7403,NodeManagerHome=/home/oracle/middleware_home/wlserver_10.3/common/emnodemanager20110209122055,StartScriptEnabled=true,StartScriptName=startEMServer.sh,}
    09-feb-2011 12:21:55 oracle.sysman.omsca.util.ProcessOutputReader run
    FINA: Command: /usr/local/jdk1.6.0_18/jre/bin/java -classpath /usr/local/jdk1.6.0_18/jre/lib/rt.jar:/usr/local/jdk1.6.0_18/jre/lib/i18n.jar:/home/oracle/middleware_home/patch_wls1032/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/usr/local/jdk1.6.0_18/lib/tools.jar:/home/oracle/middleware_home/utils/config/10.3/config-launch.jar:/home/oracle/middleware_home/wlserver_10.3/server/lib/weblogic_sp.jar:/home/oracle/middleware_home/wlserver_10.3/server/lib/weblogic.jar:/home/oracle/middleware_home/modules/features/weblogic.server.modules_10.3.2.0.jar:/home/oracle/middleware_home/wlserver_10.3/server/lib/webservices.jar:/home/oracle/middleware_home/modules/org.apache.ant_1.7.0/lib/ant-all.jar:/home/oracle/middleware_home/modules/net.sf.antcontrib_1.0.0.0_1-0b2/lib/ant-contrib.jar:/home/oracle/middleware_home/oms11g/sysman/jlib/emConfig.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.jrf_11.1.1/jrf-api.jar:/home/oracle/middleware_home/oracle_common/common/wlst/resources/jrf-wlst.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.odl_11.1.1/ojdl.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.odl_11.1.1/ojdl2.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.dms_11.1.1/dms.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.dconfig-infra_11.1.1.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.fabriccommon_11.1.1/fabric-common.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.xdk_11.1.0/xmlparserv2.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.xdk_11.1.0/xml.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.wsm.common_11.1.1/wsm-pmlib.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.wsm.common_11.1.1/wsm-policy-core.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.wsm.common_11.1.1/wsm-secpol.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.wsm.common_11.1.1/wsm-dependencies.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.wsm.policies_11.1.1/wsm-seed-policies.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.webservices_11.1.1/orawsdl.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.webservices_11.1.1/mdds.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.webservices_11.1.1/ws_confmbeans.jar:/home/oracle/middleware_home/oracle_common/modules/org.apache.commons.digester_1.7.jar:/home/oracle/middleware_home/oracle_common/../modules/javax.xml.bind_2.1.1.jar:/home/oracle/middleware_home/oracle_common/../modules/javax.activation_1.1.jar:/home/oracle/middleware_home/oracle_common/../modules/javax.xml.stream_1.1.1.0.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.http_client_11.1.1.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.jmx_11.1.1/jmxframework.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.jmx_11.1.1/jmxspi.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.adf.dconfigbeans_11.1.1.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.adf.share.ca_11.1.1/adf-share-base.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.adf.share.ca_11.1.1/adf-share-ca.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.adf.share_11.1.1/adflogginghandler.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.adf.share_11.1.1/adfsharembean.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.adf.share_11.1.1/commons-el.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.adf.share_11.1.1/jsp-el-api.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.adf.share_11.1.1/oracle-el.jar:/home/oracle/middleware_home/oracle_common/common/wlst/resources/auditwlst.jar:/home/oracle/middleware_home/oracle_common/common/wlst/resources/sslconfigwlst.jar:/home/oracle/middleware_home/oracle_common/common/wlst/resources/oamap_help.jar:/home/oracle/middleware_home/oracle_common/common/wlst/resources/ossoiap_help.jar:/home/oracle/middleware_home/oracle_common/common/wlst/resources/jps-wlst.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.auditprovider_11.1.1/jps-wls-auditprovider.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.jps_11.1.1/jps-manifest.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.jps_11.1.1/jps-mbeans.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.jps_11.1.1/jps-upgrade.jar:/home/oracle/middleware_home/oracle_common/modules/oracle.jps_11.1.1/jps-patching.jar:/home/oracle/middleware_home/oracle_common/common/wlst/lib/adf-share-mbeans-wlst.jar:/home/oracle/middleware_home/oracle_common/common/wlst/lib/mdswlst.jar:/home/oracle/middleware_home/oracle_common/common/wlst/resources/auditwlst.jar:/home/oracle/middleware_home/oracle_common/common/wlst/resources/jps-wlst.jar:/home/oracle/middleware_home/oracle_common/common/wlst/resources/jrf-wlst.jar:/home/oracle/middleware_home/oracle_common/common/wlst/resources/oamap_help.jar:/home/oracle/middleware_home/oracle_common/common/wlst/resources/oamAuthnProvider.jar:/home/oracle/middleware_home/oracle_common/common/wlst/resources/ossoiap_help.jar:/home/oracle/middleware_home/oracle_common/common/wlst/resources/ossoiap.jar:/home/oracle/middleware_home/oracle_common/common/wlst/resources/sslconfigwlst.jar:/home/oracle/middleware_home/oracle_common/common/wlst/resources/wsm-wlst.jar:/home/oracle/middleware_home/wlserver_10.3/common/eval/pointbase/lib/pbembedded57.jar:/home/oracle/middleware_home/wlserver_10.3/common/eval/pointbase/lib/pbclient57.jar:/home/oracle/middleware_home/wlserver_10.3/common/eval/pointbase/lib/pbtools57.jar weblogic.NodeManager -v
    09-feb-2011 12:21:57 oracle.sysman.omsca.util.ProcessOutputReader run
    FINA: NMProcess: <09-feb-2011 12:21:56> <INFO> <Loading domains file: /home/oracle/middleware_home/wlserver_10.3/common/emnodemanager20110209122055/nodemanager.domains>
    09-feb-2011 12:21:57 oracle.sysman.omsca.util.ProcessOutputReader run
    ...

  • Installing Oracle Grid control 10G fails at OMS configuration on Windows XP

    I am trying to install Oracle 10G Grid control and it fails at OMS configuration. The log file under cfgttool logs shows failed command as
    Oracle.sysman.emcp.oms.Omsplugin -ConfigureOms.
    I tried to run command manually like the following:
    C:\OracleHomes\oms10g -force Oracle.sysman.emcp.oms.Omsplugin -ConfigureOms.
    Whe I run this command nothing happens. How should I got about it. Thanks in advance.
    Venkat

    oracle.sysman.top.oms_<timestamp>log
    has the following error messages and warnings.
    [24-01-2011 13:45:21] Analyzing header for: C:/OracleHomes/oms10g/sysman/admin/emdrep/sql/core/latest/util/util_pkgdefs.sql
    [24-01-2011 13:45:21]      Header: <create type="pkgdefs" pos="ip/webapps/ip_webapp_pkgdef.sql+"/>
    [24-01-2011 13:45:21]      WARNING: Bad pos attribute in repmgr header.
    [24-01-2011 13:45:21]      WARNING: Either there is a non-existent file: "ip/webapps/ip_webapp_pkgdef.sql" in position attribute: "ip/webapps/ip_webapp_pkgdef.sql+"
    [24-01-2011 13:45:21]      WARNING: OR there is a bad repmgr header/no repmgr header in file: "ip/webapps/ip_webapp_pkgdef.sql"
    At the end of the file:
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stderr:
    'Enter Enterprise Manager Root Password :
    ************Enter Agent Registration password :
    ************Unable to connect to opmn.
    Opmn may not be up.
    ================================================================================
    opmn id=test-hv-ms2003e:6201
    5 of 6 processes started.
    ias-instance id=EnterpriseManager0.test-hv-ms2003e.teamqsi.com
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
    HTTP_Server/HTTP_Server/HTTP_Server
    Error
    --> Process (pid=2476)
    failed to start a managed process after the maximum retry limit
    Log:
    C:\OracleHomes\oms10g\opmn\logs\HTTP_Server~1
    INFO: oracle.sysman.top.oms:setOmsSecure:OMS Service command=secure oms -secure_port 1159:returned:
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Performing Command=CMD /C C:\OracleHomes\oms10g\bin\emctl.bat secure lock
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:CMD /C C:\OracleHomes\oms10g\bin\emctl.bat secure lock have completed with exitCode=0
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stdout:
    'Oracle Enterprise Manager 10g Release 10.2.0.2.0
    Copyright (c) 1996, 2006 Oracle Corporation. All rights reserved.
    Checking the security status of the OMS... Done.
    Updating HTTPS Virtual Host for Enterprise Manager OMS... Done.
    OMS Locked. Agents must be Secure and upload over HTTPS Port 1159.
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stderr:
    INFO: oracle.sysman.top.oms:setOmsLocked:OMS Service command=secure lock:returned:
    INFO: oracle.sysman.top.oms:configureOmsService:Oms Secure Configuration done.
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Performing Command=CMD /C C:\OracleHomes\oms10g\perl\5.6.1\bin\MSWin32-x86\perl.exe C:\OracleHomes\oms10g\sysman\install\precompilejsp.pl C:\OracleHomes\oms10g\j2ee\OC4J_EM\config\global-web-application.xml
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:CMD /C C:\OracleHomes\oms10g\perl\5.6.1\bin\MSWin32-x86\perl.exe C:\OracleHomes\oms10g\sysman\install\precompilejsp.pl C:\OracleHomes\oms10g\j2ee\OC4J_EM\config\global-web-application.xml have completed with exitCode=0
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stdout:
    'precompiling the JSPs
    precompiling the JSPs done
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stderr:
    INFO: oracle.sysman.top.oms:configureOmsService:Precompile Jsps done.
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Performing Command=CMD /C C:\OracleHomes\oms10g\jdk\bin\java.exe -jar C:\OracleHomes\oms10g\sysman\jlib\emclikit.jar client -install_dir=C:\OracleHomes\oms10g\bin
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:CMD /C C:\OracleHomes\oms10g\jdk\bin\java.exe -jar C:\OracleHomes\oms10g\sysman\jlib\emclikit.jar client -install_dir=C:\OracleHomes\oms10g\bin have completed with exitCode=0
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stdout:
    'Oracle Enterprise Manager 10g Release 10.2.0.2.0.
    Copyright (c) 1996, 2006 Oracle Corporation. All rights reserved.
    EM CLI client-side install completed successfully.
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stderr:
    INFO: oracle.sysman.top.oms:configureOmsService:installAdditionalServices for 'client' completed=true
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Performing Command=CMD /C C:\OracleHomes\oms10g\bin\emctl.bat config agent updateTZ
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:CMD /C C:\OracleHomes\oms10g\bin\emctl.bat config agent updateTZ have completed with exitCode=0
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stdout:
    'Oracle Enterprise Manager 10g Release 10.2.0.2.0
    Copyright (c) 1996, 2006 Oracle Corporation. All rights reserved.
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stderr:
    INFO: oracle.sysman.top.oms:configureOmsService:fixTimeZone completed=true
    INFO: oracle.sysman.top.oms:OmsPlugIn:Requested Configuration Step 4 have been completed with status=true
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Performing Command=CMD /C C:\OracleHomes\oms10g\opmn\bin\opmnctl stopall
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:CMD /C C:\OracleHomes\oms10g\opmn\bin\opmnctl stopall have completed with exitCode=0
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stdout:
    'opmnctl: stopping opmn and all managed processes...
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stderr:
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Performing Command=CMD /C C:\OracleHomes\oms10g\opmn\bin\opmnctl startall
    INFO: oracle.sysman.top.oms:Start Opmn Error = CMD /C C:\OracleHomes\oms10g\opmn\bin\opmnctl startall
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:CMD /C C:\OracleHomes\oms10g\opmn\bin\opmnctl startall have completed with exitCode=206
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stdout:
    'opmnctl: starting opmn and all managed processes...
    INFO: oracle.sysman.top.oms:PerformSecureCommand:runCmd:Command Output stderr:
    '================================================================================
    opmn id=test-hv-ms2003e:6201
    5 of 6 processes started.
    ias-instance id=EnterpriseManager0.test-hv-ms2003e.teamqsi.com
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
    HTTP_Server/HTTP_Server/HTTP_Server
    Error
    --> Process (pid=2992)
    failed to start a managed process after the maximum retry limit
    Log:
    C:\OracleHomes\oms10g\opmn\logs\HTTP_Server~1
    INFO: oracle.sysman.top.oms:OmsPlugIn:Requested Configuration Step 5 have been completed with status=false
    INFO: oracle.sysman.top.oms:EmcpPlug:invoke:Completed EmcpPlug invoke method on an aggregate=oracle.sysman.top.oms for Action=configuration in step=2:microstep=0
    INFO: oracle.sysman.top.oms:The plug-in OMS Configuration has failed its perform method

  • How to install OEM Grid Control R2 on RHEL AS4 (AMD64/EM64T)

    Hi all,
    I was able to install the Oracle Application Server (Infrastructure and BI and Forms) successfully on the another machine with the same specs. The application I installed on the 64-bit machine is a 32-bit Oracle Application Server.
    Now, I tried to install the OEM Grid Control R2 (another 32-bit Oracle Software) on an identical 64-bit machine but had no luck. Ran linux32 bash before trying the install.
    I always get the error "error in invoking target 'dm_on ioracle' of makefile 'OH/db10g/rdbms/lib/ins_rdbms.mk".
    Please help me/guide me in this install if it is at all possible.
    Thanks and regards,
    Mike

    Did you read the installation docs?
    Did you look up trying to do this on metalink before proceeding?

  • 10g grid control installation (hanging problem) on RHEL AS 4.0

    Iam trying to install enterprise manager 10g(10.2.0.1.0) grid control on RHEL AS 4.0. At a stage after specifying security options the OUI hangs for long time (for about 15 mins) then it works fine till 100% installation then hanged for all day which i nevar see - (execute configuration scripts step). After a huge frustration i stopped the installation. Did anyone has come across this kind of problem..can anyone help me out of this problem...thanks in advance..
    The last few lines from logfile shows:
    *** End of Installation Page***
    The installation of Oracle Enterprise Manager Repository Database was successful.
    INFO: Path To 'globalcontext.xml' = /u01/app/oracle/product/10.2.0/db10g/install/chainedInstall/globalcontext

    Please paste the install action log and config log

  • Grid Control 11g Installation Unable to find Weblogic Server

    Hi,
    I am trying to install Grid Control 11g on Rhel 5.3. I already installed Weblogic . But when I give this location as middleware. Grid doesnt accept it.
    This is the exact error: ORACLE_MIDDLEWARE_HOME_LOCATION: specified Oracle Middleware Home is not installed in this host.
    I am giving /opt/oracle/Middleware in the Middleware home location screen.
    [oracle@ Middleware]$ pwd
    /opt/oracle/Middleware
    [oracle@]$ ls -l
    total 108
    drwxr-xr-x 2 oracle dba 4096 Dec 15 22:45 logs
    drwxr-xr-x 7 oracle dba 24576 Dec 15 22:45 modules
    -rw-r--r-- 1 oracle dba 852 Dec 15 22:45 ocm.rsp
    drwxr-xr-x 5 oracle dba 4096 Dec 15 22:50 patch_wls1032
    -rw-r--r-- 1 oracle dba 56812 Dec 15 22:45 registry.dat
    -rw-r--r-- 1 oracle dba 1718 Dec 15 22:45 registry.xml
    drwxr-xr-x 8 oracle dba 4096 Dec 15 22:45 utils
    drwxr-xr-x 7 oracle dba 4096 Dec 15 22:45 wlserver_10.3

    Did you install the correct version of WebLogic?
    Check you HOSTS file for incorrect entries.
    Eric

  • Weblogic 10.3.2 Smart Update / Grid Control 11.1.1

    I'm implementing a new Grid 11.1 environment on a linux x86_64 platform. I've installed everything including weblogic 10.3.2 with the default options. (required for grid control installation). The problem is.... now I have to patch the 10.3.2 weblogic server.. BUT it doesn't have the smart update utility installed... in other words .. there isn't any BEA_HOME/utils directory. Much less a bsu.sh script to launch the patching process.
    Has anyone ran into this before? I am new to weblogic and have never used the product. Thanks

    Somehow the installation got split. Part when in the /u01 and the other went in the home path of the user. never had that to happen before. I ended up uninstalling and reinstalling to correct the issue. Thanks

  • Oracle 10g Grid Control Installation On RedHat Advanced Server 3.0

    I am planing to install Enterprise Manager 10g Grid Control Release 1 (v10.1.0.3)
    on RedHat Advanced Server 3.0. The agent I am trying to download is showing version 10.1.0.4.1. I am not sure iof this agent is going to work with (v10.1.0.3). Pl. let me know if someone has performed this installation. Do I need to apply any patch on OEM and agent.
    Thanks
    Raj

    Actually, entirely the other way around, unless you like seeing errors in your OMS.
    OMS must be at at least the same patch level as the communicating agents.
    10.1.0.3 agent against a 10.1.0.4 OMS = OK
    10.1.0.4 agent against a 10.1.0.3 OMS = Bad mojo
    Download the 10.1.0.4.1 patchset from Metalink and update your OMS, or stick with the 10.1.0.3 agent if you've no access to metalink.

  • Installing Oracle 10g Grid Control on Winxp

    Hi All,
    I am facing a problem while installing Grid controls on Winxp. The installation completes everytime but it just hangs when configuring componenet Java Security.
    Do you have any idea how can I get rid of this. I tried running using configtools from command prompt but it seems the same problem, it hangs...I am trying first time on Windows system but its never install....
    Thanks
    Namit Sehgal

    Don't you get some details on the screen as to what exactly is being run? If not check the logs and post the error here.

  • Want Access Data Grid control in SharePoint 2013?

    Hello everyone!
    Recently we noticed something funny in SharePoint 2013. While quite many people were hoping to have the datasheet view like those in SP2007 and 2010, Microsoft has chosen a different interface to display datasheet view.
    Now, if you try to create a sub site under a publishing site, and use the
    Publishing Site template then try to create a datasheet view in the sub site, SharePoint will try to use the Access data grid control to display the view. In some situations the view will display and other situations it will not, and will show this
    error:
    The list is displayed in Standard view. It cannot be displayed in Datasheet view for one or more of the following reasons: A datasheet component compatible with Microsoft SharePoint Foundation is not installed, your browser does not support ActiveX controls,
    a component is not properly configured for 32-bit or 64-bit support, or support for ActiveX controls is disabled.
    If you create a sub site using Publishing Site with Workflow instead, then the datasheet view will be created properly using SP2013 interface.
    Using PowerShell, we can see that both Publishing Portal and
    Publishing Site With Workflow are using the BLANKINTERNET 53 template. The
    Publishing Site on the other hand is using the CMSPUBLISHING 39 template.
    Want to try it out and let me know if that happens to your SharePoint too?

    Hi Conway,
    I tested the issue in my environment per your description and it returned the results as below:
    I created a subsite using Publishing site under a team site in SharePoint server 2013, the datasheet view in a list displayed as pic1
    I reproduced the issue in SharePoint server 2010, the datasheet view in a list displayed as pic2
    It turns out by design the datasheet view in the subsite based on Publishing site template displays as your situation. Here is an article which explains this:
    http://www.sharepointblues.com/2010/03/31/data-sheet-view-not-working/
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

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

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

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

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

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

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

Maybe you are looking for