ERROR IN DATABASE INSERTION

HI,
i am trying to insert values in jsp into mysql database using beans....... but it doesn't shows any error or it doesn't inserts the value.. can any body help me out .
abdul

Not until we see some relevant code.
Message was edited by:
appy77

Similar Messages

  • Error in updating/inserting task in database

    When I pass in a runtimeFault Code, Detail and Summary into Flexstring1,2,3 I am getting this runtime error :
    Error in updating/inserting task in database. SQL Exception while updating/inserting task into the database. Check the error stack and fix the cause of the error. Contact oracle support if error is not fixable.
    Where can I find the error stack?
    Pete

    turn the following loggers from info to debug level (bpel console/manage domain/ tab logging)
    default.collaxa.cube.ws and
    default.oracle.services
    given you are using a developer isntall, you should see the stack a dos box
    if you are using an application server mid tier cou can find them in $AS_HOME/opmn/logs/OraOc4J_BPELxxxx.log
    hth clemens

  • Error - '.' expected - while database insert thru JSP & javabeans & JDBC

    I get the following error when i try to compile the below mentioned code in JDEVELOPER 10.1.2
    Error : '.' expected
    ===================
    have error in my code. I am trying to do a simple database insert program using javabeans and jsp. I get a value to be inserted in database through the jsp page in a text box and would like to be inserted into database using beans The connection to database and mysql query are in java file.
    Here is the code.
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@ page language="Java" import="java.sql.*" %>
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <%@ taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql" %>
    <html>
    <head>
    </head>
    <body>
    <form name="form1" action="beancode" method="POST">
    Emp ID: <input type="text" name ="emplid"> <br><br><br>
    <input type = "submit" value="Submit">
    <jsp:useBean id="sampl" class="beancode" scope="page">
    <jsp:setProperty name="sampl" property="*"/>
    </jsp:useBean>
    </form>
    </body>
    </html>
    I know i might have made a mistake here in using the bean. Here is the java code which does the insert part.
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    * @author Trainees
    public class beancode
    private String employid;
    private Connection con = null;
    private ResultSet rs = null;
    private PreparedStatement st = null;
    /** Creates a new instance of beancode */
    public beancode()
    try
              Class.forName("org.gjt.mm.mysql.Driver");
              Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/sample?user=user&password=password");
    catch(Exception e)
              System.out.println(e.getMessage());
    public void setemployid(String empid)
              employid = empid;
         public String getemployid()
              return (employid);
    public void insert()
    try
    String s1="insert into samp values('"+employid+"')";
    st = con.prepareStatement(s1);
    st.executeUpdate();
    st.clearParameters();
    st.close();
    catch(Exception m)
    }

    It's pretty hard to spot any errors the way it's currently formatted. But, you're trying to call the beancode when submitting your form, but the beancode isn't a servlet. Try to find a working example, run it, and then change it to implement your requirements.
    The following example shows you have to use the jstl sql tags: http://www.oracle.com/technology/sample_code/tech/java/codesnippet/jsps/jstlsql.html. If you want to do an insert when a user submits a form, you need 2 pages. The first will contain your form, the second will insert the record.
    (once you've got that running, look for some examples using an mvc framework, and how to use bind variables with jdbc)

  • [SOLVED] FRM-40508:ORACLE error: unable to INSERT record

    Hi all,
    I have migrated this form from 4.5 to 10g (Version 10.1.2.0.2 ). This form inserts a record into the database table when all the fields in the form are filled and a button Save is presed.
    At the time when I press the Save button, I get this error. FRM-40508:ORACLE error: unable to INSERT record
    So I went on to see the "Display Error" from help and found to be the database error, inserting into a table.
    The error message is ORA-00932: inconsistent datatypes: expected DATE got NUMBER
    The form where I press Save button has 3 date fields and I checked the properties of them and they are Date only.
    I also generated to object list report and tried to find some answer, but no use.
    Please help me in debugging this form.
    Edited by: Charan on Aug 18, 2011 4:05 PM

    I think you need to get a description of the table and compare all the "database" columns in the form with the ones in the database table to see that the types match. Somewhere there's a mismatch. Also check the block(s) "query data source columns" and see if there's any
    columns in there that the type does not match the table. (check the sizes of things too while you're at it.)

  • Another Error Executing Database Query.

    I am getting this error.
    12:40:54.054 - Database Exception - in
    C:\CFusionMX7\wwwroot\Author\dropdown2\EmployeeAddAction.cfm : line
    26
    Error Executing Database Query.
    i have added extra fields in the mdb and added extra code to
    the form page and the action page.
    i am getting this error still.
    this is how i broke it down.
    If I run my 2 files EmployeeAddForm.cfm and
    EmployeeAddAction.cfm
    I get this error:
    NOTE: if i take out the comments from the code and ignore the
    new fields added to the db it works fine!!!!!
    The web site you are accessing has experienced an unexpected
    error.
    Please contact the website administrator.
    The following information is meant for the website developer
    for debugging purposes.
    Error Occurred While Processing Request
    Error Executing Database Query.
    [Macromedia][SequeLink JDBC Driver][ODBC
    Socket][Microsoft][ODBC Microsoft Access Driver] Syntax error in
    INSERT INTO statement.
    Resources:
    Enable Robust Exception Information to provide greater detail
    about the source of errors. In the Administrator, click Debugging
    & Logging > Debugging Settings, and select the Robust
    Exception Information option.
    Check the ColdFusion documentation to verify that you are
    using the correct syntax.
    Search the Knowledge Base to find a solution to your problem.
    Browser Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;
    SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
    Remote Address 127.0.0.1
    Referrer
    http://127.0.0.1:8500/Author/dropdown2/EmployeeAddForm.cfm
    Date/Time 06-Jun-07 12:40 PM
    NOTE: if i take out the comments from the code and ignore the
    new fields added to the db it works fine!!!!!

    Try using '###CreateODBCDate(Form.DateOfBirth)###'. Access is
    strange on
    handling dates. It has a been a while since I have used
    Access so it could
    be as simple as wrapping it single quotes as well. I am
    assuming the
    "<!-----------" wasn't intended, but I could be wrong.
    Bryan Ashcraft (remove brain to reply)
    Web Application Developer
    Wright Medical Technology, Inc.
    Macromedia Certified Dreamweaver Developer
    Adobe Community Expert (DW) ::
    http://www.adobe.com/communities/experts/
    "Coldfusionstudent" <[email protected]>
    wrote in message
    news:[email protected]...
    >I am getting this error.
    > 12:40:54.054 - Database Exception - in
    >
    C:\CFusionMX7\wwwroot\Author\dropdown2\EmployeeAddAction.cfm : line
    26
    > Error Executing Database Query.
    >
    > i have added extra fields in the mdb and added extra
    code to the form page
    > and
    > the action page.
    > i am getting this error still.
    > this is how i broke it down.
    >
    > If I run my 2 files EmployeeAddForm.cfm and
    EmployeeAddAction.cfm
    > I get this error:
    >
    > The web site you are accessing has experienced an
    unexpected error.
    > Please contact the website administrator.
    >
    > The following information is meant for the website
    developer for debugging
    > purposes.
    >
    > Error Occurred While Processing Request
    > Error Executing Database Query.
    > [Macromedia][SequeLink JDBC Driver][ODBC
    Socket][Microsoft][ODBC Microsoft
    > Access Driver] Syntax error in INSERT INTO statement.
    >
    >
    > Resources:
    > Enable Robust Exception Information to provide greater
    detail about the
    > source
    > of errors. In the Administrator, click Debugging &
    Logging > Debugging
    > Settings, and select the Robust Exception Information
    option.
    > Check the ColdFusion documentation to verify that you
    are using the
    > correct
    > syntax.
    > Search the Knowledge Base to find a solution to your
    problem.
    >
    >
    > Browser Mozilla/4.0 (compatible; MSIE 6.0; Windows NT
    5.1; SV1; .NET CLR
    > 1.1.4322; .NET CLR 2.0.50727)
    > Remote Address 127.0.0.1
    > Referrer
    http://127.0.0.1:8500/Author/dropdown2/EmployeeAddForm.cfm
    > Date/Time 06-Jun-07 12:40 PM
    >
    >
    >
    > EmployeeAddForm.cfm
    >
    > <cfquery name="GetCompanies"
    > datasource="#Request.MainDSN#">
    > SELECT
    > CompanyID,
    > CompanyName
    > FROM
    > Company
    > ORDER BY
    > CompanyName
    > </cfquery>
    >
    > <html>
    > <head>
    > <title>ColdFusion MX Bible</title>
    > <link rel="stylesheet" href="styles.css">
    > </head>
    >
    > <body>
    >
    > <h1> </h1>
    >
    > <table>
    > <cfform action="EmployeeAddAction.cfm"
    method="POST">
    >
    > <tr>
    > <td>Company</td>
    > <td>
    > <cfselect name="CompanyID"
    > size="1"
    > query="GetCompanies"
    > value="CompanyID"
    > display="CompanyName"
    > required="Yes"
    > message="Please select a Company."></cfselect>
    > </td>
    > </tr>
    >
    > <tr>
    > <td>SSN</td>
    > <td>
    > <cfinput type="Text"
    > name="SSN"
    > message="Please enter the employee's Social Security
    Number."
    > validate="social_security_number"
    > required="Yes"
    > size="12"
    > maxlength="11">
    > </td>
    > </tr>
    >
    > <tr>
    > <td>First Name</td>
    > <td>
    > <cfinput type="Text"
    > name="Firstname"
    > message="Please enter the employee's first name."
    > required="Yes"
    > size="22"
    > maxlength="20">
    > </td>
    > </tr>
    >
    > <tr>
    > <td>Last Name</td>
    > <td>
    > <cfinput type="Text"
    > name="Lastname"
    > message="Please enter the employee's last name."
    > required="Yes"
    > size="22"
    > maxlength="20">
    > </td>
    > </tr>
    >
    > <tr>
    > <td>Salary</td>
    > <td>
    > <cfinput type="Text"
    > name="Salary"
    > message="Please enter a valid salary."
    > validate="float"
    > required="Yes"
    > size="22"
    > maxlength="20">
    > </td>
    > </tr>
    >
    > <tr>
    > <td>DOB</td>
    > <td>
    > <cfinput type="Text"
    > name="DateOfBirth"
    > message="Please enter a valid date of birth in the
    format mm/dd/yyyy"
    > validate="date"
    > required="Yes"
    > size="11"
    > maxlength="10">
    > </td>
    > </tr><!-------------
    > <tr>
    > <td>device_typ</td>
    > <td>
    > <cfinput type="Text"
    > name="device_typ"
    > message="Please enter the employee's device_typ."
    > required="Yes"
    > size="22"
    > maxlength="20">
    > </td>
    > </tr><tr>
    > <td>device_Email</td>
    > <td>
    > <cfinput type="Text"
    > name="device_Email"
    > message="Please enter the employee's device_Email."
    > required="Yes"
    > size="22"
    > maxlength="20">
    > </td>
    > </tr><tr>
    > <td>Work_email</td>
    > <td>
    > <cfinput type="Text"
    > name="Work_email"
    > message="Please enter the employee's Work_email."
    > required="Yes"
    > size="22"
    > maxlength="20">
    > </td>
    > </tr><tr>
    > <td>Pin_Number</td>
    > <td>
    > <cfinput type="Text"
    > name="Pin_Number"
    > message="Please enter the employee's Pin_Number."
    > required="Yes"
    > size="22"
    > maxlength="20">
    > </td>
    > </tr>------------------>
    > <tr>
    > <td> </td>
    > <td>
    > <input type="submit" value="Add to Database">
    > </td>
    > </tr>
    >
    > </cfform>
    > </table>
    >
    > </body>
    > </html>
    > ---------------------------
    > EmployeeAddAction.cfm
    >
    > <cfquery name="InsertEmployee"
    > datasource="#Request.MainDSN#">
    > INSERT INTO Employee(
    > SSN,
    > CompanyID,
    > Firstname,
    > Lastname,
    > Salary,
    > DateOfBirth<!----------,
    > device_typ,
    > device_Email,
    > Work_email,
    > Pin_Number-------------->
    >
    > )
    > VALUES (
    > '#Trim(Form.SSN)#',
    > #Val(Form.CompanyID)#,
    > '#Trim(Form.Firstname)#',
    > '#Trim(Form.Lastname)#',
    > #Val(Form.Salary)#,
    > #CreateODBCDate(Form.DateOfBirth)#<!-----------,
    > '#Trim(Form.device_typ)#',
    > '#Trim(Form.device_Email)#',
    > '#Trim(Form.Work_email)#',
    > '#Trim(Form.Pin_Number)#'------------------>
    > )
    > </cfquery>
    >
    > <cfmail
    to="#Form.Firstname#.#Form.Lastname#@somewhere.com"
    > from="[email protected]"
    > subject="Welcome to your new company!">
    > Welcome to your new company, #Form.Firstname#
    #Form.Lastname#!
    > </cfmail>
    > <!----
    > <cflocation url="EmployeeList.cfm">----->
    >

  • Error Executing Database Query (Encountered [nullstring])

    The attached code gives the following error message. I did
    have nullstrings being submitted as the "notes" and "internal
    notes," but I removed them in an (unsuccessful) attempt to solve
    this problem. Can this be fixed? Thanks!
    quote:
    Error Executing Database Query.
    Syntax error: Encountered "" at line 9, column 43.
    The error occurred in
    C:\ColdFusion8\wwwroot\Example\init.cfm: line 6
    4 : </head>
    5 : <body>
    6 : <CFQUERY NAME="init" DATASOURCE="Example">
    7 : CREATE TABLE programs(
    8 : ID int,
    SQLSTATE 42X01
    SQL CREATE TABLE programs( ID int, program_ID int, name
    varchar(20), long_name varchar(50), creator_email varchar(50),
    notes varchar(50), internal_notes varchar(50), is_public bool );
    INSERT INTO programs( ID, program_ID, name, long_name,
    creator_email, is_public ) VALUES( 0, 1, "Basic", "Basic
    (pre-selected)", "[email protected]", true ); SELECT * FROM
    programs;
    VENDORERRORCODE 30000
    DATASOURCE Example
    Resources:
    * Check the ColdFusion documentation to verify that you are
    using the correct syntax.
    * Search the Knowledge Base to find a solution to your
    problem.
    Browser Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US;
    rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6
    Remote Address 127.0.0.1
    Referrer
    Date/Time 20-Feb-08 11:53 PM
    Stack Trace
    at
    cfinit2ecfm949254281.runPage(C:\ColdFusion8\wwwroot\Example\init.cfm:6)
    at
    cfinit2ecfm949254281.runPage(C:\ColdFusion8\wwwroot\Example\init.cfm:6)
    [ginormous Java stacktrace omitted]

    I whittled my SQL down to the first query and added the
    transaction block, but the error remains. Thanks for your time!
    quote:
    Error Executing Database Query.
    Syntax error: Encountered "" at line 9, column 51.
    The error occurred in
    C:\ColdFusion8\wwwroot\Example\init.cfm: line 7
    5 : <body>
    6 : <CFTRANSACTION>
    7 : <CFQUERY NAME="init" DATASOURCE="Example">
    8 : CREATE TABLE programs(
    9 : ID int,
    SQLSTATE 42X01
    SQL CREATE TABLE programs( ID int, program_ID int, name
    varchar(20), long_name varchar(50), creator_email varchar(50),
    notes varchar(50), internal_notes varchar(50), is_public bool );
    VENDORERRORCODE 20000
    DATASOURCE Example
    Resources:
    * Check the ColdFusion documentation to verify that you are
    using the correct syntax.
    * Search the Knowledge Base to find a solution to your
    problem.
    Browser Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US;
    rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6
    Remote Address 127.0.0.1
    Referrer
    Date/Time 22-Feb-08 10:02 AM
    Stack Trace
    at
    cfinit2ecfm949254281.runPage(C:\ColdFusion8\wwwroot\Example\init.cfm:7)
    at
    cfinit2ecfm949254281.runPage(C:\ColdFusion8\wwwroot\Example\init.cfm:7)

  • ECC 5.0 database instance install error in  database load (post processing)

    HI  all!
    The installation of the environment :
    VM SERVER v1.03
    ECC 5.0 /WINDOWS SERVER 2003
    SQL SERVER 2000 SP3
    DB INSTANCE install occur error in database load (post processing)  step:
    sapinst.log:
    INFO 2008-10-16 14:20:54
    Creating file C:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB\keydb.5.xml.
    ERROR 2008-10-16 14:22:29
    MSC-01015 Process finished with error(s), check log file C:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB/SAPSSEXC.log
    ERROR 2008-10-16 14:24:59
    MSC-01015 Process finished with error(s), check log file C:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB/SAPAPPL2.log
    ERROR 2008-10-16 14:24:59
    MSC-01015 Process finished with error(s), check log file C:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB/SAPSDIC.log
    ERROR 2008-10-16 14:26:30
    MSC-01015 Process finished with error(s), check log file C:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB/SAPPOOL.log
    SAPSSEXC.log:
    D:\usr\sap\IDS\SYS\exe\run/R3load.exe: START OF LOG: 20081016142100
    D:\usr\sap\IDS\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/640_REL/src/R3ld/R3load/R3ldmain.c#27 $ SAP
    D:\usr\sap\IDS\SYS\exe\run/R3load.exe: version R6.40/V1.4
    Compiled Aug 18 2008 23:28:15
    D:\usr\sap\IDS\SYS\exe\run/R3load.exe -dbcodepage 1100 -i C:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB/SAPSSEXC.cmd -l C:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB/SAPSSEXC.log -loadprocedure fast
    (DB) INFO: connected to DB
    (DB) INFO: D010INC deleted/truncated
    Interface access functions from dynamic library dbmssslib.dll loaded.
    (IMP) INFO: EndFastLoad failed with <2: Bulk-copy commit unsuccessful:3624 Location: rowset.cpp:5001
    Expression: pBind->FCheckForNull ()
    SPID: 54
    Process ID: 1120
    3624 >
    (IMP) ERROR: EndFastload: rc = 2
    (DB) INFO: D010TAB deleted/truncated
    SAPAPPL2.log
    D:\usr\sap\IDS\SYS\exe\run/R3load.exe: START OF LOG: 20081016142130
    D:\usr\sap\IDS\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/640_REL/src/R3ld/R3load/R3ldmain.c#27 $ SAP
    D:\usr\sap\IDS\SYS\exe\run/R3load.exe: version R6.40/V1.4
    Compiled Aug 18 2008 23:28:15
    D:\usr\sap\IDS\SYS\exe\run/R3load.exe -dbcodepage 1100 -i C:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB/SAPAPPL2.cmd -l C:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB/SAPAPPL2.log -loadprocedure fast
    (DB) INFO: connected to DB
    (DB) INFO: AGR_1250 deleted/truncated
    Interface access functions from dynamic library dbmssslib.dll loaded.
    (IMP) INFO: import of AGR_1250 completed (139232 rows) #20081016142200
    (DB) INFO: AGR_1251 deleted/truncated
    (IMP) INFO: EndFastLoad failed with <2: Bulk-copy commit unsuccessful:2627 Violation of PRIMARY KEY constraint 'AGR_1251~0'. Cannot insert duplicate key in object 'AGR_1251'.
    3621 The statement has been terminated.>
    (IMP) ERROR: EndFastload: rc = 2
    (DB) INFO: AQLTS deleted/truncated
    (IMP) INFO: import of AQLTS completed (17526 rows) #20081016142456
    (DB) INFO: disconnected from DB
    D:\usr\sap\IDS\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    D:\usr\sap\IDS\SYS\exe\run/R3load.exe: END OF LOG: 20081016142456
    SAPSDIC.log:
    D:\usr\sap\IDS\SYS\exe\run/R3load.exe: START OF LOG: 20081016142230
    D:\usr\sap\IDS\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/640_REL/src/R3ld/R3load/R3ldmain.c#27 $ SAP
    D:\usr\sap\IDS\SYS\exe\run/R3load.exe: version R6.40/V1.4
    Compiled Aug 18 2008 23:28:15
    D:\usr\sap\IDS\SYS\exe\run/R3load.exe -dbcodepage 1100 -i C:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB/SAPSDIC.cmd -l C:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB/SAPSDIC.log -loadprocedure fast
    (DB) INFO: connected to DB
    (DB) INFO: DD08L deleted/truncated
    Interface access functions from dynamic library dbmssslib.dll loaded.
    (IMP) INFO: ExeFastLoad failed with <2: BCP Commit failed:3624 Location: p:\sql\ntdbms\storeng\drs\include\record.inl:1447
    Expression: m_SizeRec > 0 && m_SizeRec <= MAXDATAROW
    SPID: 54
    Process ID: 1120
    3624 >
    (IMP) ERROR: ExeFastload: rc = 2
    (DB) INFO: disconnected from DB
    D:\usr\sap\IDS\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    D:\usr\sap\IDS\SYS\exe\run/R3load.exe: END OF LOG: 20081016142437
    SAPPOOL.log:
    D:\usr\sap\IDS\SYS\exe\run/R3load.exe: START OF LOG: 20081016142530
    D:\usr\sap\IDS\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/640_REL/src/R3ld/R3load/R3ldmain.c#27 $ SAP
    D:\usr\sap\IDS\SYS\exe\run/R3load.exe: version R6.40/V1.4
    Compiled Aug 18 2008 23:28:15
    D:\usr\sap\IDS\SYS\exe\run/R3load.exe -dbcodepage 1100 -i C:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB/SAPPOOL.cmd -l C:\Program Files\sapinst_instdir\ECC_50_ABAP_NUC\DB/SAPPOOL.log -loadprocedure fast
    (DB) INFO: connected to DB
    (DB) INFO: ATAB deleted/truncated
    Interface access functions from dynamic library dbmssslib.dll loaded.
    (IMP) INFO: ExeFastLoad failed with <2: BCP Commit failed:3624 Location: p:\sql\ntdbms\storeng\drs\include\record.inl:1447
    Expression: m_SizeRec > 0 && m_SizeRec <= MAXDATAROW
    SPID: 54
    Process ID: 1120
    3624 >
    (IMP) ERROR: ExeFastload: rc = 2
    (DB) INFO: disconnected from DB
    D:\usr\sap\IDS\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    D:\usr\sap\IDS\SYS\exe\run/R3load.exe: END OF LOG: 20081016142621
    please help!   thanks!

    VM SERVER v1.03
    can you please tell me what you mean with that? VMWare? Is that ESX-Server?
    (DB) INFO: connected to DB
    (DB) INFO: ATAB deleted/truncated
    Interface access functions from dynamic library dbmssslib.dll loaded.
    (IMP) INFO: ExeFastLoad failed with <2: BCP Commit failed:3624 Location: p:sql
    tdbmsstorengdrsinclude
    ecord.inl:1447
    Expression: m_SizeRec > 0 && m_SizeRec <= MAXDATAROW
    SPID: 54
    Process ID: 1120
    3624 >
    (IMP) ERROR: ExeFastload: rc = 2
    I´ve seen those load problems under VMWare and on boxes hosted as Xen VMs.
    Markus

  • Error after upgrade  "Error Executing Database Query.  "

    I have set up a new server with CF MX 6.1. I have moved code
    from a CF 5 server. Now I am getting a lot of errors like this one.
    They all vary somewhat but seem to be related to two things. The
    problems seem to occur with CFINSERT to an access database. I have
    been trying to fix this for some time now and would appreciate any
    input. I have installed both the cf 'service pack' and a hot fix
    that I thought was related directly to this.
    Error Occurred While Processing Request
    Error Executing Database Query.
    [Macromedia][SequeLink JDBC Driver][ODBC
    Socket][Microsoft][ODBC Microsoft Access Driver] Syntax error in
    INSERT INTO statement.
    The error occurred in
    C:\Inetpub\vhosts\mysite.com\httpdocs\Ezedit\act_insert.cfm: line
    14
    Called from
    C:\Inetpub\vhosts\mysite.com\httpdocs\Ezedit\index.cfm: line 53
    Called from
    C:\Inetpub\vhosts\mysite.com\httpdocs\Ezedit\act_insert.cfm: line
    14
    Called from
    C:\Inetpub\vhosts\mysite.com\httpdocs\Ezedit\index.cfm: line 53
    12 : <CFELSEIF #ProductScan.Recordcount# IS 0>
    13 :
    14 : <CFINSERT DATASOURCE="mysite" TABLENAME="#Table#"
    username="admin" password="">
    15 :
    16 : <CFQUERY datasource="mysite">
    SQL insert into Products
    (WIDTH,HOTBUY,RETAIL1,REPEAT,HEIGHT,PRODUCTTITLE,JOIN,AJOIN,MATERIAL,OBJECTGROUP_ID,BOOKN AME,OBJECTGROUP_ID2,VJOIN,PRODUCTDESCRIPTION1,LENGTH,SAMPLE,MANUFACTURERPARTNO)
    values ( (param 1) , (param 2) , (param 3) , (param 4) , (param 5)
    , (param 6) , (param 7) , (param 8) , (param 9) , (param 10) ,
    (param 11) , (param 12) , (param 13) , (param 14) , (param 15) ,
    (param 16) , (param 17) )
    DATASOURCE mysite
    VENDORERRORCODE -3502
    SQLSTATE 42000
    Please try the following:

    <CFINSERT DATASOURCE="mysite" TABLENAME="#Table#">
    Probably an error. The tag assumes implicitly that a form has
    been submitted. In fact, one of its attributes is "formfields".
    Since you leave out the attribute, Coldfusion assumes it has to
    insert all the fields of a submitted form. You should put the tag
    within the block
    <cfif isDefined("form.someFormField")>
    </cfif>

  • EXEC SQL Error: ORA-01401: Inserted value too large for column

    Getting this SQL Error: ORA-01401: Inserted value too large for column..on an EXEC SQL Insert statement when writing to an
    external Oracle DB from SAP.
    On further analysis..it appears that this happens to the fields..when the string length matches the field length.
    Example:  Plant field is defined as char(4) on the SAP side and it is a Varchar2(4) on the Oracle side.
    When a value like '1015' is passed thru a variable in the insert statement then this ORA-01401 error pops up.
    No error:
       - if the value '1015' is passed directly in the insert statement to the external table  (or)
       - when a value with 3 chars or less(like the first three chars..101) is passed thru a variable  defined as 'Plant(4) type c'.
       - when using EXEC sql within SAP
       - when reading from the external db table
    This was working ok until the  Oracle Patch P9147110 was installed recently.
    Any suggestions !

    Hello Dvas,
    what's the characterset of your external database?
    What's the column definition in your external database (byte or character based)?
    If you use a characeterset like UTF8 it is possible, that one character needs more than one byte and then you will run into such kind of issues if the definition is too small.
    Regards
    Stefan

  • Error: Unable to insert new audit record for auditee 21 in repository UPA..

    Hi,
    I've got the error message below. Have you ever got this?
    DEBUG [ACTIVE] ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)' XELLERATE.DATABASE - insert into UPA (UPA_KEY,usr_key,EFF_FROM_DATE,SRC,SNAPSHOT,DELTAS) values (?,?,?,?,?,?)
    DEBUG [ACTIVE] ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)' XELLERATE.DATABASE - select UPA_seq.nextval from dual
    ERROR [ACTIVE] ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)' XELLERATE.DATABASE - Class/Method: tcDataBase/writeStatement encounter some problems: ORA-01461: can bind a LONG value only for insert into a LONG column
    java.sql.SQLException: ORA-01461: can bind a LONG value only for insert into a LONG column
         at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:70)
         at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:112)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:173)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:413)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1030)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:194)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:947)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1222)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3381)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3462)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeUpdate(OraclePreparedStatementWrapper.java:1349)
         at weblogic.jdbc.wrapper.PreparedStatement.executeUpdate(PreparedStatement.java:159)
         at com.thortech.xl.dataaccess.tcDataBase.writePreparedStatement(Unknown Source)
         at com.thortech.xl.dataobj.PreparedStatementUtil.executeUpdate(Unknown Source)
         at com.thortech.xl.audit.genericauditor.utils.AuditDataHandler.write(Unknown Source)
         at com.thortech.xl.audit.genericauditor.AuditMessageProcessor.updateAuditRecords(Unknown Source)
         at com.thortech.xl.audit.genericauditor.AuditMessageProcessor.processAuditMessage(Unknown Source)
         at com.thortech.xl.audit.genericauditor.GenericAuditor.processAuditMessage(Unknown Source)
         at com.thortech.xl.audit.engine.AuditEngine.processSingleAudJmsEntry(Unknown Source)
         at com.thortech.xl.audit.engine.AuditEngine.processOfflineNew(Unknown Source)
         at com.thortech.xl.audit.engine.jms.XLAuditMessageHandler.execute(Unknown Source)
         at com.thortech.xl.schedule.jms.messagehandler.MessageProcessUtil.processMessage(Unknown Source)
         at com.thortech.xl.schedule.jms.messagehandler.AuditMessageHandlerMDB.onMessage(Unknown Source)
         at weblogic.ejb.container.internal.MDListener.execute(MDListener.java:466)
         at weblogic.ejb.container.internal.MDListener.transactionalOnMessage(MDListener.java:371)
         at weblogic.ejb.container.internal.MDListener.onMessage(MDListener.java:327)
         at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:4547)
         at weblogic.jms.client.JMSSession.execute(JMSSession.java:4233)
         at weblogic.jms.client.JMSSession.executeMessage(JMSSession.java:3709)
         at weblogic.jms.client.JMSSession.access$000(JMSSession.java:114)
         at weblogic.jms.client.JMSSession$UseForRunnable.run(JMSSession.java:5058)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    ERROR [ACTIVE] ExecuteThread: '18' for queue: 'weblogic.kernel.Default (self-tuning)' XELLERATE.AUDITOR - Failed to process audit message
    com.thortech.xl.audit.exceptions.AuditMsgProcessingFailedException: Unable to insert new audit record for auditee 21 in repository UPA
    sert statement failed is: insert into UPA (UPA_KEY,usr_key,EFF_FROM_DATE,SRC,SNAPSHOT,DELTAS) values (?,?,?,?,?,?)
    auditRepository=UPA_KEY; auditeeID=21
    auditEpoch=2009-09-05 15:58:37.284; source=User: USER.TEST, API: com.thortech.xl.ejb.beansimpl.tcProvisioningOperationsBean, Method: updateTask
         at com.thortech.xl.audit.genericauditor.utils.AuditDataHandler.write(Unknown Source)
         at com.thortech.xl.audit.genericauditor.AuditMessageProcessor.updateAuditRecords(Unknown Source)
         at com.thortech.xl.audit.genericauditor.AuditMessageProcessor.processAuditMessage(Unknown Source)
         at com.thortech.xl.audit.genericauditor.GenericAuditor.processAuditMessage(Unknown Source)
         at com.thortech.xl.audit.engine.AuditEngine.processSingleAudJmsEntry(Unknown Source)
         at com.thortech.xl.audit.engine.AuditEngine.processOfflineNew(Unknown Source)
         at com.thortech.xl.audit.engine.jms.XLAuditMessageHandler.execute(Unknown Source)
         at com.thortech.xl.schedule.jms.messagehandler.MessageProcessUtil.processMessage(Unknown Source)
         at com.thortech.xl.schedule.jms.messagehandler.AuditMessageHandlerMDB.onMessage(Unknown Source)
         at weblogic.ejb.container.internal.MDListener.execute(MDListener.java:466)
         at weblogic.ejb.container.internal.MDListener.transactionalOnMessage(MDListener.java:371)
         at weblogic.ejb.container.internal.MDListener.onMessage(MDListener.java:327)
         at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:4547)
         at weblogic.jms.client.JMSSession.execute(JMSSession.java:4233)
         at weblogic.jms.client.JMSSession.executeMessage(JMSSession.java:3709)
         at weblogic.jms.client.JMSSession.access$000(JMSSession.java:114)
         at weblogic.jms.client.JMSSession$UseForRunnable.run(JMSSession.java:5058)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by [Nested Exception]:
    com.thortech.xl.orb.dataaccess.tcDataAccessException
         at com.thortech.xl.dataaccess.tcDataAccessExceptionUtil.createException(Unknown Source)
         at com.thortech.xl.dataaccess.tcDataBase.createException(Unknown Source)
         at com.thortech.xl.dataaccess.tcDataBase.writePreparedStatement(Unknown Source)
         at com.thortech.xl.dataobj.PreparedStatementUtil.executeUpdate(Unknown Source)
         at com.thortech.xl.audit.genericauditor.utils.AuditDataHandler.write(Unknown Source)
         at com.thortech.xl.audit.genericauditor.AuditMessageProcessor.updateAuditRecords(Unknown Source)
         at com.thortech.xl.audit.genericauditor.AuditMessageProcessor.processAuditMessage(Unknown Source)
         at com.thortech.xl.audit.genericauditor.GenericAuditor.processAuditMessage(Unknown Source)
         at com.thortech.xl.audit.engine.AuditEngine.processSingleAudJmsEntry(Unknown Source)
         at com.thortech.xl.audit.engine.AuditEngine.processOfflineNew(Unknown Source)
         at com.thortech.xl.audit.engine.jms.XLAuditMessageHandler.execute(Unknown Source)
         at com.thortech.xl.schedule.jms.messagehandler.MessageProcessUtil.processMessage(Unknown Source)
         at com.thortech.xl.schedule.jms.messagehandler.AuditMessageHandlerMDB.onMessage(Unknown Source)
         at weblogic.ejb.container.internal.MDListener.execute(MDListener.java:466)
         at weblogic.ejb.container.internal.MDListener.transactionalOnMessage(MDListener.java:371)
         at weblogic.ejb.container.internal.MDListener.onMessage(MDListener.java:327)
         at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:4547)
         at weblogic.jms.client.JMSSession.execute(JMSSession.java:4233)
         at weblogic.jms.client.JMSSession.executeMessage(JMSSession.java:3709)
         at weblogic.jms.client.JMSSession.access$000(JMSSession.java:114)
         at weblogic.jms.client.JMSSession$UseForRunnable.run(JMSSession.java:5058)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by [Nested Exception]:
    java.sql.SQLException: ORA-01461: can bind a LONG value only for insert into a LONG column
         at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:70)
         at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:112)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:173)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:413)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1030)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:194)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:947)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1222)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3381)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3462)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeUpdate(OraclePreparedStatementWrapper.java:1349)
         at weblogic.jdbc.wrapper.PreparedStatement.executeUpdate(PreparedStatement.java:159)
         at com.thortech.xl.dataaccess.tcDataBase.writePreparedStatement(Unknown Source)
         at com.thortech.xl.dataobj.PreparedStatementUtil.executeUpdate(Unknown Source)
         at com.thortech.xl.audit.genericauditor.utils.AuditDataHandler.write(Unknown Source)
         at com.thortech.xl.audit.genericauditor.AuditMessageProcessor.updateAuditRecords(Unknown Source)
         at com.thortech.xl.audit.genericauditor.AuditMessageProcessor.processAuditMessage(Unknown Source)
         at com.thortech.xl.audit.genericauditor.GenericAuditor.processAuditMessage(Unknown Source)
         at com.thortech.xl.audit.engine.AuditEngine.processSingleAudJmsEntry(Unknown Source)
         at com.thortech.xl.audit.engine.AuditEngine.processOfflineNew(Unknown Source)
         at com.thortech.xl.audit.engine.jms.XLAuditMessageHandler.execute(Unknown Source)
         at com.thortech.xl.schedule.jms.messagehandler.MessageProcessUtil.processMessage(Unknown Source)
         at com.thortech.xl.schedule.jms.messagehandler.AuditMessageHandlerMDB.onMessage(Unknown Source)
         at weblogic.ejb.container.internal.MDListener.execute(MDListener.java:466)
         at weblogic.ejb.container.internal.MDListener.transactionalOnMessage(MDListener.java:371)
         at weblogic.ejb.container.internal.MDListener.onMessage(MDListener.java:327)
         at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:4547)
         at weblogic.jms.client.JMSSession.execute(JMSSession.java:4233)
         at weblogic.jms.client.JMSSession.executeMessage(JMSSession.java:3709)
         at weblogic.jms.client.JMSSession.access$000(JMSSession.java:114)
         at weblogic.jms.client.JMSSession$UseForRunnable.run(JMSSession.java:5058)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

    Hello Peter:
    Thanks! I tried to input two detail records and still get only one error.
    I don't have pre/post trigger in my form. I use WHEN_BUTTON_PRESSED trigger with the following code:
    if get_block_property('PARENT_DATA',status) = 'CHANGED' or
    get_block_property('DETAIL_DATA',status) in ('CHANGED') then
    COMMIT;
    I also try File -> Save. It does not work either.
    Do I need to pre/and post trigger to check for it? If so, please show me how.
    Thanks again,
    TD

  • Sybase - Error Excuting Database Query

    Hi, All
    Below is an error we started receiving on one of our servers,
    w2k3 IIS 6 CF MX7, the same code run fine on the other servers,
    best to my abilities they have same setup... any ideas to check ?
    --tia
    Gerald
    "Error Executing Database Query.
    [Macromedia][Sybase JDBC Driver]The stored procedure call
    could not be made as a language event, due to the presence of one
    or more output-only parameters. It is recommended that parameter
    markers be used for all stored procedure arguments.
    "

    1) check data types of all your fields used in the query and
    make sure
    the data you are inserting into them matches the required
    type (i.e. you
    are not trying to enter a text string into an integer type
    field).
    2) specifically check the data type of RefID field - if it is
    Text then
    make sure #session.MM_username# is surrounded with ' (single
    quotes)
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com

  • Flexible database insert

    hi all!
    after hours of trials, searching this forum and others now the very important question: I use the database-connectivity kit with labview 8.5 and want to create a flexible database-insert procedure. I easily want to insert row by row of a 2-dim array, by knowing the specific amount of columns for the chosen table. 
    my idea is: a gui for database-table view and editor function for any table in the database. What I did is, you can currently view each table in the database, change something inside. now i buffer the whole information of the changed table, delete the content in the database and write the changed buffered content back by using the INSERT - VI.
    I always get the error message, that the number of columns is not equal to the number of parameters.I don't want to bring in the code specific information for a table, because my programm should work with any table in the database. 
    ... is there anyone of you, who is able to help me out ? I get crazy by this time ...
    i added the vi in the attachement, unfortunatelly it is  a bit in german/englisch, sorry for that.
    thx a lot !
    energymix
    Attachments:
    tabellen_admin.vi ‏58 KB

    Database will return error if you right any empty string to it and in the code the table is written directly  without  parsing the table string for empty strings.  I suspect that there might be some extra empty cells are there in the table that is creating the problem.  So just parse the entire table for blank spaces -> truncate the entire table to the size the database expects->Update the data in the database.
    Hope this helps.
    With regards,
    JK
    (Certified LabVIEW Developer)
    Give Kudos for Good Answers, and Mark it a solution if your problem is solved.

  • Duplicate messages/database inserts despite XA

    I have a simple test application which reads a single message at a time from WebSphere MQ, calls a tux service to insert into a database and writes an output MQ message (again via a tux service). The app is duplicating database inserts and MQ puts despite it being configured to use XA.
    I am running with AUTOTRAN=Y and can see the XA transactions in the trace.
    If I cause a DB failure (oracle 11g -> dataguard with fast start failover) , the servers exit and are re-started (this appeared to be the best way of cleaning up) however I get duplicates, despite the XA trace implying the global transaction was rolled back:
    124530.tuxtestmachine!s_mq.1016002.1.0: gtrid x0 x4aec30de x8d3: ...MQ Read->GPU POC TEST MSG18313<0> <<<<<<MQGET here
    124530.tuxtestmachine!s_mq.1016002.1.0: gtrid x0 x4aec30de x8d3: ...................calling <getu>
    124530.tuxtestmachine!server.864336.1.0: gtrid x0 x4aec30de x8d3: getu started
    124530.tuxtestmachine!server.864336.1.0: gtrid x0 x4aec30de x8d3: ..Input<GPU POC TEST MSG18313>
    124530.tuxtestmachine!server.864336.1.0: gtrid x0 x4aec30de x8d3: Conver string
    124530.tuxtestmachine!server.864336.1.0: gtrid x0 x4aec30de x8d3: .............................getu<GPU POC TEST MSG18313->GPU POC TEST MSG18313>
    124530.tuxtestmachine!server.864336.1.0: gtrid x0 x4aec30de x8d3: getu complete
    124530.tuxtestmachine!s_mq.1016002.1.0: gtrid x0 x4aec30de x8d3: ..returned from getu
    124530.tuxtestmachine!s_mq.1016002.1.0: gtrid x0 x4aec30de x8d3: ..calling mqwrite
    124530.tuxtestmachine!s_mq.1016002.1.0: gtrid x0 x4aec30de x8d3: ...................calling <mqwrite>
    124530.tuxtestmachine!s_mqwrite.651446.1.0: gtrid x0 x4aec30de x8d3: TRACE:at: { tpservice({"writemq", 0x10, 0x20077930, 22, 0, -2147483648, {0, -2, -1}})
    124530.tuxtestmachine!s_mqwrite.651446.1.0: gtrid x0 x4aec30de x8d3: ...in mqwrite
    124530.tuxtestmachine!s_mqwrite.651446.1.0: gtrid x0 x4aec30de x8d3: +++++Writing to MQ<GPU POC TEST MSG18313><GPU POC TEST MSG18313> <<<This is the MQPUT
    124530.tuxtestmachine!s_mqwrite.651446.1.0: gtrid x0 x4aec30de x8d3: TRACE:at: { tpreturn(2, 0, 0x20077930, 0, 0x0)
    124530.tuxtestmachine!s_mq.1016002.1.0: gtrid x0 x4aec30de x8d3: ..insert to database
    124530.tuxtestmachine!s_mq.1016002.1.0: gtrid x0 x4aec30de x8d3: ..............Calling dbinsert with <GPU POC TEST MSG18313><21>
    124530.tuxtestmachine!s_mq.1016002.1.0: gtrid x0 x4aec30de x8d3: ...................calling <db_insert>
    124530.tuxtestmachine!s_ora.897234.1.0: gtrid x0 x4aec30de x8d3: TRACE:xa: { /ò!(0x20019b74, 0, 0x0)
    124530.tuxtestmachine!s_ora.897234.1.0: gtrid x0 x4aec30de x8d3: TRACE:xa: } /ò! = -7
    124530.tuxtestmachine!s_ora.897234.1.0: gtrid x0 x4aec30de x8d3: TRACE:xa: { xa_open(0x2002035c, 0, 0x0)
    124530.tuxtestmachine!s_ora.897234.1.0: gtrid x0 x4aec30de x8d3: TRACE:xa: } xa_open = 0
    124530.tuxtestmachine!s_ora.897234.1.0: gtrid x0 x4aec30de x8d3: TRACE:xa: { xa_start(0x20019b74, 0, 0x0)
    124530.tuxtestmachine!s_ora.897234.1.0: gtrid x0 x4aec30de x8d3: TRACE:xa: } xa_start = 0
    124530.tuxtestmachine!s_ora.897234.1.0: gtrid x0 x4aec30de x8d3: ...Calling dbinsert<GPU POC TEST MSG18313>
    124530.tuxtestmachine!s_ora.897234.1.0: gtrid x0 x4aec30de x8d3: Database failure : ORA-25408: can not safely replay call <<<<As a result of the DB failure
    124640.tuxtestmachine!MQXA.778310.1.0: gtrid x0 x4aec30de x8d3: TRACE:xa: { xa_rollback(0x200196b4, 0, 0x0)
    124640.tuxtestmachine!TMS_ORA.1085652.1.0: gtrid x0 x4aec30de x8d3: TRACE:xa: { xa_rollback(0x2001a454, 0, 0x0)
    124640.tuxtestmachine!s_mq.1016002.1.0: gtrid x0 x4aec30de x8d3: !!!Error calling<db_insert><13>
    124640.tuxtestmachine!MQXA.778310.1.0: gtrid x0 x4aec30de x8d3: TRACE:xa: } xa_rollback = 0 <<<< This looks to me like a succesful rollback by the TMS
    124640.tuxtestmachine!TMS_ORA.1085652.1.0: gtrid x0 x4aec30de x8d3: TRACE:xa: } xa_rollback = -7 <<Resource manage unavailable, DB is still unavailable here
    124640.tuxtestmachine!TMS_ORA.1085652.1.0: gtrid x0 x4aec30de x8d3: TRACE:xa: { xa_open(0x20020c3c, 0, 0)
    124640.tuxtestmachine!TMS_ORA.1085652.1.0: gtrid x0 x4aec30de x8d3: TRACE:xa: } xa_open = 0
    124640.tuxtestmachine!TMS_ORA.1085652.1.0: gtrid x0 x4aec30de x8d3: TRACE:xa: { xa_rollback(0x2001a454, 0, 0x0)
    124640.tuxtestmachine!TMS_ORA.1085652.1.0: gtrid x0 x4aec30de x8d3: TRACE:xa: } xa_rollback = 0
    $
    Anyone with any ideas as to where I go from here ? Your time is much appreciated.
    Thanks.

    Hi Dan,
    Thanks for the question.
    Currently the Messaging Pattern implementation does not use/implement JTA/XA or Coherence transactions. It's much like regular JMS in that it provides it's own transaction framework, that neither uses JTA or XA. While the JMS specification provides an XA API, the implementation of this is optional, as are Queues or Topics.
    The original goal of the Messaging Pattern implementation was to demonstrate that JMS-like messaging is possible with Coherence. When we looked at constructing the Messaging example, most people we talked to said they didn't want JMS and especially they didn't want transactions. They simply wanted a simple messaging implementation. So it's initial goal was to demonstrate a high-scalable messaging layer. Unfortunately that meant no "real" transaction support, especially in terms of things like XA and/or JTA.
    That said given the way that the pattern is currently implemented one could easily implement an XA resource so that it could be used as a last resource. That's probably the quickest way to get what you would like at the moment.
    Of course I'm certainly interested in implementing XA support, but we know that is non-trivial. It's not currently on our roadmap for the pattern, but it could be. Our next release will provide persistent messaging, but we could investigate XA after that.
    -- Brian
    Brian Oliver | Architect | Oracle Coherence Engineering
    Oracle Fusion Middleware

  • Error starting database control

    Hi, All,
    I am installing 11.1.0.6 on windows server 2003 R2.
    After installing i am getting the error
    error starting database control.
    please find my log file below:
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag '-migrate' set to false
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateFromDBControl' set to false
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateToCentralAgent' set to false
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateFromCentralAgent' set to false
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateToDBControl' set to false
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag '-migrate' set to false
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateFromDBControl' set to false
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateToCentralAgent' set to false
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateFromCentralAgent' set to false
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'migrateToDBControl' set to false
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: LOG_FILE value: C:\Oracle\cfgtoollogs\dbca\dw01\emConfig.log
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: HOST value: dme001.omg-asia.com
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: PORT value: 1521
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SID value: dw01
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: LISTENER value: LISTENER
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: LISTENER_OH value: C:\Oracle\product\11.1.0\db_1
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag '-config' set to true
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'db' set to true
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: EM_HOME value: C:\Oracle\product\11.1.0\db_1
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: dw01
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SERVICE_NAME value: dw01
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: ORACLE_HOME value: C:\Oracle\product\11.1.0\db_1
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'dbcontrol' set to true
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'UPDATE_EMAIL' set to false
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag '-backup' set to false
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'create' set to false
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to C:\Oracle\product\11.1.0\db_1\oui
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.EMConfig addEMCALogFile
    CONFIG: ORACLE_BASE :C:\Oracle
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\cfgtoollogs\emca\emca_2013_06_26_14_01_10.log to C:\Oracle\cfgtoollogs\emca\dw01\emca_2013_06_26_14_01_10.log
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to C:\Oracle\product\11.1.0\db_1\oui
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to C:\Oracle\product\11.1.0\db_1\oui
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at C:\Oracle\cfgtoollogs\dbca\dw01\emConfig.log.
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.util.ClusterUtil isCRSInstalled
    CONFIG: isCRSInstalled: false
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to C:\Oracle\product\11.1.0\db_1\oui
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to C:\Oracle\product\11.1.0\db_1\oui
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'CHECK_CONFIG' set to true
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: dw01, oracleHome: C:\Oracle\product\11.1.0\db_1, and user: SYS
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: dw01, oracleHome: C:\Oracle\product\11.1.0\db_1, and user: DBSNMP
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Jun 26, 2013 2:01:10 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: dw01, oracleHome: C:\Oracle\product\11.1.0\db_1, and user: SYS
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'asm_db' set to false
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.DatabaseChecks getDbServiceName
    CONFIG: No service name available. Will try to set db_unique_name.db_domain
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: dw01, oracleHome: C:\Oracle\product\11.1.0\db_1, and user: SYS
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value:
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_UNIQUE_NAME.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.DatabaseChecks getDbUniqueName
    CONFIG: No Database unique name available. Will try to retrieve it from DB itself
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: dw01
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_DOMAIN.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.DatabaseChecks getDbDomain
    CONFIG: No db domain available. Will query db for db_domain parameter
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DB_UNIQUE_NAME value: dw01
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: SERVICE_NAME value: dw01
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBID.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.DatabaseChecks getDbid
    CONFIG: No dbid available. Will query db to extract it.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: dw01, oracleHome: C:\Oracle\product\11.1.0\db_1, and user: SYS
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DBID value: 1415694
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: dw01, oracleHome: C:\Oracle\product\11.1.0\db_1, and user: SYSMAN
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: dw01, oracleHome: C:\Oracle\product\11.1.0\db_1, and user: SYS
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.EMDBPreConfig invoke
    CONFIG: Passed repository configuration check
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter GLOBAL_DB_UNIQUE_NAME.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.DatabaseChecks getGlobalDbUniqueName
    CONFIG: No Global database unique name available. Will try to retrieve it from DB itself
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: dw01, oracleHome: C:\Oracle\product\11.1.0\db_1, and user: SYS
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DB_DOMAIN.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.DatabaseChecks getDbDomain
    CONFIG: No db domain available. Will query db for db_domain parameter
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: GLOBAL_DB_UNIQUE_NAME value: dw01
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\sysman\config\emd.properties to C:\Oracle\product\11.1.0\db_1\sysman\config\emd.properties.emca.tmp
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file C:\Oracle\product\11.1.0\db_1\sysman\config\emd.properties has been copied to C:\Oracle\product\11.1.0\db_1\sysman\config\emd.properties.emca.tmp
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\sysman\config\emoms.properties to C:\Oracle\product\11.1.0\db_1\sysman\config\emoms.properties.emca.tmp
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file C:\Oracle\product\11.1.0\db_1\sysman\config\emoms.properties has been copied to C:\Oracle\product\11.1.0\db_1\sysman\config\emoms.properties.emca.tmp
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\sysman\emd\targets.xml to C:\Oracle\product\11.1.0\db_1\sysman\emd\targets.xml.emca.tmp
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file C:\Oracle\product\11.1.0\db_1\sysman\emd\targets.xml has been copied to C:\Oracle\product\11.1.0\db_1\sysman\emd\targets.xml.emca.tmp
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.ClusterUtil isCRSInstalled
    CONFIG: isCRSInstalled: false
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: Cluster.isCluster: false. Skip call to getLocalNode
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'IS_CENTRAL_AGENT_RECONFIG' set to false
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.CentralAgentUtil isCentralAgentConfigured
    CONFIG: Sid: dw01 Host: dme001.omg-asia.com Node: null OH: C:\Oracle\product\11.1.0\db_1 agentHome: null isCentral: false
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.DBControlUtil isDBConsoleConfigured
    CONFIG: Sid: dw01 Host: dme001.omg-asia.com Node: null OH: C:\Oracle\product\11.1.0\db_1 isDBC: false
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'IS_CENTRAL_AGENT_CONFIGURED' set to false
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager setFlag
    CONFIG: Flag 'IS_DBCONTROL_CONFIGURED' set to false
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.DBControlUtil isDBConsoleConfigured
    CONFIG: Sid: dw01 Host: dme001.omg-asia.com Node: null OH: C:\Oracle\product\11.1.0\db_1 isDBC: false
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter PORTS_FILE.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT_dw01.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT_dw01.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT_dw01.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT_dw01.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.OUIInventoryUtil setOUILoc
    CONFIG: Setting oracle.installer.oui_loc to C:\Oracle\product\11.1.0\db_1\oui
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.OUIInventoryUtil setOUILoc
    CONFIG: Setting oracle.installer.oui_loc to C:\Oracle\product\11.1.0\db_1\oui
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Homes to scan for used ports: [C:\Oracle\product\11.1.0\db_1]
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Searching all DBConsole instances for used ports under ORACLE_HOME C:\Oracle\product\11.1.0\db_1
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking JMS port: null from C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking RMI port: null from C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking HTTP port: null from C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.PortManager getAgentPort
    CONFIG: Cannot parse EMD_URL correctly. No port identified
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking Agent port: null from C:\Oracle\product\11.1.0\db_1\sysman\config\emd.properties
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Cannnot parse EMD_URL correctly. No port identified
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.FileUtil getProperties
    CONFIG: Error reading file C:\Oracle\product\11.1.0\db_1\install\staticports.ini
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.PortManager getFreePorts
    CONFIG: C:\Oracle\product\11.1.0\db_1:dme001.omg-asia.com:null:dw01:{}:null:{DBCONTROL_HTTP_PORT=1158, RMI_PORT=5520, JMS_PORT=5540, AGENT_PORT=3938}
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT_dw01.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: AGENT_PORT_dw01 value: 3938
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT_dw01.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DBCONTROL_HTTP_PORT_dw01 value: 1158
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT_dw01.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: JMS_PORT_dw01 value: 5540
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT_dw01.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: RMI_PORT_dw01 value: 5520
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.EMDBPreConfig getFreePorts
    CONFIG: Ports assigned for SID: dw01 : {DBCONTROL_HTTP_PORT=1158, RMI_PORT=5520, JMS_PORT=5540, AGENT_PORT=3938}
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.EMDBPreConfig copyAgentTimeStampFile
    CONFIG: File: C:\Oracle\product\11.1.0\db_1\dme001.omg-asia.com_dw01\sysman\emd\agntstmp.txt:dme001.omg-asia.com does not exists.
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: dw01, oracleHome: C:\Oracle\product\11.1.0\db_1, and user: SYS
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.EMReposConfig unlockAccounts
    CONFIG: Unlocking dbsnmp and sysman
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.EMReposConfig invoke
    CONFIG: Successfully unlocked relevant accounts
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: dw01, oracleHome: C:\Oracle\product\11.1.0\db_1, and user: SYSMAN
    Jun 26, 2013 2:01:11 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 26, 2013 2:01:15 PM oracle.sysman.emcp.EMReposConfig createOutOfBoxJobs
    CONFIG: Finished executing emreposoutofbox.sql
    Jun 26, 2013 2:01:15 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: dw01, oracleHome: C:\Oracle\product\11.1.0\db_1, and user: SYSMAN
    Jun 26, 2013 2:01:15 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 26, 2013 2:01:15 PM oracle.sysman.emcp.EMReposConfig createOutOfBoxJobs
    CONFIG: Submitting dbms job: C:\Oracle\product\11.1.0\db_1\sysman\admin\emdrep\sql\core\latest\admin\admin_submit_dbms_jobs.sql
    Jun 26, 2013 2:01:15 PM oracle.sysman.emcp.EMReposConfig createOutOfBoxJobs
    CONFIG: Successfully submitted dbms job
    Jun 26, 2013 2:01:15 PM oracle.sysman.emcp.EMReposConfig unlockMGMTAccount
    CONFIG: Unlocking mgmt view user account
    Jun 26, 2013 2:01:15 PM oracle.sysman.emcp.EMReposConfig unlockMGMTAccount
    CONFIG: view user sql: declare repos_pwd varchar2(30); view_user varchar2(30); view_user_pwd varchar2(30); view_user_acc_status varchar2(30); begin repos_pwd := ?; sysman.mgmt_view_priv.get_view_user(view_user); select account_status into view_user_acc_status from sys.dba_users where upper(username) = upper ( view_user ); IF view_user_acc_status like '%LOCKED%' THEN execute immediate 'alter user ' || view_user || ' account unlock'; END IF; IF view_user_acc_status like '%EXPIRED%' THEN sysman.mgmt_view_priv.set_view_user_creds ( repos_pwd ); sysman.mgmt_view_priv.GET_VIEW_USER_CREDS ( view_user, view_user_pwd ); execute immediate 'alter user ' || view_user || ' identified by ' || view_user_pwd || ''; END IF; end;
    Jun 26, 2013 2:01:15 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Starting execution: CMD /C C:\Oracle\product\11.1.0\db_1\sysman\admin\scripts\emca\emcaDbUtil.bat "C:\Oracle\product\11.1.0\db_1\sysman\admin\scripts;C:\Oracle\product\11.1.0\db_1\bin;" C:/Oracle/product/11.1.0/db_1/perl/5.8.3/bin/MSWin32-x86-multi-thread\perl.exe C:\Oracle\product\11.1.0\db_1\sysman\admin\scripts\emca\emcaDbUtil.pl C:\Oracle\product\11.1.0\db_1 dw01 SYS SYSDBA declare repos_pwd varchar2(30); view_user varchar2(30); view_user_pwd varchar2(30); view_user_acc_status varchar2(30); begin repos_pwd := ?; sysman.mgmt_view_priv.get_view_user(view_user); select account_status into view_user_acc_status from sys.dba_users where upper(username) = upper ( view_user ); IF view_user_acc_status like '%LOCKED%' THEN execute immediate 'alter user ' || view_user || ' account unlock'; END IF; IF view_user_acc_status like '%EXPIRED%' THEN sysman.mgmt_view_priv.set_view_user_creds ( repos_pwd ); sysman.mgmt_view_priv.GET_VIEW_USER_CREDS ( view_user, view_user_pwd ); execute immediate 'alter user ' || view_user || ' identified by ' || view_user_pwd || ''; END IF; end; 1 SYSMAN_PWD
    Jun 26, 2013 2:01:16 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Exit value of 0
    Jun 26, 2013 2:01:16 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Execution of CMD /C C:\Oracle\product\11.1.0\db_1\sysman\admin\scripts\emca\emcaDbUtil.bat "C:\Oracle\product\11.1.0\db_1\sysman\admin\scripts;C:\Oracle\product\11.1.0\db_1\bin;" C:/Oracle/product/11.1.0/db_1/perl/5.8.3/bin/MSWin32-x86-multi-thread\perl.exe C:\Oracle\product\11.1.0\db_1\sysman\admin\scripts\emca\emcaDbUtil.pl C:\Oracle\product\11.1.0\db_1 dw01 SYS SYSDBA declare repos_pwd varchar2(30); view_user varchar2(30); view_user_pwd varchar2(30); view_user_acc_status varchar2(30); begin repos_pwd := ?; sysman.mgmt_view_priv.get_view_user(view_user); select account_status into view_user_acc_status from sys.dba_users where upper(username) = upper ( view_user ); IF view_user_acc_status like '%LOCKED%' THEN execute immediate 'alter user ' || view_user || ' account unlock'; END IF; IF view_user_acc_status like '%EXPIRED%' THEN sysman.mgmt_view_priv.set_view_user_creds ( repos_pwd ); sysman.mgmt_view_priv.GET_VIEW_USER_CREDS ( view_user, view_user_pwd ); execute immediate 'alter user ' || view_user || ' identified by ' || view_user_pwd || ''; END IF; end; 1 SYSMAN_PWD  completed successfully
    Jun 26, 2013 2:01:16 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Arguments passed C:\Oracle\product\11.1.0\db_1 dw01 SYS SYSDBA declare repos_pwd varchar2(30); view_user varchar2(30); view_user_pwd varchar2(30); view_user_acc_status varchar2(30); begin repos_pwd := ?; sysman.mgmt_view_priv.get_view_user(view_user); select account_status into view_user_acc_status from sys.dba_users where upper(username) = upper ( view_user ); IF view_user_acc_status like '%LOCKED%' THEN execute immediate 'alter user ' || view_user || ' account unlock'; END IF; IF view_user_acc_status like '%EXPIRED%' THEN sysman.mgmt_view_priv.set_view_user_creds ( repos_pwd ); sysman.mgmt_view_priv.GET_VIEW_USER_CREDS ( view_user, view_user_pwd ); execute immediate 'alter user ' || view_user || ' identified by ' || view_user_pwd || ''; END IF; end; 1 SYSMAN_PWD
    Connecting to database dw01 in home C:\Oracle\product\11.1.0\db_1 with user "SYS" role "SYSDBA".
    connected to database.
    sql to execute declare repos_pwd varchar2(30); view_user varchar2(30); view_user_pwd varchar2(30); view_user_acc_status varchar2(30); begin repos_pwd := ?; sysman.mgmt_view_priv.get_view_user(view_user); select account_status into view_user_acc_status from sys.dba_users where upper(username) = upper ( view_user ); IF view_user_acc_status like '%LOCKED%' THEN execute immediate 'alter user ' || view_user || ' account unlock'; END IF; IF view_user_acc_status like '%EXPIRED%' THEN sysman.mgmt_view_priv.set_view_user_creds ( repos_pwd ); sysman.mgmt_view_priv.GET_VIEW_USER_CREDS ( view_user, view_user_pwd ); execute immediate 'alter user ' || view_user || ' identified by ' || view_user_pwd || ''; END IF; end;
    noOfParams to bind: 1.
    sql execute successfully.
    Jun 26, 2013 2:01:16 PM oracle.sysman.emcp.EMReposConfig unlockMGMTAccount
    CONFIG: Unlocked mgmt_view account
    Jun 26, 2013 2:01:16 PM oracle.sysman.emcp.EMReposConfig invoke
    CONFIG: Successfully unlocked mgmt_view account
    Jun 26, 2013 2:01:16 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 26, 2013 2:01:16 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: dw01, oracleHome: C:\Oracle\product\11.1.0\db_1, and user: SYSMAN
    Jun 26, 2013 2:01:16 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 26, 2013 2:01:16 PM oracle.sysman.emcp.ParamsManager checkListenerStatusForDBControl
    CONFIG: Passed listener validation check.Listener is up and running.
    Jun 26, 2013 2:01:16 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 26, 2013 2:01:16 PM oracle.sysman.emcp.EMReposConfig uploadConfigDataToRepository
    INFO: Uploading configuration data to EM repository (this may take a while) ...
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Uploaded configuration data successfully
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.EMDBCConfig updateEmomsProps
    CONFIG: Updating file C:\Oracle\product\11.1.0\db_1\sysman\config\emoms.properties ...
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\sysman\config\emoms.properties.emca to C:\Oracle\product\11.1.0\db_1\sysman\config\emoms.properties
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\sysman\config\emoms.properties.emca.util.tmp to C:\Oracle\product\11.1.0\db_1\sysman\config\emoms.properties
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\server.xml.emca.util.tmp to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\server.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.EMDBCConfig copyOC4JDir
    CONFIG: Copying OC4J config files from C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _makeDirectory
    CONFIG: Create directory C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\application.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\application.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\data-sources.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\data-sources.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\default-web-site.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\default-web-site.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\entity-resolver-config.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\entity-resolver-config.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\global-web-application.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\global-web-application.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\http-web-site.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\http-web-site.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\internal-settings.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\internal-settings.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\j2ee-logging.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\j2ee-logging.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\java2.policy to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\java2.policy
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\javacache.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\javacache.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\jazn-data.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\jazn-data.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\jazn.security.props to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\jazn.security.props
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\jazn.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\jazn.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\jms.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\jms.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\mime.types to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\mime.types
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\oc4j-connectors.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\oc4j-connectors.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\oc4j.properties to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\oc4j.properties
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\orb-config.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\orb-config.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\principals.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\principals.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\rmi.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\rmi.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\server.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\server.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\system-application.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\system-application.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\system-jazn-data.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\system-jazn-data.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\transaction-manager.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\transaction-manager.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _makeDirectory
    CONFIG: Create directory C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\database-schemas
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\database-schemas\hypersonic.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\database-schemas\hypersonic.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\database-schemas\ms-access.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\database-schemas\ms-access.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\database-schemas\ms-sql.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\database-schemas\ms-sql.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\database-schemas\oracle.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\database-schemas\oracle.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\database-schemas\postgresql.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\database-schemas\postgresql.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\config\database-schemas\sybase.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\database-schemas\sybase.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _makeDirectory
    CONFIG: Create directory C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\connectors
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\connectors\README.txt to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\connectors\README.txt
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _makeDirectory
    CONFIG: Create directory C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\connectors\datasources
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\connectors\datasources\datasources.rar to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\connectors\datasources\datasources.rar
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _makeDirectory
    CONFIG: Create directory C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\connectors\OracleASjms
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\connectors\OracleASjms\OracleASjms.rar to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\connectors\OracleASjms\OracleASjms.rar
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _makeDirectory
    CONFIG: Create directory C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\META-INF
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\META-INF\MANIFEST.MF to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\META-INF\MANIFEST.MF
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _makeDirectory
    CONFIG: Create directory C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\application-deployments\default\defaultWebApp
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole\application-deployments\default\defaultWebApp\orion-web.xml to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\application-deployments\default\defaultWebApp\orion-web.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.EMDBCConfig copyOC4JDir
    CONFIG: Finished copying OC4J config files
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\jms.xml.emca.util.tmp to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\jms.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\rmi.xml.emca.util.tmp to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\rmi.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\rmi.xml.emca.util.tmp to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\rmi.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\http-web-site.xml.emca.util.tmp to C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\OC4J_DBConsole_dme001.omg-asia.com_dw01\config\http-web-site.xml
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.EMAgentConfig updateEmdProps
    CONFIG: Updating file C:\Oracle\product\11.1.0\db_1\sysman\config\emd.properties ...
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\sysman\config\emd.properties.emca to C:\Oracle\product\11.1.0\db_1\sysman\config\emd.properties
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\sysman\config\emd.properties.emca.util.tmp to C:\Oracle\product\11.1.0\db_1\sysman\config\emd.properties
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.EMAgentConfig updateAgentConfigFiles
    CONFIG: Updating file C:\Oracle\product\11.1.0\db_1\sysman\config\emd.properties ...
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.EMAgentConfig updateTargets
    CONFIG: value for use102tgt: false
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.ParamsManager getLocalListener
    CONFIG: Using specified listener name: LISTENER
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.EMAgentConfig updateAgentConfigFiles
    CONFIG: Updating file C:\Oracle\product\11.1.0\db_1\sysman\emd\targets.xml ...
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.EMAgentConfig instantiateEMConfigFiles
    CONFIG: Local host name: dme001.omg-asia.com
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: cmdType: 2
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.PlatformInterface serviceCommand
    CONFIG: Service does not exist
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.PlatformInterface addEnvVarToList
    CONFIG: Value for env var 'TZ' is '', discarding the same
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.PlatformInterface addEnvVarToList
    CONFIG: Value for env var 'ORACLE_HOSTNAME' is '', discarding the same
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.PlatformInterface getSortedEnvArray
    CONFIG: New Env List: [ALLUSERSPROFILE=C:\Documents and Settings\All Users, APPDATA=C:\Documents and Settings\administrator.OMG-ASIA\Application Data, ASSISTANTS_COMMON_CLASSPATH=C:\Oracle\product\11.1.0\db_1\assistants\jlib\assistantsCommon.jar, BALISHARE_CLASSPATH=C:\Oracle\product\11.1.0\db_1\jlib\share.jar, CLASSPATH=C:\Oracle\product\11.1.0\db_1\assistants\dbca\jlib\dbca.jar, CLUSTERLOG=C:\WINDOWS\Cluster\cluster.log, COMMONPROGRAMFILES=C:\Program Files (x86)\Common Files, COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, COMMONPROGRAMW6432=C:\Program Files\Common Files, COMPUTERNAME=DME001, COMSPEC=C:\WINDOWS\system32\cmd.exe, DBCA_CLASSPATH=C:\Oracle\product\11.1.0\db_1\assistants\dbca\jlib\dbca.jar, DVCA_CLASSPATH=C:\Oracle\product\11.1.0\db_1\dv\jlib\dvca.jar, EM_CLASSPATH=C:\Oracle\product\11.1.0\db_1\classes;C:\Oracle\product\11.1.0\db_1\jlib\oemlt.jar;C:\Oracle\product\11.1.0\db_1\jlib\emca.jar;C:\Oracle\product\11.1.0\db_1\sysman\jlib\emCORE.jar;C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\home\oc4j.jar;C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\home\db_oc4j_deploy.jar;C:\Oracle\product\11.1.0\db_1\jlib\emConfigInstall.jar, EWT_CLASSPATH=C:\Oracle\product\11.1.0\db_1\jlib\ewt3.jar;C:\Oracle\product\11.1.0\db_1\jlib\ewtcompat-3_3_15.jar, FP_NO_HOST_CHECK=NO, GDK_CLASSPATH=C:\Oracle\product\11.1.0\db_1\jlib\orai18n.jar, HELPJAR_CLASSPATH=C:\Oracle\product\11.1.0\db_1\assistants\dbca\doc\dbcahelp.jar;C:\Oracle\product\11.1.0\db_1\assistants\dbca\doc\dbcahelp_es.jar;C:\Oracle\product\11.1.0\db_1\assistants\dbca\doc\dbcahelp_de.jar;C:\Oracle\product\11.1.0\db_1\assistants\dbca\doc\dbcahelp_fr.jar;C:\Oracle\product\11.1.0\db_1\assistants\dbca\doc\dbcahelp_it.jar;C:\Oracle\product\11.1.0\db_1\assistants\dbca\doc\dbcahelp_ko.jar;C:\Oracle\product\11.1.0\db_1\assistants\dbca\doc\dbcahelp_pt_BR.jar;C:\Oracle\product\11.1.0\db_1\assistants\dbca\doc\dbcahelp_zh_CN.jar;C:\Oracle\product\11.1.0\db_1\assistants\dbca\doc\dbcahelp_zh_TW.jar, HELP_CLASSPATH=C:\Oracle\product\11.1.0\db_1\jlib\help4.jar;C:\Oracle\product\11.1.0\db_1\jlib\jewt4.jar, HOMEDRIVE=C:, HOMEPATH=\Documents and Settings\administrator.OMG-ASIA, ICE_BROWSER_CLASSPATH=C:\Oracle\product\11.1.0\db_1\jlib\oracle_ice5.jar, INSTALLER_CLASSPATH=C:\Oracle\product\11.1.0\db_1\oui\jlib\OraInstaller.jar, JDBC_CLASSPATH=C:\Oracle\product\11.1.0\db_1\jdbc\lib\ojdbc5.jar, KODIAK_CLASSPATH=C:\Oracle\product\11.1.0\db_1\jlib\kodiak.jar, LOGONSERVER=\\DOMAIN-SERVER-2, NEED_EXIT_CODE=1, NETCFG_CLASSPATH=C:\Oracle\product\11.1.0\db_1\jlib\ldapjclnt11.jar;C:\Oracle\product\11.1.0\db_1\jlib\netcfg.jar;C:\Oracle\product\11.1.0\db_1\jlib\ojmisc.jar;C:\Oracle\product\11.1.0\db_1\jlib\oraclepki103.jar;C:\Oracle\product\11.1.0\db_1\jlib\opm.jar, NUMBER_OF_PROCESSORS=4, OH=C:\Oracle\product\11.1.0\db_1, ORACLE_BASE=C:\Oracle, ORACLE_SID=dw01, OS=Windows_NT, PATH=C:\Oracle\product\11.1.0\db_1\jdk\jre\bin\server;C:\Oracle\product\11.1.0\db_1\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\SPSSInc\PASWStatistics18DataFileDriver\Standalone\ip\bin;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\WINDOWS\system32\WindowsPowerShell\v1.0, PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.PSC1, PROCESSOR_ARCHITECTURE=x86, PROCESSOR_ARCHITEW6432=AMD64, PROCESSOR_IDENTIFIER=EM64T Family 6 Model 23 Stepping 6, GenuineIntel, PROCESSOR_LEVEL=6, PROCESSOR_REVISION=1706, PROGRAMFILES=C:\Program Files (x86), PROGRAMFILES(X86)=C:\Program Files (x86), PROGRAMW6432=C:\Program Files, PROMPT=$P$G, SESSIONNAME=Console, SRVM_CLASSPATH=C:\Oracle\product\11.1.0\db_1\jlib\srvm.jar;C:\Oracle\product\11.1.0\db_1\jlib\srvmhas.jar;C:\Oracle\product\11.1.0\db_1\jlib\srvmasm.jar, SYSTEMDRIVE=C:, SYSTEMROOT=C:\WINDOWS, TEMP=C:\WINDOWS\TEMP, TMP=C:\WINDOWS\TEMP, USERDNSDOMAIN=OMG-ASIA.COM, USERDOMAIN=OMG-ASIA, USERNAME=Administrator, USERPROFILE=C:\Documents and Settings\administrator.OMG-ASIA, WINDIR=C:\WINDOWS, XMLPARSER_CLASSPATH=C:\Oracle\product\11.1.0\db_1\lib\xmlparserv2.jar, __PROCESS_HISTORY=C:\database 11.1.0.6 32 bit\database 11.1.0.6 32 bit\setup.exe]
    Jun 26, 2013 2:02:07 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Starting execution: CMD /C C:\Oracle\product\11.1.0\db_1\bin\emctl.bat deploy dbconsole C:\Oracle\product\11.1.0\db_1\dme001.omg-asia.com_dw01 dme001.omg-asia.com:3938 dme001.omg-asia.com dw01
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Exit value of 0
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Execution of CMD /C C:\Oracle\product\11.1.0\db_1\bin\emctl.bat deploy dbconsole C:\Oracle\product\11.1.0\db_1\dme001.omg-asia.com_dw01 dme001.omg-asia.com:3938 dme001.omg-asia.com dw01  completed successfully
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Creating shared install...
    Source location: C:\Oracle\product\11.1.0\db_1
    Destination (shared install) : C:\Oracle\product\11.1.0\db_1\dme001.omg-asia.com_dw01
    DeployMode : dbconsole
    Creating directories...
    Setting console properties ...
    Setting log and trace files locations for Console ...
    Setting log and trace files locations for Agent ...
    Service "OracleDBConsoledw01" create SUCCESS
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.EMAgentConfig updateDBControlPort
    CONFIG: Setting https port as: -1
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\dme001.omg-asia.com_dw01\sysman\config\emoms.properties.emca.util.tmp to C:\Oracle\product\11.1.0\db_1\dme001.omg-asia.com_dw01\sysman\config\emoms.properties
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\dme001.omg-asia.com_dw01\sysman\config\emd.properties.emca.util.tmp to C:\Oracle\product\11.1.0\db_1\dme001.omg-asia.com_dw01\sysman\config\emd.properties
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\dme001.omg-asia.com_dw01\sysman\config\emd.properties.emca.util.tmp to C:\Oracle\product\11.1.0\db_1\dme001.omg-asia.com_dw01\sysman\config\emd.properties
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.PlatformInterface getEnvProps
    CONFIG: Returning env array from cache
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.PlatformInterface getSortedEnvArray
    CONFIG: New Env List: [ALLUSERSPROFILE=C:\Documents and Settings\All Users, APPDATA=C:\Documents and Settings\administrator.OMG-ASIA\Application Data, ASSISTANTS_COMMON_CLASSPATH=C:\Oracle\product\11.1.0\db_1\assistants\jlib\assistantsCommon.jar, BALISHARE_CLASSPATH=C:\Oracle\product\11.1.0\db_1\jlib\share.jar, CLASSPATH=C:\Oracle\product\11.1.0\db_1\assistants\dbca\jlib\dbca.jar, CLUSTERLOG=C:\WINDOWS\Cluster\cluster.log, COMMONPROGRAMFILES=C:\Program Files (x86)\Common Files, COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, COMMONPROGRAMW6432=C:\Program Files\Common Files, COMPUTERNAME=DME001, COMSPEC=C:\WINDOWS\system32\cmd.exe, DBCA_CLASSPATH=C:\Oracle\product\11.1.0\db_1\assistants\dbca\jlib\dbca.jar, DVCA_CLASSPATH=C:\Oracle\product\11.1.0\db_1\dv\jlib\dvca.jar, EM_CLASSPATH=C:\Oracle\product\11.1.0\db_1\classes;C:\Oracle\product\11.1.0\db_1\jlib\oemlt.jar;C:\Oracle\product\11.1.0\db_1\jlib\emca.jar;C:\Oracle\product\11.1.0\db_1\sysman\jlib\emCORE.jar;C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\home\oc4j.jar;C:\Oracle\product\11.1.0\db_1\oc4j\j2ee\home\db_oc4j_deploy.jar;C:\Oracle\product\11.1.0\db_1\jlib\emConfigInstall.jar, EWT_CLASSPATH=C:\Oracle\product\11.1.0\db_1\jlib\ewt3.jar;C:\Oracle\product\11.1.0\db_1\jlib\ewtcompat-3_3_15.jar, FP_NO_HOST_CHECK=NO, GDK_CLASSPATH=C:\Oracle\product\11.1.0\db_1\jlib\orai18n.jar, HELPJAR_CLASSPATH=C:\Oracle\product\11.1.0\db_1\assistants\dbca\doc\dbcahelp.jar;C:\Oracle\product\11.1.0\db_1\assistants\dbca\doc\dbcahelp_es.jar;C:\Oracle\product\11.1.0\db_1\assistants\dbca\doc\dbcahelp_de.jar;C:\Oracle\product\11.1.0\db_1\assistants\dbca\doc\dbcahelp_fr.jar;C:\Oracle\product\11.1.0\db_1\assistants\dbca\doc\dbcahelp_it.jar;C:\Oracle\product\11.1.0\db_1\assistants\dbca\doc\dbcahelp_ko.jar;C:\Oracle\product\11.1.0\db_1\assistants\dbca\doc\dbcahelp_pt_BR.jar;C:\Oracle\product\11.1.0\db_1\assistants\dbca\doc\dbcahelp_zh_CN.jar;C:\Oracle\product\11.1.0\db_1\assistants\dbca\doc\dbcahelp_zh_TW.jar, HELP_CLASSPATH=C:\Oracle\product\11.1.0\db_1\jlib\help4.jar;C:\Oracle\product\11.1.0\db_1\jlib\jewt4.jar, HOMEDRIVE=C:, HOMEPATH=\Documents and Settings\administrator.OMG-ASIA, ICE_BROWSER_CLASSPATH=C:\Oracle\product\11.1.0\db_1\jlib\oracle_ice5.jar, INSTALLER_CLASSPATH=C:\Oracle\product\11.1.0\db_1\oui\jlib\OraInstaller.jar, JDBC_CLASSPATH=C:\Oracle\product\11.1.0\db_1\jdbc\lib\ojdbc5.jar, KODIAK_CLASSPATH=C:\Oracle\product\11.1.0\db_1\jlib\kodiak.jar, LD_LIBRARY_PATH=C:\Oracle\product\11.1.0\db_1\lib32;C:\Oracle\product\11.1.0\db_1\lib;C:\Oracle\product\11.1.0\db_1\perl\lib;null, LOGONSERVER=\\DOMAIN-SERVER-2, NETCFG_CLASSPATH=C:\Oracle\product\11.1.0\db_1\jlib\ldapjclnt11.jar;C:\Oracle\product\11.1.0\db_1\jlib\netcfg.jar;C:\Oracle\product\11.1.0\db_1\jlib\ojmisc.jar;C:\Oracle\product\11.1.0\db_1\jlib\oraclepki103.jar;C:\Oracle\product\11.1.0\db_1\jlib\opm.jar, NUMBER_OF_PROCESSORS=4, OH=C:\Oracle\product\11.1.0\db_1, ORACLE_BASE=C:\Oracle, OS=Windows_NT, PATH=C:\Oracle\product\11.1.0\db_1\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\SPSSInc\PASWStatistics18DataFileDriver\Standalone\ip\bin;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\WINDOWS\system32\WindowsPowerShell\v1.0, PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.PSC1, PERL5LIB=C:\Oracle\product\11.1.0\db_1\sysman\admin\scripts;C:\Oracle\product\11.1.0\db_1\bin;, PROCESSOR_ARCHITECTURE=x86, PROCESSOR_ARCHITEW6432=AMD64, PROCESSOR_IDENTIFIER=EM64T Family 6 Model 23 Stepping 6, GenuineIntel, PROCESSOR_LEVEL=6, PROCESSOR_REVISION=1706, PROGRAMFILES=C:\Program Files (x86), PROGRAMFILES(X86)=C:\Program Files (x86), PROGRAMW6432=C:\Program Files, PROMPT=$P$G, SESSIONNAME=Console, SRVM_CLASSPATH=C:\Oracle\product\11.1.0\db_1\jlib\srvm.jar;C:\Oracle\product\11.1.0\db_1\jlib\srvmhas.jar;C:\Oracle\product\11.1.0\db_1\jlib\srvmasm.jar, SYSTEMDRIVE=C:, SYSTEMROOT=C:\WINDOWS, TEMP=C:\WINDOWS\TEMP, TMP=C:\WINDOWS\TEMP, USERDNSDOMAIN=OMG-ASIA.COM, USERDOMAIN=OMG-ASIA, USERNAME=Administrator, USERPROFILE=C:\Documents and Settings\administrator.OMG-ASIA, WINDIR=C:\WINDOWS, XMLPARSER_CLASSPATH=C:\Oracle\product\11.1.0\db_1\lib\xmlparserv2.jar, __PROCESS_HISTORY=C:\database 11.1.0.6 32 bit\database 11.1.0.6 32 bit\setup.exe]
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Starting execution: C:/Oracle/product/11.1.0/db_1/perl/5.8.3/bin/MSWin32-x86-multi-thread\perl.exe C:\Oracle\product\11.1.0\db_1\bin\targetdeploy.pl C:\Oracle\product\11.1.0\db_1\dme001.omg-asia.com_dw01 dme001.omg-asia.com dw01
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Exit value of 0
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Execution of C:/Oracle/product/11.1.0/db_1/perl/5.8.3/bin/MSWin32-x86-multi-thread\perl.exe C:\Oracle\product\11.1.0\db_1\bin\targetdeploy.pl C:\Oracle\product\11.1.0\db_1\dme001.omg-asia.com_dw01 dme001.omg-asia.com dw01  completed successfully
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Creating targets.xml in state directories...
    Source location: C:/Oracle/product/11.1.0/db_1
    Destination : C:\Oracle\product\11.1.0\db_1\dme001.omg-asia.com_dw01
    Creating directories...
    Creating targets.xml...
    Done.
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.EMAgentConfig createAgentTimeStampFile
    CONFIG: Creating agntstmp.txt file. oh: C:\Oracle\product\11.1.0\db_1 stateDir: C:\Oracle\product\11.1.0\db_1\dme001.omg-asia.com_dw01 host: dme001.omg-asia.com
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter MODIFY_SID.
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.EMAgentConfig createAgentTimeStampFile
    CONFIG: File: C:\Oracle\product\11.1.0\db_1\sysman\emd\agntstmp.txt.dw01 does not exists
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.EMAgentConfig instantiateEMConfigFiles
    CONFIG: Successfully deployed state dirs for dme001.omg-asia.com
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.EMAgentConfig performConfiguration
    CONFIG: Successfully updated agent config files
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\sysman\config\emd.properties.emca.tmp to C:\Oracle\product\11.1.0\db_1\sysman\config\emd.properties
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file C:\Oracle\product\11.1.0\db_1\sysman\config\emd.properties.emca.tmp has been copied to C:\Oracle\product\11.1.0\db_1\sysman\config\emd.properties
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\sysman\emd\targets.xml.emca.tmp to C:\Oracle\product\11.1.0\db_1\sysman\emd\targets.xml
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file C:\Oracle\product\11.1.0\db_1\sysman\emd\targets.xml.emca.tmp has been copied to C:\Oracle\product\11.1.0\db_1\sysman\emd\targets.xml
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.ClusterUtil getLocalNode
    CONFIG: isLocalNodeDone: true localNode: null
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.PortManager addPortEntries
    CONFIG: Updating file C:\Oracle\product\11.1.0\db_1\install\portlist.ini ...
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\install\portlist.ini to C:\Oracle\product\11.1.0\db_1\install\portlist.ini.emca.util.tmp
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file C:\Oracle\product\11.1.0\db_1\install\portlist.ini has been copied to C:\Oracle\product\11.1.0\db_1\install\portlist.ini.emca.util.tmp
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.PortManager addPortEntries
    CONFIG: Writing the selected ports to portlist.ini
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\install\portlist.ini.emca.util.tmp to C:\Oracle\product\11.1.0\db_1\install\portlist.ini
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.PortManager addPortEntries
    CONFIG: File C:\Oracle\product\11.1.0\db_1\install\portlist.ini is successfully updated
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.PortManager addPortEntries
    CONFIG: Updating file C:\Oracle\product\11.1.0\db_1\install\portlist.ini ...
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\install\portlist.ini to C:\Oracle\product\11.1.0\db_1\install\portlist.ini.emca.util.tmp
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.FileUtil backupFile
    CONFIG: The original file C:\Oracle\product\11.1.0\db_1\install\portlist.ini has been copied to C:\Oracle\product\11.1.0\db_1\install\portlist.ini.emca.util.tmp
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.PortManager addPortEntries
    CONFIG: Writing the selected ports to portlist.ini
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.FileUtil _copyFile
    CONFIG: Copying file C:\Oracle\product\11.1.0\db_1\install\portlist.ini.emca.util.tmp to C:\Oracle\product\11.1.0\db_1\install\portlist.ini
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.PortManager addPortEntries
    CONFIG: File C:\Oracle\product\11.1.0\db_1\install\portlist.ini is successfully updated
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter EM_SWLIB_STAGE_LOC.
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.DBControlUtil configureSoftwareLib
    CONFIG: Configuring Software Library
    Jun 26, 2013 2:02:08 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: dw01, oracleHome: C:\Oracle\product\11.1.0\db_1, and user: SYSMAN
    Jun 26, 2013 2:02:09 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Jun 26, 2013 2:02:09 PM oracle.sysman.emcp.util.DBControlUtil configureSoftwareLib
    INFO: Software library configured successfully.
    Jun 26, 2013 2:02:09 PM oracle.sysman.emcp.EMDBPostConfig configureSoftwareLibrary
    INFO: Deploying Provisioning archives ...
    Jun 26, 2013 2:02:09 PM oracle.sysman.emcp.util.PlatformInterface addEnvVarToList
    CONFIG: Value for env var 'TZ' is '', discarding the sam

    Unfortunatley, it appears oracle isn't running anywhere
    The install apps wizard says everything is installed ok, but as I keep mentioning... it appears there are not oracle services running.
    Before you create a db, are there any oracle services running?
    Doesn't oracle install some web server? Where is it?
    Is there some other diagnostic I can run?
    I've uninstalled and reinstalled oracle already, to no avail.
    Thanks again..
    C:\oracle>type install\portlist.ini
    iSQL*Plus HTTP port number =5560
    Enterprise Manager Console HTTP Port (test) = 1158
    Enterprise Manager Agent Port (test) = 3938
    C:\oracle>telnet localhost 5560
    Connecting To localhost...Could not open connection to the host, on port 5560: C
    onnect failed
    C:\oracle>telnet localhost 1158
    Connecting To localhost...Could not open connection to the host, on port 1158: C
    onnect failed
    C:\oracle>telnet localhost 3938
    Connecting To localhost...Could not open connection to the host, on port 3938: C
    onnect failed
    C:\oracle>telnet localhost 5500
    Connecting To localhost...Could not open connection to the host, on port 5500: C
    onnect failed

  • I am trying to install Encore Pro CS3 on my Windows 8.1 PC. I get the error, Installer Database is Corrupt. Can anybody advise what I need to do.

    CS3

    This happens when you install with insufficient user privileges or tools like virus scanners interfere. Delete the caps.db, run teh cleaner tool and try again, avoiding the aforementioend issues by turning stuff off and using compatibility modes. Just get used to the fact that due to compatibility issues it may never work. Your version is pretty old for Win 8.1...
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    Important Directories | Mylenium's Error Code Database
    Mylenium

Maybe you are looking for