DML parameters info

Hi!
How i can receive information from Oracle (via OLE DB) about DML query parameters (e.g. select * from table where col1=?, col2=?). When i called ICommandWithParameters::GetParameterInfo i always receive DB_E_PARAMUNAVAILABLE
Thanks in advance.

If you want to check the type of the table variable against the bind variable provided by the program then I do not know how to get information via a specific ODBC call designed for this task, but you can query the Oracle rdbms dictionary views for this kind of information.
See
ALL_TABLES info on tables
ALL_TAB_COLUMNS column list for table/view with datatype length etc....
ALL_INDEXES info on indexes
ALL_IND_COLUMNS column list for indexes
ALL_SYNONYMS info on synonyms
ALL_VIEWS info on views
ALL_OBJECTS create time of tables, views, packages, etc....
HTH -- Mark D Powell --

Similar Messages

  • Parameter validation failed. It is not possible to provide valid values for all parameters

    I'm trying to test passing in parameter values from the URL.    I have RS 2008 .   I created an ultrasimple report based on a stored procedure output.  There is no validation, No available values, No default values.  
    I'm trying to run the report like this:
    /Reports/Pages/Report.aspx?ItemPath=%2fProduction%2fDBA+Reports%2fTest&iTest=1
    I get:
    Parameter validation failed. It is not possible to provide valid values for all parameters. (rsParameterError)
    the one int parameter is iTestId 
    The RS log file says the following:
    processing!ReportServer_0-54!9138!01/25/2013-09:22:51:: e ERROR: Throwing Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Parameter validation failed. It is not possible to provide valid values for all parameters., ;
      Info: Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Parameter validation failed. It is not possible to provide valid values for all parameters.
    What am I missing?

    Hi F-ram,
    From your description, you want to pass multiple parameters via URL, right? To pass multiple parameters through URL, we can use an ampersand (&) to separate them. For example, I have a report with two parameters p1 and p2. The report is deployed in a
    folder on the Report Server. When I navigate to the report on the Report Server, I can see the report URL is http://localhost/ReportServer_SQL2008NEW/Pages/ReportViewer.aspx?%2fFolder%2fReport&rs:Command=Render.
    If I need to pass parameters through URL, I can just add &p1=value1&p2=value2 at the end of the URL and the entire URL would be http://localhost/ReportServer_SQL2008NEW/Pages/ReportViewer.aspx?%2fFolder%2fReport&rs:Command=Render&p1=value1&p2=value2
    If you have any questions, please feel free to ask.
    Regards,
    Charlie Liao
    Charlie Liao
    TechNet Community Support

  • A Bug in 11.1 array interface

    I have just encounter some code that runs fine in Oracle 9 to 10 but in 11.1 I am getting a different result.
    basically I have this SQL
    "INSERT INTO $table ( row_1, row_2, row_3) VALUES (?,?,?)"
    and bind all three to this array
    @var2 = (2,2,2,2,'s',2,2,2,2,2);
    using OCIBindByName and OCIBindDynamic and then execute them with
    OCIStmtExecute, with a mode (IN)
    of OCI_BATCH_ERRORS OCI_COMMIT_ON_SUCCESS (or 160)
    what happens is the commit does not happen in 11 but does happen in 9~10?
    Did something change in the execute in 11 or should I raise this up to a bug status??

    Ok here is a trace of the OCI Calls I use, and yes I the last one I give is a OCITransCommit
    st_execute_array INSERT count=10 (ARRAY(0x1a725c8) ARRAY(0x1a934c4) undef)
    OCIBindByName(876dad8,19cab00,8755e68,":p1",3,0,1,1,0,0,0,0,0,DATA_AT_EXEC)=SUCCESS
    OCIBindDynamic(876eda8,8755e68,19caadc, phs_in,19caadc,phs_out)=SUCCESS
    OCIBindByName(876dad8,1a27810,8755e68,":p2",3,0,1,1,0,0,0,0,0,DATA_AT_EXEC)=SUCCESS
    OCIBindDynamic(876ec68,8755e68,1a277ec,phs_in,1a277ec,phs_out)=SUCCESS
    OCIBindByName(876dad8,1a2bc18,8755e68,":p3",3,0,1,1,0,0,0,0,0,DATA_AT_EXEC)=SUCCESS
    OCIBindDynamic(876eb28,8755e68,1a2bbf4,phs_in,1a2bbf4,phs_out)=SUCCESS
    OCIStmtExecute(8755db0,876dad8,8755e68,10,0,0,0,160)=SUCCESS_WITH_INFO ->(OCI_BATCH_ERRORS|OCI_COMMIT_ON_SUCCESS)<--
    OCIAttrGet(876dad8,OCI_HTYPE_STMT,140f4ec,0,129,8755e68)=SUCCESS
    OCIErrorGet(8755e68,1,"<NULL>",140f48c,"ORA-24381: error(s) in array DML",1024,2)=SUCCESS
    OCIErrorGet(8755e68,2,"<NULL>",140f48c,"ORA-24381: error(s) in array DML",1024,2)=NO_DATA
    OCIAttrGet(876dad8,OCI_HTYPE_STMT,140f55c,0,73,8755e68)=SUCCESS
    st_execute_array 1 errors in batch.
    OCIHandleAlloc(8727940,140f578,OCI_HTYPE_ERROR,0,0)=SUCCESS
    OCIHandleAlloc(8727940,140f570,OCI_HTYPE_ERROR,0,0)=SUCCESS
    OCIParamGet(8755e68,2,876c3c0,140f578,0)=SUCCESS
    OCIAttrGet(876c968,OCI_HTYPE_ERROR,140f550,0,74,8755e68)=SUCCESS
    st_execute_array error in row 4.
    OCIErrorGet(876c968,1,"<NULL>",140f4cc,"ORA-01722: invalid number",1024,2)=SUCCESS
         OCIErrorGet(876c968,2,"<NULL>",140f4cc,"ORA-01722: invalid number",1024,2)=NO_DATA
    OCIHandleFree(876c3c0,OCI_HTYPE_ERROR)=SUCCESS
    OCIHandleFree(876c968,OCI_HTYPE_ERROR)=SUCCESS
    OCITransCommit(8755db0,8755e68,0)=SUCCESS
    st_execute_array warning: ORA-24381: error(s) in array DML (SUCCESS_WITH_
    INFO: error possibly near <*> indicator at char 56 in 'INSERT INTO test_ea( row_1, row_2,
    row_3) VALUES (:p1,:<*>p2,:p3)') [for Statement "INSERT INTO test_ea( row_1,  row_2, row_
    3) VALUES (?,?,?)"]
    and here is the code snipits but it is take out of a larger program so I will not run
    sb4
    phs_in(dvoid octxp, OCIBind bindp, ub4 iter, ub4 index,
         dvoid **bufpp, ub4 alenp, ub1 piecep, dvoid **indpp)
         phs_t phs = (phs_t)octxp;
    STRLEN phs_len;
    AV *tuples_av;
         SV *sv;
         AV *av;
         SV **sv_p;
         /* Check for bind values supplied by tuple array. */
         tuples_av = phs->imp_sth->bind_tuples;
         if(tuples_av) {
              /* NOTE: we already checked the validity in ora_st_bind_for_array_exec(). */
              sv_p = av_fetch(tuples_av, phs->imp_sth->rowwise ? (int)iter : phs->idx, 0);
              av = (AV*)SvRV(*sv_p);
              sv_p = av_fetch(av, phs->imp_sth->rowwise ? phs->idx : (int)iter, 0);
              sv = *sv_p;
              if(SvOK(sv)) {
              *bufpp = SvPV(sv, phs_len);
              phs->alen = (phs->alen_incnull) ? phs_len+1 : phs_len;
              phs->indp = 0;
              } else {
              *bufpp = SvPVX(sv);
              phs->alen = 0;
              phs->indp = -1;
    *alenp  = phs->alen;
    *indpp  = &phs->indp;
    *piecep = OCI_ONE_PIECE;
    if (!tuples_av && (index > 0 || iter > 0))
              croak(" Arrays and multiple iterations not currently supported (in %d/%d)", index,iter);
    return OCI_CONTINUE;
    sb4
    phs_out(dvoid octxp, OCIBind bindp,
         ub4 iter,     /* execution itteration (0...)     */
         ub4 index,     /* array index (0..)          */
         dvoid **bufpp,     /* A pointer to a buffer to write the bind value/piece.     */
         ub4 **alenpp,     /* A pointer to a storage for OCI to fill in the size     */
                   /* of the bind value/piece after it has been read.     */
         ub1 piecep,     / */
         dvoid **indpp,     /* Return a pointer to contain the indicator value which either an sb2     */
                   /* value or a pointer to an indicator structure for named data types.     */
         ub2 **rcodepp)     /* Returns a pointer to contains the return code.     */
    phs_t phs = (phs_t)octxp;     /* context */
    if (phs->desc_h) { /* a  descriptor if present  (LOBs etc)*/
              *bufpp  = phs->desc_h;
              phs->alen = 0;
    } else {
              SV *sv = phs->sv;
              if (SvTYPE(sv) == SVt_RV && SvTYPE(SvRV(sv)) == SVt_PVAV) {
              sv = av_fetch((AV)SvRV(sv), (IV)iter, 1);
              if (!SvOK(sv))
                        sv_setpv(sv,"");
              bufpp = SvGROW(sv, (size_t)(((phs->maxlen < 28) ? 28 : phs->maxlen)+1)/for null*/);
              phs->alen = SvLEN(sv);     /* max buffer size now, actual data len later */
    *alenpp = &phs->alen;
    *indpp  = &phs->indp;
    *rcodepp= &phs->arcode;
    *piecep = OCI_ONE_PIECE;
    return OCI_CONTINUE;
    static int
    do_bind_array_exec(sth, imp_sth, phs)
    SV *sth;
    imp_sth_t *imp_sth;
    phs_t *phs;
         dTHX;
    sword status;
    OCIBindByName_log(imp_sth->stmhp, &phs->bndhp, imp_sth->errhp,
    (text*)phs->name, (sb4)strlen(phs->name),
    0,
    phs->maxlen ? (sb4)phs->maxlen : 1, /* else bind "" fails */
    (ub2)phs->ftype, 0,
    NULL, /* ub2 alen_ptr not needed with OCIBindDynamic /
    0,
    0, /* max elements that can fit in allocated array */
    NULL, /* (ptr to) current number of elements in array */
    (ub4)OCI_DATA_AT_EXEC,
    status);
    if (status != OCI_SUCCESS) {
    oci_error(sth, imp_sth->errhp, status, "OCIBindByName");
    return 0;
    OCIBindDynamic_log(phs->bndhp, imp_sth->errhp,
    (dvoid *)phs, phs_in,
    (dvoid *)phs, phs_out, status);
    if (status != OCI_SUCCESS) {
    oci_error(sth, imp_sth->errhp, status, "OCIBindDynamic");
    return 0;
    return 1;
    static void
    init_bind_for_array_exec(phs)
    phs_t *phs;
         dTHX;
    if (phs->sv == &sv_undef) { /* first bind for this placeholder  */
    phs->is_inout = 0;
    phs->maxlen = 1;
    /* treat Oracle7 SQLT_CUR as SQLT_RSET for Oracle8 */
    if (phs->ftype==102)
    phs->ftype = 116;
    /* some types require the trailing null included in the length. */
    /* SQLT_STR=5=STRING, SQLT_AVC=97=VARCHAR */
    phs->alen_incnull = (phs->ftype==SQLT_STR || phs->ftype==SQLT_AVC);
    int
    st_execute_array(sth, imp_sth, tuples, tuples_status, columns, exe_count)
    SV *sth;
    imp_sth_t *imp_sth;
    SV *tuples;
    SV *tuples_status;
    SV *columns;
    ub4 exe_count;
         sword status, exe_status;
    int is_select = (imp_sth->stmt_type == OCI_STMT_SELECT);
    AV tuples_av, tuples_status_av, *columns_av;
    ub4 oci_mode;
    ub4 num_errs;
    int i,j;
    int autocommit = 1;
    SV **sv_p;
         phs_t **phs;
         SV *sv;
         AV *av;
    int param_count;
    char namebuf[30];
    STRLEN len;
    int outparams = (imp_sth->out_params_av) ? AvFILL(imp_sth->out_params_av)+1 : 0;
    tuples_av = (AV*)SvRV(tuples);
    /* Check the `columns' parameter. */
    if(SvTRUE(columns)) {
    if(!SvROK(columns) || SvTYPE(SvRV(columns)) != SVt_PVAV) {
    croak("ora_st_execute_array(): columns not an array peference.");
    columns_av = (AV*)SvRV(columns);
    } else {
    columns_av = NULL;
    /* Check the `tuples_status' parameter. */
    if(SvTRUE(tuples_status)) {
    if(!SvROK(tuples_status) || SvTYPE(SvRV(tuples_status)) != SVt_PVAV) {
         croak("ora_st_execute_array(): tuples_status not an array reference.");
    tuples_status_av = (AV*)SvRV(tuples_status);
    av_fill(tuples_status_av, exe_count - 1);
    /* Fill in 'unknown' exe count in every element (know not how to get
    individual execute row counts from OCI). */
    for(i = 0; (unsigned int) i < exe_count; i++) {
    av_store(tuples_status_av, i, newSViv((IV)-1));
    } else {
    tuples_status_av = NULL;
    /* Nothing to do if no tuples. */
    if(exe_count <= 0)
    return 0;
    param_count=c_NUM_PARAMS(imp_sth);/*returns the # of parameters on the imp_sth struct*/
         phs = safemalloc(param_count*sizeof(*phs));
    memset(phs, 0, param_count*sizeof(*phs));
         for(j = 0; (unsigned int) j < exe_count; j++) {
         sv_p = av_fetch(tuples_av, j, 0);
    if(sv_p == NULL) {
    Safefree(phs);
    croak("Cannot fetch tuple %d", j);
    sv = *sv_p;
    if(!SvROK(sv) || SvTYPE(SvRV(sv)) != SVt_PVAV) {
    Safefree(phs);
    croak("Not an array ref in element %d", j);
    av = (AV*)SvRV(sv);
    for(i = 0; i < param_count; i++) {
    if(!phs) {
    SV **phs_svp;
    sprintf(namebuf, ":p%d", i+1);
    phs_svp = hv_fetch(imp_sth->all_params_hv,
    namebuf, strlen(namebuf), 0);
    if (phs_svp == NULL) {
    Safefree(phs);
    croak("Can't execute for non-existent placeholder :%d", i);
    phs[i] = (phs_t*)(void*)SvPVX(*phs_svp); /* placeholder struct */
    if(phs[i]->idx < 0) {
    Safefree(phs);
    croak("Placeholder %d not of ?/:1 type", i);
    init_bind_for_array_exec(phs[i]); /*bind the value */
    sv_p = av_fetch(av, phs[i]->idx, 0);
    if(sv_p == NULL) {
    Safefree(phs);
    croak("Cannot fetch value for param %d in entry %d", i, j);
                   sv = *sv_p;
         /*check to see if value sv is a null (undef) if it is upgrade it*/
                   if (!SvOK(sv))     {
                        if(SvUPGRADE(sv, SVt_PV)){} /* For GCC not to warn on unused result */
                   else {
              SvPV(sv, len);
         /* Find the value length, and increase maxlen if needed. */
         if(SvROK(sv)) {
         Safefree(phs);
         croak("Can't bind a reference (%s) for param %d, entry %d",
         neatsvpv(sv,0), i, j);
         if(len > (unsigned int) phs[i]->maxlen)
         phs[i]->maxlen = len;
         /* Do OCI bind calls on last iteration. */
         if( ((unsigned int) j ) == exe_count - 1 ) {
         if(!do_bind_array_exec(sth, imp_sth, phs[i])) {
         Safefree(phs);
         Safefree(phs);
    /* Store array of bind typles, for use in OCIBindDynamic() callback. */
    imp_sth->bind_tuples = tuples_av;
    imp_sth->rowwise = (columns_av == NULL);
    oci_mode = OCI_BATCH_ERRORS;
    if(autocommit)
    oci_mode |= OCI_COMMIT_ON_SUCCESS;
         OCIStmtExecute_log(imp_sth->svchp, imp_sth->stmhp, imp_sth->errhp,
    exe_count, 0, 0, 0, oci_mode, exe_status);
         imp_sth->bind_tuples = NULL;
    if (exe_status != OCI_SUCCESS) {
              oci_error(sth, imp_sth->errhp, exe_status, ora_sql_error(imp_sth,"OCIStmtExecute"));
    if(exe_status != OCI_SUCCESS_WITH_INFO)
    return -2;
    OCIAttrGet_log(imp_sth, &num_errs, 0, OCI_ATTR_NUM_DML_ERRORS, status);
    if(num_errs && tuples_status_av) {
    OCIError row_errhp, tmp_errhp;
    ub4 row_off;
    SV *err_svs[2];
    /*AV err_av;/
    sb4 err_code;
    err_svs[0] = newSViv((IV)0);
    err_svs[1] = newSVpvn("", 0);
    OCIHandleAlloc_log(imp_sth->envhp, &row_errhp, OCI_HTYPE_ERROR, status);
    OCIHandleAlloc_log(imp_sth->envhp, &tmp_errhp, OCI_HTYPE_ERROR, status);
    for(i = 0; (unsigned int) i < num_errs; i++) {
    OCIParamGet_log(imp_sth->errhp, OCI_HTYPE_ERROR,
    tmp_errhp, (dvoid *)&row_errhp,
    (ub4)i, status);
    OCIAttrGet_log(row_errhp, OCI_HTYPE_ERROR, &row_off, 0,
    OCI_ATTR_DML_ROW_OFFSET, imp_sth->errhp, status);
    sv_setpv(err_svs[1], "");
    err_code = oci_error_get(row_errhp, exe_status, NULL, err_svs[1], debug);
    sv_setiv(err_svs[0], (IV)err_code);
    av_store(tuples_status_av, row_off,
    newRV_noinc((SV *)(av_make(2, err_svs))));
    OCIHandleFree_log(tmp_errhp, OCI_HTYPE_ERROR, status);
    OCIHandleFree_log(row_errhp, OCI_HTYPE_ERROR, status);
    /* Do a commit here if autocommit is set, since Oracle
    doesn't do that for us when some rows are in error. */
    if(autocommit) {
    OCITransCommit_log(imp_sth->svchp, imp_sth->errhp,
    OCI_DEFAULT, status);
    if (status != OCI_SUCCESS) {
    oci_error(sth, imp_sth->errhp, status, "OCITransCommit");
    return -2;
    if(num_errs) {
    return -2;
    } else {
    ub4 row_count = 0;
              OCIAttrGet_stmhp_log(imp_sth, &row_count, 0, OCI_ATTR_ROW_COUNT, status);
    return row_count;

  • SAP Dialog Instance Installation.

    Hi
    Installation of ABAP System ECC6.0
    I am trying to install another application server(Dialog Instance) on
    different host. My both System Central(main server) and Dialog system in
    same domain. I am installing SAP Server as a Local Installation.
    I am able to installed Dialog Instance on same Host of Central System. But
    when I was trying to installation it on different Host, I got error on
    u201CStart Dialog Instanceu201D step that is last step it cant able to start Dialog
    Instance.
    Can you please tell me the Prerequisite for this type of setup as well as
    any other Setting related to u201Chostsu201D and u201Cservicesu201Dfile ? and also central system
    side settings.
    Following Error is occurred :
    u201CCopy Errors detected.................: 0
    Sync Errors detected.................: 0
    Warnings detected....................: 0
    INFO 2008-11-21 13:14:39
    Execute step createOsCol of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0|NW_Instance|i
    nd|ind|ind|ind|1|0.
    WARNING[E] 2008-11-21 13:14:40
    FSL-06002  Error 1060 (The specified service does not exist as an installed
    service.
    ) in execution of a 'OpenService' function, line (266), with parameter
    (SAPOsCol).
    INFO 2008-11-21 13:14:41
    Creating file C:\Program
    Files\sapinst_instdir\ERP\SYSTEM\ORA\HA\ABAP\DI\ntscmgr.exe.log.
    INFO 2008-11-21 13:14:41
    Output of
    i3643vm\sapmnt\PT6\SYS\exe\uc\NTI386\ntscmgr.exe remove SAPOsCol
    is written to the logfile ntscmgr.exe.log.
    INFO 2008-11-21 13:14:41
    Execution of the command "
    i3643vm\sapmnt\PT6\SYS\exe\uc\NTI386\ntscmgr.exe
    remove SAPOsCol" finished with return code 0. Output:
    failure: OpenService (0x424)
    INFO 2008-11-21 13:14:41
    The 'SAPOsCol' service on the 'Local' machine was created successfully.
    INFO 2008-11-21 13:14:45
    The service 'SAPOsCol' started successfully on host 'Local'.
    INFO 2008-11-21 13:14:46
    Execute step createService of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0|NW_Instance|i
    nd|ind|ind|ind|1|0.
    INFO 2008-11-21 13:14:46
    Creating SAP start service of instance PT6/D02...
    INFO 2008-11-21 13:14:47
    Creating file C:\Program
    Files\sapinst_instdir\ERP\SYSTEM\ORA\HA\ABAP\DI\sapstartsrv.exe.log.
    INFO 2008-11-21 13:14:47
    Output of D:\usr\sap\PT6\D02\exe\sapstartsrv.exe -r -q -p
    i3643vm\sapmnt\PT6\SYS\profile\START_D02_I3976vm2 -s PT6 -n 02 -U
    I3976vm2\SAPServicePT6 -P XXXXXX -e I3976vm2\pt6adm is written to the
    logfile sapstartsrv.exe.log.
    INFO 2008-11-21 13:14:53
    Execution of the command "D:\usr\sap\PT6\D02\exe\sapstartsrv.exe -r -q -p
    i3643vm\sapmnt\PT6\SYS\profile\START_D02_I3976vm2 -s PT6 -n 02 -U
    I3976vm2\SAPServicePT6 -P XXXXXX -e I3976vm2\pt6adm" finished with return
    code 0. Output:
    Service succesfully installed.
    INFO 2008-11-21 13:14:53
    Execute step setServiceSecurity of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0|NW_Instance|i
    nd|ind|ind|ind|1|0.
    INFO[E] 2008-11-21 13:14:58
    FSL-01027  Account user="I3976vm2\SAP_PT6_LocalAdmin" does not exist.
    INFO 2008-11-21 13:14:58
    Successfully set '(S-1-5-21-134454618-3270849815-193169279-1011, NONE, + |
    SERVICE_START | SERVICE_STOP)(S-1-5-18, NONE, +o | READ_CONTROL |
    SERVICE_ENUMERATE_DEPENDENTS | SERVICE_INTERROGATE | SERVICE_PAUSE_CONTINUE
    | SERVICE_QUERY_CONFIG | SERVICE_QUERY_STATUS | SERVICE_START | SERVICE_STOP
    | SERVICE_USER_DEFINED_CONTROL | STANDARD_RIGHTS_READ |
    STANDARD_RIGHTS_WRITE)(S-1-5-32-544, NONE, + | DELETE | READ_CONTROL |
    SERVICE_ALL_ACCESS | SERVICE_CHANGE_CONFIG | SERVICE_ENUMERATE_DEPENDENTS |
    SERVICE_INTERROGATE | SERVICE_PAUSE_CONTINUE | SERVICE_QUERY_CONFIG |
    SERVICE_QUERY_STATUS | SERVICE_START | SERVICE_STOP |
    SERVICE_USER_DEFINED_CONTROL | STANDARD_RIGHTS_READ | STANDARD_RIGHTS_WRITE
    | WRITE_DAC | WRITE_OWNER)(S-1-5-4, NONE, + | READ_CONTROL |
    SERVICE_ENUMERATE_DEPENDENTS | SERVICE_INTERROGATE | SERVICE_QUERY_CONFIG |
    SERVICE_QUERY_STATUS | SERVICE_USER_DEFINED_CONTROL | STANDARD_RIGHTS_READ |
    STANDARD_RIGHTS_WRITE)(S-1-5-6, NONE, + | READ_CONTROL |
    SERVICE_ENUMERATE_DEPENDENTS | SERVICE_INTERROGATE | SERVICE_QUERY_CONFIG |
    SERVICE_QUERY_STATUS | SERVICE_USER_DEFINED_CONTROL | STANDARD_RIGHTS_READ |
    STANDARD_RIGHTS_WRITE)(S-1-5-11, NONE, + | SERVICE_USER_DEFINED_CONTROL)(S-
    1-5-32-547, NONE, + | READ_CONTROL | SERVICE_ENUMERATE_DEPENDENTS |
    SERVICE_INTERROGATE | SERVICE_PAUSE_CONTINUE | SERVICE_QUERY_CONFIG |
    SERVICE_QUERY_STATUS | SERVICE_START | SERVICE_STOP |
    SERVICE_USER_DEFINED_CONTROL | STANDARD_RIGHTS_READ |
    STANDARD_RIGHTS_WRITE)(S-1-5-21-134454618-3270849815-193169279-1009, NONE, +
    | DELETE | READ_CONTROL | SERVICE_ALL_ACCESS | SERVICE_CHANGE_CONFIG |
    SERVICE_ENUMERATE_DEPENDENTS | SERVICE_INTERROGATE | SERVICE_PAUSE_CONTINUE
    | SERVICE_QUERY_CONFIG | SERVICE_QUERY_STATUS | SERVICE_START | SERVICE_STOP
    | SERVICE_USER_DEFINED_CONTROL | STANDARD_RIGHTS_READ |
    STANDARD_RIGHTS_WRITE | WRITE_DAC | WRITE_OWNER)' security to service
    I3976vm2\SAPPT6_02' on computer 'I3976vm2'.
    INFO 2008-11-21 13:14:58
    Execute step createCCMSService of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0|NW_Instance|i
    nd|ind|ind|ind|1|0.
    WARNING[E] 2008-11-21 13:14:58
    FSL-06002  Error 1060 (The specified service does not exist as an installed
    service.
    ) in execution of a 'OpenService' function, line (266), with parameter
    (sapccmsr.02).
    INFO 2008-11-21 13:14:59
    Creating file C:\Program
    Files\sapinst_instdir\ERP\SYSTEM\ORA\HA\ABAP\DI\ntscmgr.exe.log.
    INFO 2008-11-21 13:14:59
    Output of
    i3643vm\sapmnt\PT6\SYS\exe\uc\NTI386\ntscmgr.exe remove
    sapccmsr.02 is written to the logfile ntscmgr.exe.log.
    INFO 2008-11-21 13:14:59
    Execution of the command "
    i3643vm\sapmnt\PT6\SYS\exe\uc\NTI386\ntscmgr.exe
    remove sapccmsr.02" finished with return code 0. Output:
    failure: OpenService (0x424)
    INFO 2008-11-21 13:14:59
    Execute step setCCMSServiceSecurity of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0|NW_Instance|i
    nd|ind|ind|ind|1|0.
    INFO 2008-11-21 13:15:00
    Execute step registerEventsDLL of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0|NW_Instance|i
    nd|ind|ind|ind|1|0.
    INFO 2008-11-21 13:15:09
    Execute step setICMBndPermissions of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0|NW_Instance|i
    nd|ind|ind|ind|1|0.
    INFO 2008-11-21 13:15:09
    Execute step copyRFCExecSec of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0.
    INFO 2008-11-21 13:15:10
    Copied file '
    i3643vm/sapmnt/PT6/SYS/exe/uc/NTI386/rfcexec.sec' to
    'D:/usr/sap/PT6/D02/work'.
    INFO 2008-11-21 13:15:11
    Execute step callSetDB4PWD of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0.
    INFO 2008-11-21 13:15:13
    Execute step unpackJ2EEINSTALL of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0.
    INFO 2008-11-21 13:15:13
    Execute step runBatchconfig of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0.
    INFO 2008-11-21 13:15:13
    Execute step removeTempDirectory of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0.
    INFO 2008-11-21 13:15:14
    Execute step start of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0.
    INFO 2008-11-21 13:15:14
    Starting instance PT6/DVEBMGS00...
    INFO 2008-11-21 13:15:15
    Connect to message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:15:15
    Disconnect from message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:15:15
    Connect to message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:15:15
    Disconnect from message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:15:15
    Starting instance PT6/D02...
    INFO 2008-11-21 13:15:22
    Connect to message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:15:22
    Disconnect from message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:15:22
    Connect to message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:15:22
    Disconnect from message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:15:35
    Creating file C:\Program
    Files\sapinst_instdir\ERP\SYSTEM\ORA\HA\ABAP\DI\stop_PT6_D02.log.
    INFO 2008-11-21 13:15:35
    Output of
    i3643vm\sapmnt\PT6\SYS\exe\uc\NTI386\stopsap.exe name=PT6 nr=02
    SAPDIAHOST=I3976vm2 is written to the logfile stop_PT6_D02.log.
    INFO 2008-11-21 13:15:43
    Execution of the command "
    i3643vm\sapmnt\PT6\SYS\exe\uc\NTI386\stopsap.exe
    name=PT6 nr=02 SAPDIAHOST=I3976vm2" finished with return code 0. Output:
    STOPSAP executed succesfully
    INFO 2008-11-21 13:15:46
    Connect to message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:15:46
    Disconnect from message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:15:46
    Connect to message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:15:46
    Disconnect from message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:15:48
    Creating file C:\Program
    Files\sapinst_instdir\ERP\SYSTEM\ORA\HA\ABAP\DI\start_PT6_D02.log.
    INFO 2008-11-21 13:15:48
    Output of
    i3643vm\sapmnt\PT6\SYS\exe\uc\NTI386\startsap.exe name=PT6 nr=02
    SAPDIAHOST=I3976vm2 is written to the logfile start_PT6_D02.log.
    INFO 2008-11-21 13:16:21
    Execution of the command "
    i3643vm\sapmnt\PT6\SYS\exe\uc\NTI386
    \startsap.exe name=PT6 nr=02 SAPDIAHOST=I3976vm2" finished with return code
    0. Output:
    STARTSAP continues...
    INFO 2008-11-21 13:16:21
    Connect to message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:16:21
    Disconnect from message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:16:21
    Connect to message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:16:21
    Disconnect from message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:16:22
    State of instance PT6/D02 changed from ABAP: UNKNOWN to ABAP: UNKNOWN.
    INFO 2008-11-21 13:16:50
    Connect to message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:16:50
    Disconnect from message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:16:50
    Connect to message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:16:50
    Disconnect from message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:17:23
    Connect to message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:17:23
    Disconnect from message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:17:23
    Connect to message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:17:23
    Disconnect from message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:17:24
    State of instance PT6/D02 changed from ABAP: STARTING to ABAP: STARTING.
    ERROR 2008-11-21 13:17:24
    CJS-30105  Instance PT6/D02 reached state UNKNOWN after having state
    STARTING. Giving up.
    ERROR 2008-11-21 13:17:24
    FCO-00011  The step start with step key
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0|start was
    executed with status ERROR .
    Thanks in advance.
    Regards
    Manoj

    Hi, I'm Josephine and I almost have the same scenario as this problem reported earlier but it's just that we are using SAP Netweaver 04 SR1.
    However, I'm installing additional SAP Application server to our existing one.
    Our existing main server is in MS cluster. SAPPRD1 (DB Server in node A) and SAPPRD2 (SAP App Server in node B).  System ID is PRD and the CI Instance number is 00. The hostname where the USR folder is SAPPRD (hostname in the cluster environment but this is the SAPPRD2 server in node B).
    Now I'm installing additional SAP App server into a new host (SAPPRD3 & SAPPRD4) they are all in the same domain.
    But I would like to install the 2nd and 3rd SAP App server in a local host.
    While installing there was an error "Output: Service not started" the process "Create or reregister services" during the installation stopped.
    I used the installer under the folder InstMaster\IM01_NT_I386\SAPINST\NT\I386\sapinst.exe and run the Dialog Instance under the SAP Netweaver\ABAP System\MS SQL Server\Unicode\.
    This is the part of the sapinst log where the error starts:
    PHASE 2009-01-28 08:39:29
    Preparing DBMS-specific profile parameters
    INFO 2009-01-28 08:39:30
    Adapt operation t_SAPComponent_Profiles_SHARED processed successfully.
    PHASE 2009-01-28 08:39:31
    Handle services
    INFO 2009-01-28 08:39:32
    Creating file C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_ABAP_MSS_UC\DI\sapstartsrv.exe.log.
    INFO 2009-01-28 08:39:32
    Output of C:\usr\sap\PRD\D02\exe/sapstartsrv.exe '-r' '-q' '-p' '
    sapprd\sapmnt\PRD\SYS\profile\START_D02_sapprd4' '-s' 'PRD' '-n' '02' '-U' 'sapprd4\SAPServicePRD' '-P' 'XXXXXX' '-e' 'sapprd4\prdadm' is written to the logfile sapstartsrv.exe.log.
    WARNING 2009-01-28 08:39:35
    Execution of the command "C:\usr\sap\PRD\D02\exe/sapstartsrv.exe '-r' '-q' '-p' '
    sapprd\sapmnt\PRD\SYS\profile\START_D02_sapprd4' '-s' 'PRD' '-n' '02' '-U' 'sapprd4\SAPServicePRD' '-P' 'XXXXXX' '-e' 'sapprd4\prdadm'" finished with return code -1. Output: Service not started.
    ERROR 2009-01-28 08:39:35
    MOS-01011  'C:\usr\sap\PRD\D02\exe/sapstartsrv.exe' returned with '-1'.
    Please help me on this I can't successfully install another dialog instance to add to our existing one now.
    Thank you and hoping for your reply.
    Yours truly,
    Josephine Dejolde

  • Error System Copy on cluster using R3load

    Hi currently we are doing a system copy on Cluster using R3load
    Source System win2003 SP2 32bit, MSSQl2000 SP4 32 bit
    Target System  win 2003 Sp2 64bit, MSSQL2005 SP2 X64 Server
    We have successfully installed MSSQL2005 Sp2 64 bit
    We have successfully installed Central Instance
    When we are trying to install the database Instance using R3load dump
    We are getting the fallowing error
    ERROR 2008-09-07 20:55:14
    MDB-05053  Errors when executing sql command: <p nr="0"/> If this message is displayed as a warning - it can be ignored. If this is an error - call your SAP support.
    Please help me out to resolve this issue
    Thanx
    Jarish
    Entire log
    INFO 2008-09-07 20:26:00
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/keydb.xml to: q0w9e9r8t7.1.xml.
    INFO 2008-09-07 20:26:00
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/keydb.xml to: q0w9e9r8t7.1.xml.
    INFO 2008-09-07 20:26:00
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\q0w9e9r8t7.1.xml.
    INFO 2008-09-07 20:26:01
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/keydb.xml to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/keydb.1.xml.
    INFO 2008-09-07 20:26:01
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/keydb.xml to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/keydb.1.xml.
    INFO 2008-09-07 20:26:01
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\keydb.1.xml.
    INFO 2008-09-07 20:26:01
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\change.log.
    INFO 2008-09-07 20:26:01
    Output of change user /install is written to the logfile change.log.
    WARNING 2008-09-07 20:26:01
    Execution of the command "change user /install" finished with return code 1. Output:
    Install mode does not apply to a Terminal server configured for remote administration.
    INFO 2008-09-07 20:26:01
    File not found: [C:/DOCUME1/ADMINI1.SBA/LOCALS~1/Temp/2/sapinst_exe.1064.1220804594/msvcp71.dll].
    INFO 2008-09-07 20:26:01
    File not found: [C:/DOCUME1/ADMINI1.SBA/LOCALS~1/Temp/2/sapinst_exe.1064.1220804594/msvcr71.dll].
    INFO 2008-09-07 20:26:01
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'SBA\Administrator' on host '.'.
    INFO 2008-09-07 20:26:01
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\summary.html.
    PHASE 2008-09-07 20:26:01
    Prepare the installation program.
    INFO 2008-09-07 20:26:03
    Installation start: Sunday, 07 September 2008, 20:26:00; installation directory: C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB; product to be installed: SAP R3E 4.7 Extension Set 2 SR1> ABAP System> MS SQL Server> Non-Unicode> Database Instance Installation
    INFO 2008-09-07 20:26:38
    Host operation t_HostInfo_SHARED processed successfully.
    INFO 2008-09-07 20:28:26
    The 'saploc' share exists in directory 'S:/usr/sap'. Choosing drive S: as the SAP system drive.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/mssversions.xml to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/mssversions.xml to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mssversions.xml.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/db_all.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/db_all.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\db_all.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/db_di_clust.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/db_di_clust.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\db_di_clust.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/db_std_checks.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/db_std_checks.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\db_std_checks.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_get_defpath.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_get_defpath.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mss_get_defpath.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_get_r3db_config.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_get_r3db_config.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mss_get_r3db_config.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_init_jc.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_init_jc.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mss_init_jc.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_r3db_gconf.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_r3db_gconf.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mss_r3db_gconf.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_r3db_lconf.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_r3db_lconf.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mss_r3db_lconf.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_r3srv_conf.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_r3srv_conf.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mss_r3srv_conf.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_schema_cnv.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_schema_cnv.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mss_schema_cnv.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_sps_droptmp.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_sps_droptmp.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mss_sps_droptmp.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_users_sid_drop.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_users_sid_drop.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mss_users_sid_drop.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_users_sid_drop_objs.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/mss_users_sid_drop_objs.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mss_users_sid_drop_objs.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/srvchk.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/srvchk.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\srvchk.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/usrabap.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/usrabap.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\usrabap.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/usrstd.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL/usrstd.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\usrstd.sql.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL9/db_all.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL9/db_all.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL9/db_std_checks.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL9/db_std_checks.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL9/mss_r3db_gconf.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL9/mss_r3db_gconf.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL9/usrabap.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL9/usrabap.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL9/usrstd.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:29:17
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/SQL9/usrstd.sql to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO[E] 2008-09-07 20:30:00
    Account group="ORA_PRD_DBA" does not exist.
    INFO[E] 2008-09-07 20:30:00
    Account group="ORA_PRD_OPER" does not exist.
    INFO[E] 2008-09-07 20:30:00
    Account group="SBA\dbprdctl" does not exist.
    INFO 2008-09-07 20:48:16
    Copying file E:/Export_PRD/DB/MSS/DBSIZE.XML to: DBSIZE.XML.
    INFO 2008-09-07 20:48:16
    Copying file E:/Export_PRD/DB/MSS/DBSIZE.XML to: DBSIZE.XML.
    INFO 2008-09-07 20:48:16
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\DBSIZE.XML.
    INFO 2008-09-07 20:50:58
    Package table created
    INFO 2008-09-07 20:50:58
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/mssprocs620.dat to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:50:58
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/mssprocs620.dat to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:50:58
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mssprocs620.dat.
    INFO 2008-09-07 20:50:58
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/mssprocs620BW.dat to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:50:58
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/mssprocs620BW.dat to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:50:58
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mssprocs620BW.dat.
    INFO 2008-09-07 20:50:58
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/mssprocs640.dat to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:50:58
    Copying file E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08/IM_WINDOWS_X86_64/SAPINST/NT/COMMON/MSS/mssprocs640.dat to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB.
    INFO 2008-09-07 20:50:58
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mssprocs640.dat.
    INFO 2008-09-07 20:53:12
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/summary.html to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/summary.1.html.
    INFO 2008-09-07 20:53:12
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/summary.html to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/summary.1.html.
    INFO 2008-09-07 20:53:12
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\summary.1.html.
    PHASE 2008-09-07 20:53:12
    SAP Web Application Server
    PHASE 2008-09-07 20:53:12
    Request common parameters of SAP system
    PHASE 2008-09-07 20:53:12
    Collecting information on database configuration
    PHASE 2008-09-07 20:53:12
    Collecting information on database configuration
    PHASE 2008-09-07 20:53:12
    Create accounts
    INFO 2008-09-07 20:53:12
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/product.xml to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/product.1.xml.
    INFO 2008-09-07 20:53:12
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/product.xml to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/product.1.xml.
    INFO 2008-09-07 20:53:12
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\product.1.xml.
    INFO 2008-09-07 20:53:12
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/product.xml to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/product.2.xml.
    INFO 2008-09-07 20:53:12
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/product.xml to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/product.2.xml.
    INFO 2008-09-07 20:53:12
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\product.2.xml.
    INFO 2008-09-07 20:53:12
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/mssversions.xml to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/mssversions.1.xml.
    INFO 2008-09-07 20:53:12
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/mssversions.xml to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/mssversions.1.xml.
    INFO 2008-09-07 20:53:12
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\mssversions.1.xml.
    INFO 2008-09-07 20:53:12
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/DBSIZE.XML to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/DBSIZE.1.XML.
    INFO 2008-09-07 20:53:12
    Copying file C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/DBSIZE.XML to: C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/DBSIZE.1.XML.
    INFO 2008-09-07 20:53:12
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\DBSIZE.1.XML.
    WARNING 2008-09-07 20:53:25
    Existing account SAPMssXPUser has the primary group None, not Administrators. Changing primary group.
    PHASE 2008-09-07 20:53:25
    Preparing OS account for MCOD installation
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    PHASE 2008-09-07 20:53:25
    Request operating system user information
    INFO 2008-09-07 20:53:26
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'S-1-5-21-2140900914-1967063802-3263448767-500' on host 'QASECC1'.
    INFO 2008-09-07 20:53:26
    Successfully added privileges 'SeServiceLogonRight SeNetworkLogonRight SeDenyInteractiveLogonRight SeDenyRemoteInteractiveLogonRight' to account 'SBA\SAPServicePRD' on host 'QASECC1'.
    INFO 2008-09-07 20:53:26
    Successfully added privileges 'SeTcbPrivilege SeAssignPrimaryTokenPrivilege SeIncreaseQuotaPrivilege' to account 'SBA\prdadm' on host 'QASECC1'.
    INFO 2008-09-07 20:53:26
    All 'tNT_RegistryEntries' table rows evaluated.
    PHASE 2008-09-07 20:53:27
    Preparing DBMS-specific environment variables
    INFO 2008-09-07 20:53:27
    Switched to user: prdadm.
    INFO 2008-09-07 20:53:27
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-09-07 20:53:27
    Switched to user: prdadm.
    INFO 2008-09-07 20:53:27
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-09-07 20:53:28
    Switched to user: prdadm.
    INFO 2008-09-07 20:53:28
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-09-07 20:53:28
    Switched to user: prdadm.
    INFO 2008-09-07 20:53:28
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-09-07 20:53:28
    Switched to user: prdadm.
    INFO 2008-09-07 20:53:28
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-09-07 20:53:28
    Switched to user: prdadm.
    INFO 2008-09-07 20:53:28
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-09-07 20:53:29
    Switched to user: prdadm.
    INFO 2008-09-07 20:53:29
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-09-07 20:53:29
    Switched to user: prdadm.
    INFO 2008-09-07 20:53:29
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    INFO 2008-09-07 20:53:29
    Switched to user: prdadm.
    INFO 2008-09-07 20:53:29
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    PHASE 2008-09-07 20:53:29
    Adapt file system
    PHASE 2008-09-07 20:53:29
    Prepare check/adapt SAP instance file system
    INFO 2008-09-07 20:53:30
    File system node S:\usr\sap exists.
    INFO 2008-09-07 20:53:30
    All file system node operations of table t_SAPComponent_Filesystem_Action_SHARED processed successfully.
    INFO 2008-09-07 20:53:30
    File system node S:\usr\sap/PRD exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node S:\usr\sap/tmp exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans/tmp exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans/EPS exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans/EPS/in exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans/EPS/out exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans/EPS/log exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans/bin exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans/buffer exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans/cofiles exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans/data exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans/etc exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans/log exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    File system node
    DEVECC64\sapmnt\trans/sapnames exists already. Nothing to do.
    INFO 2008-09-07 20:53:30
    All file system node operations of table t_SAPComponent_Filesystem_Action_SHARED processed successfully.
    INFO 2008-09-07 20:53:30
    All file system node operations of table t_SAPComponent_Filesystem_Action_SHARED processed successfully.
    INFO 2008-09-07 20:53:31
    All NT shares while processing the table 'tNT_SHARE' created successfully.
    PHASE 2008-09-07 20:53:31
    Extract archives
    INFO 2008-09-07 20:53:31
    All file system node operations of table t_SAPComponent_Archives_FORMS_SHARED processed successfully.
    PHASE 2008-09-07 20:53:31
    Extract SAP System kernel archives
    INFO 2008-09-07 20:53:32
    Copying file S:/usr/sap/PRD/SYS/exe/run/rfcexec.sec to: /rfcexec.sec.
    INFO 2008-09-07 20:53:32
    Copying file S:/usr/sap/PRD/SYS/exe/run/rfcexec.sec to: /rfcexec.sec.
    INFO 2008-09-07 20:53:32
    Creating file C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB\SAPMMC.SAR.log.
    INFO 2008-09-07 20:53:33
    C:/DOCUME1/ADMINI1.SBA/LOCALS~1/Temp/2/sapinst_exe.1064.1220804594\sapcar.exe -xvgf E:/4.7_200Ext/51033746_15_Inst_Master/Installation_Master_6.20_6.40_05_08\IM_WINDOWS_X86_64/SAPINST/NT/AMD64/MMC/SAPMMC.SAR, -R C:\Program Files\sapinst_instdir\R3E47X2\SYSTEM\ABAP\MSS\NUC\DB succeeded. (See output in './SAPMMC.SAR.log'.)
    INFO 2008-09-07 20:53:33
    While copying node C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/sapmmc.dll to C:/WINDOWS/system32/sapmmc.dll, source is not newer than the target. Nothing to do.
    INFO 2008-09-07 20:53:33
    While copying node C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/sapmmcada.dll to C:/WINDOWS/system32/sapmmcada.dll, source is not newer than the target. Nothing to do.
    INFO 2008-09-07 20:53:33
    While copying node C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/sapmmcdb6.dll to C:/WINDOWS/system32/sapmmcdb6.dll, source is not newer than the target. Nothing to do.
    INFO 2008-09-07 20:53:33
    While copying node C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/sapmmcinf.dll to C:/WINDOWS/system32/sapmmcinf.dll, source is not newer than the target. Nothing to do.
    INFO 2008-09-07 20:53:33
    While copying node C:/Program Files/sapinst_instdir/R3E47X2/SYSTEM/ABAP/MSS/NUC/DB/sapmmcms.dll to C:/WINDOWS/system32/sapmmcms.dll, source is not newer than the target. Nothing to do.
    INFO 2008-09-07 20:53:33
    All file system node operations of table t_SAPComponent_Archives_Copy_SHARED processed successfully.
    INFO 2008-09-07 20:53:33
    Removing file S:\usr\sap\PRD\SYS\exe\run\strdbs.cmd.
    INFO 2008-09-07 20:53:33
    Creating file S:\usr\sap\PRD\SYS\exe\run\strdbs.cmd.
    INFO 2008-09-07 20:53:34
    All 'tNT_RegistryEntries' table rows evaluated.
    INFO 2008-09-07 20:53:34
    All NT registry entries from the tNT_RegistryEntries table created or updated successfully.
    PHASE 2008-09-07 20:53:34
    Creating service ports
    PHASE 2008-09-07 20:53:35
    Generate instance profiles
    PHASE 2008-09-07 20:53:35
    Create versions of default profile, instance profile and start profile
    INFO 2008-09-07 20:53:35
    All file system node operations of table t_SAPComponent_Profiles_FORMS_SHARED processed successfully.
    PHASE 2008-09-07 20:53:35
    Preparing DBMS-specific profile parameters
    INFO 2008-09-07 20:53:35
    Adapt operation t_SAPComponent_Profiles_SHARED processed successfully.
    PHASE 2008-09-07 20:53:35
    Setting up database server
    ERROR 2008-09-07 20:53:36
    MDB-05053  Errors when executing sql command: <p nr="0"/> If this message is displayed as a warning - it can be ignored. If this is an error - call your SAP support.
    ERROR 2008-09-07 20:55:14
    MDB-05053  Errors when executing sql command: <p nr="0"/> If this message is displayed as a warning - it can be ignored. If this is an error - call your SAP support.

    Hi,
    I think some of the Microsoft runtime DLLs are missing, which you can observe in the above pasted log :-
    INFO 2008-09-07 20:26:01
    File not found: C:/DOCUME1/ADMINI1.SBA/LOCALS~1/Temp/2/sapinst_exe.1064.1220804594/msvcp71.dll.
    INFO 2008-09-07 20:26:01
    File not found: C:/DOCUME1/ADMINI1.SBA/LOCALS~1/Temp/2/sapinst_exe.1064.1220804594/msvcr71.dll.
    Do have a look at snote Note 684106 - Microsoft runtime DLLs to drill more in to the issue.
    Rgds
    Radhakrishna D S

  • Database export stops with the following warnings.

    Hello,
    I am doing a Database Export/Import Activity. My DB is MS SQL server 2000 and SAP R/3 (4.6C SR2 , 4.6D kernel).
    When i try to do a DB export with option split STR and EXT files, my export stops abruptly without giving any erorrs but with a whole list of warnings.
    My splitting procedure is using SPLITSTR.PL perl script. I am not using the latest java based split.
    For your reference i am pasting the whole DBEXPORT.log file.
    (sorry its bit large,,, i hope you dont mind ) )
    INFO 2008-03-29 14:36:21 CommandFileController SyFileVersionSave:736
        Saving original content of file
        C:\Users\prdadm\Install\DBEXPORT.R3S ...
    INFO 2008-03-29 14:36:21 CommandFileController SyFileCopy:676
        Copying source file C:\Users\prdadm\Install\DBEXPORT.R3S to
        target file C:\Users\prdadm\Install\DBEXPORT.R3S.1 ...
    INFO 2008-03-29 14:36:21 CommandFileController SyPermissionSet:2207
        Changing permission for file C:\Users\prdadm\Install\DBEXPORT.R3S
        from 777 to 666.
    INFO 2008-03-29 14:36:21 Main
        Preparation successfully completed.
    INFO 2008-03-29 14:36:23 DBEXPORTINSTANCE_NT_IND DefValForKey_OS:0
        R3Setup found the share 'SAPLOC' on drive E:.
    INFO 2008-03-29 14:36:37 DBEXPORTINSTANCE_NT_IND SyCheckHostnameLookup:434
        checking host name lookup for 'ELESAPTMP1'
    INFO 2008-03-29 14:36:37 DBEXPORTINSTANCE_NT_IND SyCheckHostnameLookup:473
        offical host name for 'ELESAPTMP1' is 'ELESAPTMP1.lntebg.com'.
    INFO 2008-03-29 14:36:37 DBEXPORTINSTANCE_NT_IND SyCheckHostnameLookup:541
        host 'ELESAPTMP1' has ip address '172.18.101.21'
    INFO 2008-03-29 14:36:37 DBEXPORTINSTANCE_NT_IND SyCheckHostnameLookup:581
        offical host name for '172.18.101.21' is 'ELESAPTMP1'.
    INFO 2008-03-29 14:36:37 DBEXPORTINSTANCE_NT_IND SyCheckHostnameLookup:434
        checking host name lookup for 'ELESAPTMP1'
    INFO 2008-03-29 14:36:37 DBEXPORTINSTANCE_NT_IND SyCheckHostnameLookup:473
        offical host name for 'ELESAPTMP1' is 'ELESAPTMP1.lntebg.com'.
    INFO 2008-03-29 14:36:37 DBEXPORTINSTANCE_NT_IND SyCheckHostnameLookup:541
        host 'ELESAPTMP1' has ip address '172.18.101.21'
    INFO 2008-03-29 14:36:37 DBEXPORTINSTANCE_NT_IND SyCheckHostnameLookup:581
        offical host name for '172.18.101.21' is 'ELESAPTMP1'.
    INFO 2008-03-29 14:36:37 DBEXPORTINSTANCE_NT_IND SyCheckHostnameLookup:434
        checking host name lookup for 'ELESAPTMP1'
    INFO 2008-03-29 14:36:37 DBEXPORTINSTANCE_NT_IND SyCheckHostnameLookup:473
        offical host name for 'ELESAPTMP1' is 'ELESAPTMP1.lntebg.com'.
    INFO 2008-03-29 14:36:37 DBEXPORTINSTANCE_NT_IND SyCheckHostnameLookup:541
        host 'ELESAPTMP1' has ip address '172.18.101.21'
    INFO 2008-03-29 14:36:37 DBEXPORTINSTANCE_NT_IND SyCheckHostnameLookup:581
        offical host name for '172.18.101.21' is 'ELESAPTMP1'.
    INFO 2008-03-29 14:36:37 DBEXPORTINSTANCE_NT_IND SyCheckHostnameLookup:434
        checking host name lookup for 'ELESAPTMP1'
    INFO 2008-03-29 14:36:37 DBEXPORTINSTANCE_NT_IND SyCheckHostnameLookup:473
        offical host name for 'ELESAPTMP1' is 'ELESAPTMP1.lntebg.com'.
    INFO 2008-03-29 14:36:37 DBEXPORTINSTANCE_NT_IND SyCheckHostnameLookup:541
        host 'ELESAPTMP1' has ip address '172.18.101.21'
    INFO 2008-03-29 14:36:37 DBEXPORTINSTANCE_NT_IND SyCheckHostnameLookup:581
        offical host name for '172.18.101.21' is 'ELESAPTMP1'.
    INFO 2008-03-29 14:37:17 DBEXPSERVER_NT_IND InternalColdKeyCheck:0
        The CD CDEXPORT1 will not be copied.
    INFO 2008-03-29 14:37:36 DBEXPORTINSTANCE_NT_IND CheckValueForKey:0
        The installation phase is starting now. Please look in the log
        file for further information about current actions.
    INFO 2008-03-29 14:37:36
        Requesting Export Details
    INFO 2008-03-29 14:37:36
        Requesting Export Details
    INFO 2008-03-29 14:37:36 DBEXPCOMMONDBENV_NT_MSS SyCoprocessCreate:931
        Creating coprocess osql.exe ...
    INFO 2008-03-29 14:37:36 DBEXPCOMMONDBENV_NT_MSS SyCoprocessExecute:171
        The process osql.exe puts out:
    INFO 2008-03-29 14:37:37 DBEXPCOMMONDBENV_NT_MSS GetDbVersion:0
        Version String read from MS SQL Server: Microsoft SQL Server
        2000 - 8.00.2039 (Intel X86)       May  3 2005 23:18:38       Copyright
        (c) 1988-2003 Microsoft Corporation      Enterprise Edition on
        Windows NT 5.2 (Build 3790: Service Pack 2)
    INFO 2008-03-29 14:37:37 DBEXPCOMMONDBENV_NT_MSS GetDbVersion:0
        Major Version read from MS SQL Server: 800
    INFO 2008-03-29 14:37:37 DBEXPCOMMONDBENV_NT_MSS GetDbVersion:0
        Minor Version read from MS SQL Server: 2039
    INFO 2008-03-29 14:37:37 DBEXPCOMMONDBENV_NT_MSS SyCoprocessCreate:931
        Creating coprocess osql.exe ...
    INFO 2008-03-29 14:37:37 DBEXPCOMMONDBENV_NT_MSS SyCoprocessExecute:171
        The process osql.exe puts out:
    INFO 2008-03-29 14:37:37 DBEXPCOMMONDBENV_NT_MSS InternalInstallationDo:0
        You have a correctly configured MS SQL Server with charset cp850
        and sortorder bin_cp850!
    INFO 2008-03-29 14:37:37 DBEXPCOMMONDBENV_NT_MSS InternalInstallationDo:0
    ooo MSGERR Wrong type of Parameter: area:74, id:1, typeofParam:4, char:d
    ooo MSGERR Dump of parameter with valid type:
    ooo MSGWAR MsgAreaName:SY_AREA_RI_MSGL, MsgIdName:RI_MSGL_MIN_MAJORVERSION
    ooo MSGERR --- SYLOGDATA:ParaNr: 1, Typ:4
    ooo MSGERR --- SYLOGDATA:ParaNr: 2, Typ:1, long=0
    ooo MSGERR --- SYLOGDATA:ParaNr: 3, Typ:1, long=0
    ooo MSGERR --- SYLOGDATA:ParaNr: 4, Typ:1, long=0
    ooo MSGERR --- SYLOGDATA:ParaNr: 5, Typ:1, long=0
    ooo MSGERR --- SYLOGDATA:ParaNr: 6, Typ:1, long=0
    ooo MSGERR --- SYLOGDATA:ParaNr: 7, Typ:1, long=0
    ooo MSGERR --- SYLOGDATA:ParaNr: 8, Typ:1, long=0
    ooo MSGERR --- SYLOGDATA:ParaNr: 9, Typ:1, long=0
    ooo MSGERR --- SYLOGDATA:ParaNr:10, Typ:1, long=0
    ooo MSGERR Wrong type of Parameter: area:74, id:1, typeofParam:4, char:d
    ooo MSGERR Dump of parameter with valid type:
    ooo MSGWAR MsgAreaName:SY_AREA_RI_MSGL, MsgIdName:RI_MSGL_MIN_MAJORVERSION
    ooo MSGERR --- SYLOGDATA:ParaNr: 1, Typ:4
    ooo MSGERR --- SYLOGDATA:ParaNr: 2, Typ:1, long=0
    ooo MSGERR --- SYLOGDATA:ParaNr: 3, Typ:1, long=0
    ooo MSGERR --- SYLOGDATA:ParaNr: 4, Typ:1, long=0
    ooo MSGERR --- SYLOGDATA:ParaNr: 5, Typ:1, long=0
    ooo MSGERR --- SYLOGDATA:ParaNr: 6, Typ:1, long=0
    ooo MSGERR --- SYLOGDATA:ParaNr: 7, Typ:1, long=0
    ooo MSGERR --- SYLOGDATA:ParaNr: 8, Typ:1, long=0
    ooo MSGERR --- SYLOGDATA:ParaNr: 9, Typ:1, long=0
    ooo MSGERR --- SYLOGDATA:ParaNr:10, Typ:1, long=0    Your actual major version of MS SQL Server is
    INFO 2008-03-29 14:37:37
        Requesting Export-Specific Parameters
    INFO 2008-03-29 14:37:37
        Testing the Database Connect
    INFO 2008-03-29 14:37:37 DBDBSLTESTCONNECT_NT_IND InternalInstallationDo:0
        See logfile dev_dbsl for further information.
    INFO 2008-03-29 14:37:37 DBEXPSERVER_NT_IND InternalWarmKeyCheck:0
        The CD CDEXPORT1 will not be copied.
    INFO 2008-03-29 14:37:37
        Requesting Information on CD-ROMs
    INFO 2008-03-29 14:37:37
        Creating the Export Directories
    INFO 2008-03-29 14:37:37 DBEXPDIRECTORIES_NT_IND SyDirCreate:353
        Checking existence of directory F:\EXPORT~2\DB. If it does not
        exist creating it with user NULL_POINTER, group NULL_POINTER and
        permission 7 ...
    INFO 2008-03-29 14:37:37 DBEXPDIRECTORIES_NT_IND SyDirCreate:2207
        Changing permission for file F:\EXPORT~2\DB from 777 to 7.
    INFO 2008-03-29 14:37:37 DBEXPDIRECTORIES_NT_IND SyDirCreate:353
        Checking existence of directory F:\EXPORT~2\DB\ORA. If it does
        not exist creating it with user NULL_POINTER, group NULL_POINTER
        and permission 7 ...
    INFO 2008-03-29 14:37:37 DBEXPDIRECTORIES_NT_IND SyDirCreate:2207
        Changing permission for file F:\EXPORT~2\DB\ORA from 777 to 7.
    INFO 2008-03-29 14:37:37 DBEXPDIRECTORIES_NT_IND SyDirCreate:353
        Checking existence of directory F:\EXPORT~2\DB\INF. If it does
        not exist creating it with user NULL_POINTER, group NULL_POINTER
        and permission 7 ...
    INFO 2008-03-29 14:37:37 DBEXPDIRECTORIES_NT_IND SyDirCreate:2207
        Changing permission for file F:\EXPORT~2\DB\INF from 777 to 7.
    INFO 2008-03-29 14:37:37 DBEXPDIRECTORIES_NT_IND SyDirCreate:353
        Checking existence of directory F:\EXPORT~2\DB\ADA. If it does
        not exist creating it with user NULL_POINTER, group NULL_POINTER
        and permission 7 ...
    INFO 2008-03-29 14:37:37 DBEXPDIRECTORIES_NT_IND SyDirCreate:2207
        Changing permission for file F:\EXPORT~2\DB\ADA from 777 to 7.
    INFO 2008-03-29 14:37:37 DBEXPDIRECTORIES_NT_IND SyDirCreate:353
        Checking existence of directory F:\EXPORT~2\DB\MSS. If it does
        not exist creating it with user NULL_POINTER, group NULL_POINTER
        and permission 7 ...
    INFO 2008-03-29 14:37:37 DBEXPDIRECTORIES_NT_IND SyDirCreate:2207
        Changing permission for file F:\EXPORT~2\DB\MSS from 777 to 7.
    INFO 2008-03-29 14:37:37 DBEXPDIRECTORIES_NT_IND SyDirCreate:353
        Checking existence of directory F:\EXPORT~2\DB\DB2. If it does
        not exist creating it with user NULL_POINTER, group NULL_POINTER
        and permission 7 ...
    INFO 2008-03-29 14:37:37 DBEXPDIRECTORIES_NT_IND SyDirCreate:2207
        Changing permission for file F:\EXPORT~2\DB\DB2 from 777 to 7.
    INFO 2008-03-29 14:37:37 DBEXPDIRECTORIES_NT_IND SyDirCreate:353
        Checking existence of directory F:\EXPORT~2\DB\DB4. If it does
        not exist creating it with user NULL_POINTER, group NULL_POINTER
        and permission 7 ...
    INFO 2008-03-29 14:37:37 DBEXPDIRECTORIES_NT_IND SyDirCreate:2207
        Changing permission for file F:\EXPORT~2\DB\DB4 from 777 to 7.
    INFO 2008-03-29 14:37:37 DBEXPDIRECTORIES_NT_IND SyDirCreate:353
        Checking existence of directory F:\EXPORT~2\DB\DB6. If it does
        not exist creating it with user NULL_POINTER, group NULL_POINTER
        and permission 7 ...
    INFO 2008-03-29 14:37:37 DBEXPDIRECTORIES_NT_IND SyDirCreate:2207
        Changing permission for file F:\EXPORT~2\DB\DB6 from 777 to 7.
    INFO 2008-03-29 14:37:37 DBEXPDIRECTORIES_NT_IND SyDirCreate:353
        Checking existence of directory F:\EXPORT~2\DATA. If it does not
        exist creating it with user NULL_POINTER, group NULL_POINTER and
        permission 7 ...
    INFO 2008-03-29 14:37:37 DBEXPDIRECTORIES_NT_IND SyDirCreate:2207
        Changing permission for file F:\EXPORT~2\DATA from 777 to 7.
    INFO 2008-03-29 14:37:37
        Creating the R3load Control Files
    INFO 2008-03-29 14:37:37 R3LDCTL_NT_IND R3ldctlDo:0
        C:\Users\prdadm\Install\R3LDCTL.EXE -p C:\Users\prdadm\Install
    INFO 2008-03-29 14:37:37 R3LDCTL_NT_IND SyCoprocessCreate:931
        Creating coprocess C:\Users\prdadm\Install\R3LDCTL.EXE ...
    INFO 2008-03-29 14:37:38 R3LDCTL_NT_IND R3ldctlDo:0
        WARNING: no technical settings for table "A055" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "A056" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "A064" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "A065" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "AABLG" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "AANK" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "AANL" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "ALQRFCMON" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "ALQRFCMONA" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "ALQRFCMONO" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "ALQRFCMONQ" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "ANAR" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "ANEV" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "ANGA" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "ANLH" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "ANLV" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "ANLW" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "ANLX" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "APQD" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "APQI" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "ATAB" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "B015" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "B060" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "BGPROT" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "BKORA" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "BKORR" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "BPHIER" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "BSIW" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "BTCEVTJOB" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "BTCJSTAT" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "BTCOPTIONS" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "BTCSED" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "BTCSEV" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "BTCUEV" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "BUXPRA" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "BVOR" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CATCU" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CATDB" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CATL" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CATM" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CBPL" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CCCFINI" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CD0BAS4VI" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CD0BAS5VI" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CD0MC5" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CD0T200TAB" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CD0T210TAB" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CD0TBSH001" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CDCLS" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CE1S001" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CE2S001" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CE3S001" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CE4S_CP_FLAG" in SAP
        data dictionary - defaults used
        WARNING: no technical settings for table "CF003" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CF005" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CFIS" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CHGRP" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CKHT" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CKKS" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CKKT" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CKPP" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CKPS" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CKPT" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CLRK" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CLU4" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CNTLREM" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "COKAA" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "COOI_PI" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "COSPP" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CRHH" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CRID" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CRS_BLOCKS" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CRVP" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CSLT" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CSSK" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CVEP1" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CVEP2" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CVER1" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CVER2" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CVER3" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "CVER4" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "DD02ALL" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "DEBI" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "DELM" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "DLIX" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "DOKALTLANG" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "DOKCL" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "DOKID" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "DOKSH" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "DOKSI" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "DOSSH" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "DOSSI" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "DSYCR" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "DSYLI" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "DSYLT" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "DSYO1" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "DSYO2" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "DSYO3" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "DSYSX" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "DVERS" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "DVPOOL" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "DVPOOLTEXT" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "E070N" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "EANQ" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "EBSEG" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "EBUB" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "EDFIL" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "EDI30C" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "EDI40" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "EDIDOC" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "EDIE5" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "EDMAP" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "EIPA" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "EKAN" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "EKPB" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "EKUB" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "EPIDXB" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "EPIDXC" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "EREF" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "EREN" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "ERET" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "EST07" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "EST0B" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "EST0D" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "EST0F" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "EWUCUSA2" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "EWUCUSAK" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "FEBKEY" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "FINPL" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "FINS" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "FINV" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "FLAPP" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "FLEMP" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "FMCFSI" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "FMCOPI" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "FMGEBER" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "FOH01" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "FREF" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "GCLIENTS" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "GLOO1" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "GLOO2" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "GLPO1" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "GLPO2" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "GLPO3" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "GLS2CLUS" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "GLSO1" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "GLSO2" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "GLSO3" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "GLSP" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "GLT0" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "GLTO1" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "GLTO2" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "GLTO3" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "GLTP" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "GLTPC" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "GSBLCA" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "GWFEODE" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "HLPNA" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "HRARCENQ" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "HRMS_BIW_PPDELTA" in
        SAP data dictionary - defaults used
        WARNING: no technical settings for table "HRPMPROT" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "HRPMSIM" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "HRPY_RGDIR_TEMP" in SAP
        data dictionary - defaults used
        WARNING: no technical settings for table "IMPREDOC" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "INDX" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "INETX" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "INHB" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "IXDIT" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "IXTYP" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "IXTYT" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "JVT1" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "J_1AWITNR" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "J_1BCBTAXPROC" in SAP
        data dictionary - defaults used
        WARNING: no technical settings for table "J_1BITEMTYPES" in SAP
        data dictionary - defaults used
        WARNING: no technical settings for table "K002" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KALK" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KAPE" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KAPOL" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KBPOL" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KCPOL" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KDPOL" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KEPOOL" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KGPOL" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KNAS" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KNB5" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KNC1" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KNC3" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KNMTK" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KNOB" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KNVA" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KNVD" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KNVI" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KNVL" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KNVS" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KNVT" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KOCLU" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KONAIND" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KOND" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KONR" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KOTD001" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KOTE001" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KOTE002" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KOTE003" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KOTE004" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KOTE005" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KOTG002" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KOTG003" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "KRED" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "LDAN" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "LDKO" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "LFAS" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "LFB5" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "LFC1" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "LFC3" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "LISA" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "LISPLF" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MASE" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MAT1" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MBAN" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MBMP" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MBPR" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MBRK" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MCEKS" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MCLIB" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MCLIO" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MCLIP" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MCLIT" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MCVSRFP" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MCY1" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MEIK" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MEIN" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MEKK" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MEOR" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MHNDO" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MHNKA" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MKLK" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MKUB" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MLIB" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MODSAP" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MOFF" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MPRP" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MSAK" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MSEGO1" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MSET" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MSOA" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MSPOOL" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "MSTA" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "M_ADMC" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "M_ADRC" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "M_ADRP" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "M_AKTE" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "M_CF01" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "M_CKKA" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "M_CLFN" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "M_DARL" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "M_DGMI" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "M_HORD" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "M_IBEW" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "M_IFLM" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "M_IIMA" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "M_IRLM" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "M_J1BA" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "M_J1IA" in SAP data
        dictionary - defaults used
        WARNING: no technical settings for table "M_J1IB" in SAP data
        dictionary - defaults used

    Hello,
    The version of perl is correct.
    Anayways i have solved the problem!
    there was problem with the DBEXPORT.R3S file. i referred a SAP note for the same.(Installation of 4.6c on windows). In this check the section for post installation activity.
    I hope this can be a input for other experts who may face such problem!!!
    Regards,
    Shridhar!!!!

  • Getting ORA-27102: out of memory while creating DB using DBCA

    Hi All,
    I am working on 11.2.0.3 oracle version and linux OS. I am trying to create a new database using dbca and getting error "ORA-27102: out of memory".
    Please find the DB version and OS level parameters info below and let me know what i need to do to overcome this issue.
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE 11.2.0.3.0 Production
    TNS for Linux: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    $uname -a
    Linux greenlantern1a 2.6.18-92.1.17.0.1.el5 #1 SMP Tue Nov 4 17:10:53 EST 2008 x86_64 x86_64 x86_64 GNU/Linux
    $cat /etc/sysctl.conf
    kernel.shmall = 2097152
    kernel.shmmax = 4294967295
    kernel.shmmni = 4096
    kernel.sem = 250 32000 100 128
    net.core.rmem_default = 4194304
    net.core.wmem_default = 262144
    net.core.rmem_max = 4194304
    net.core.wmem_max = 1048576
    fs.file-max = 6815744
    fs.aio-max-nr = 1048576
    net.ipv4.ip_local_port_range = 9000 65500
    $free -g
    total used free shared buffers cached
    Mem: 94 44 49 0 0 31
    -/+ buffers/cache: 12 81
    Swap: 140 6 133
    $ulimit -l
    32
    $ipcs -lm
    ------ Shared Memory Limits --------
    max number of segments = 4096
    max seg size (kbytes) = 4194303
    max total shared memory (kbytes) = 8388608
    min seg size (bytes) = 1
    Please let me know for any other details.
    Thanks in advance.

    Ok, first, let's set aside the issue of hugepages for a moment. (Personally, IMHO, if you're doing manual memory mangement, and you're not using hugepages, you're doing it wrong.)
    Anyhow, looking at your SHM parameters:
    kernel.shmall = 2097152
    kernel.shmmax = 4294967295
    kernel.shmmni = 4096
    Let's take those in reverse order:
    1.) shmmni - This is the max number of shared memory segments you can have on your system, regardless of the size of each segment.
    2.) shmmax - Contrary to popular belief, this is NOT the max amount of shared memory you can allocate system wide! This is the max size, in bytes of a single shared memory segment. You currently have it set to 4GB-1. This is probably fine. Even if you wanted an SGA larger than 4GB, having shmmax set to this wouldn't hurt you. Oracle would simply allocate multiple shared memory segments, until it had allocated enough memory for the SGA. There's really no harm there, unless this parameter is set really low, causing a huge number of tiny shared memory segments to be allocated.
    3.) shmall - This is the real shared memory segment limit. This number is the total amount of shared memory you're permitted to allocate, system wide, expressed in pages. Pagesize here is the native OS pagesize, which is 4096 bytes, so, this is 2097152 * 4096 = 8589934592, or, 8GB. So, 8GB is the maximum amount of memory that can currnetly be allocated to shared memory, on your machine.
    So, having said all that, you haven't mentioned how many, if any, other Oracle databases are running on the server or their sizes. Secondly, we have no idea what memory sizing parameters you have set on the database that you're trying to create, that's getting the error.
    So, if you can provide more details, in terms of how many other databases are already on this server, and their SGA sizes, and the parameters you've chosen for the database that's failing to create, perhaps we can help more.
    Finally, if you're not using SGA_TARGET or MEMORY_TARGET, you really need to take the time to configure hugepages. Particularly if you've got a server that has as much memory as you do, and you're planning to have non-trivially sized SGA (10s of GB), then you really want to configure hugepages.
    Hope that helps,
    -Mark

  • Issue with Export of 4.6D System

    Hi guys,
    I am trying to run an export on 4.6D using Oracle 9.2, but unfortunately I get the following message in my INSTGUI..
    Would anyone have any ideas on how to solve this issue?
    I've read that we need to check if the users have permissions or are locked, but how would one do that, and which users must I look at?
    Thanks!
    <i>
    trnsappr /software/inst_temp > more /oracle/QTG/sapcheck/cdwmbunr.sta
    BR0801I BRCONNECT 6.40 (41)
    BR0805I Start of BRCONNECT processing: cdwmbunr.sta 2007-10-29 12.12.43
    BR0484I BRCONNECT log file: /oracle/QTG/sapcheck/cdwmbunr.sta
    BR0280I BRCONNECT time stamp: 2007-10-29 12.12.45
    BR0301E SQL error -942 at location db_connect-4
    ORA-00942: table or view does not exist
    BR0310E Connect to database instance QTG failed
    BR0280I BRCONNECT time stamp: 2007-10-29 12.12.45
    BR0301W SQL error -942 at location brc_dblog_open-1
    ORA-00942: table or view does not exist
    BR0324W Insertion of database log header failed
    BR0806I End of BRCONNECT processing: cdwmbunr.sta 2007-10-29 12.12.45
    BR0280I BRCONNECT time stamp: 2007-10-29 12.12.46
    BR0804I BRCONNECT terminated with errors
    trnsappr /software/inst_temp > more DBEXPORT.log
    INFO 2007-10-29 12:18:30 CommandFileController SyFileCopy:150
        Copying source file DBEXPORT.R3S to target file DBEXPORT.R3S.5 ...
    INFO 2007-10-29 12:18:30 Main
        Preparation successfully completed.
    INFO 2007-10-29 12:18:31 DBEXPORTINSTANCE_IND_ORA SyCheckHostnameLookup:434
        checking host name lookup for 'trnsappr'
    INFO 2007-10-29 12:18:31 DBEXPORTINSTANCE_IND_ORA SyCheckHostnameLookup:473
        offical host name for 'trnsappr' is 'trnsappr'.
    INFO 2007-10-29 12:18:31 DBEXPORTINSTANCE_IND_ORA SyCheckHostnameLookup:488
        host 'trnsappr' has an alias 'trnsappr.transnet.co.za'
    INFO 2007-10-29 12:18:31 DBEXPORTINSTANCE_IND_ORA SyCheckHostnameLookup:541
        host 'trnsappr' has ip address '10.96.226.154'
    INFO 2007-10-29 12:18:31 DBEXPORTINSTANCE_IND_ORA SyCheckHostnameLookup:581
        offical host name for '10.96.226.154' is 'trnsappr'.
    INFO 2007-10-29 12:18:31 DBEXPORTINSTANCE_IND_ORA SyCheckHostnameLookup:434
        checking host name lookup for 'trnsappr'
    INFO 2007-10-29 12:18:31 DBEXPORTINSTANCE_IND_ORA SyCheckHostnameLookup:473
        offical host name for 'trnsappr' is 'trnsappr'.
    INFO 2007-10-29 12:18:31 DBEXPORTINSTANCE_IND_ORA SyCheckHostnameLookup:488
        host 'trnsappr' has an alias 'trnsappr.transnet.co.za'
    INFO 2007-10-29 12:18:31 DBEXPORTINSTANCE_IND_ORA SyCheckHostnameLookup:541
        host 'trnsappr' has ip address '10.96.226.154'
    INFO 2007-10-29 12:18:31 DBEXPORTINSTANCE_IND_ORA SyCheckHostnameLookup:581
        offical host name for '10.96.226.154' is 'trnsappr'.
    INFO 2007-10-29 12:18:31 DBEXPORTINSTANCE_IND_ORA SyCheckHostnameLookup:434
        checking host name lookup for 'trnsappr'
    INFO 2007-10-29 12:18:31 DBEXPORTINSTANCE_IND_ORA SyCheckHostnameLookup:473
        offical host name for 'trnsappr' is 'trnsappr'.
    INFO 2007-10-29 12:18:31 DBEXPORTINSTANCE_IND_ORA SyCheckHostnameLookup:488
        host 'trnsappr' has an alias 'trnsappr.transnet.co.za'
    INFO 2007-10-29 12:18:31 DBEXPORTINSTANCE_IND_ORA SyCheckHostnameLookup:541
        host 'trnsappr' has ip address '10.96.226.154'
    INFO 2007-10-29 12:18:31 DBEXPORTINSTANCE_IND_ORA SyCheckHostnameLookup:581
        offical host name for '10.96.226.154' is 'trnsappr'.
    INFO 2007-10-29 12:18:31 DBEXPORTINSTANCE_IND_ORA SyCheckHostnameLookup:434
        checking host name lookup for 'trnsappr'
    INFO 2007-10-29 12:18:31 DBEXPORTINSTANCE_IND_ORA SyCheckHostnameLookup:473
        offical host name for 'trnsappr' is 'trnsappr'.
    INFO 2007-10-29 12:18:31 DBEXPORTINSTANCE_IND_ORA SyCheckHostnameLookup:488
        host 'trnsappr' has an alias 'trnsappr.transnet.co.za'
    INFO 2007-10-29 12:18:31 DBEXPORTINSTANCE_IND_ORA SyCheckHostnameLookup:541
        host 'trnsappr' has ip address '10.96.226.154'
    INFO 2007-10-29 12:18:31 DBEXPORTINSTANCE_IND_ORA SyCheckHostnameLookup:581
        offical host name for '10.96.226.154' is 'trnsappr'.
    INFO 2007-10-29 12:18:31 DBEXPSERVER_IND_IND InternalColdKeyCheck:0
        The CD CDEXPORT1 will not be copied.
    INFO 2007-10-29 12:18:32 DBEXPORTINSTANCE_IND_ORA InternalWarmKeyCheck:0
        The installation phase is starting now. Please look in the log
        file for further information about current actions.
    INFO 2007-10-29 12:18:32
        Requesting Export Details
    INFO 2007-10-29 12:18:32
        Requesting Export Details
    INFO 2007-10-29 12:18:32 CHKLIBPATH_IND_ORA InternalWarmKeyCheck:0
        No shared library search path needed for database ORA!
    INFO 2007-10-29 12:18:32
        Checking the Library Path
    INFO 2007-10-29 12:18:32
        Requesting Export-Specific Parameters
    INFO 2007-10-29 12:18:32
        Testing the Database Connect
    INFO 2007-10-29 12:18:32
        Testing the Database Connect
    INFO 2007-10-29 12:18:33 DBEXPSERVER_IND_IND InternalWarmKeyCheck:0
        The CD CDEXPORT1 will not be copied.
    INFO 2007-10-29 12:18:33
        Requesting Information on CD-ROMs
    INFO 2007-10-29 12:18:33
        Creating the Export Directories
    INFO 2007-10-29 12:18:33
        Updating the Database Statistics for the Export
    INFO 2007-10-29 12:18:33
        Updating the Database Statistics
    INFO 2007-10-29 12:18:33 BRCONNECTEXPSTAT_IND_ORA SyCoprocessCreateAsUser:300
        Creating coprocess /sapmnt/QTG/exe/brconnect -u / -c -f stats -o
        SAPR3 -t all -m +I -s P10 -f allsel,collect,method,precision -p 4
         as user qtgadm and group sapsys ...
    INFO 2007-10-29 12:18:33 BRCONNECTEXPSTAT_IND_ORA SyGroupIDGet:100
        Group id for group sapsys is 101.
    INFO 2007-10-29 12:18:33 BRCONNECTEXPSTAT_IND_ORA SyUserIDGet:300
        User id for user qtgadm is 105.
    INFO 2007-10-29 12:18:33 BRCONNECTEXPSTAT_IND_ORA ExecuteDo:0
        BR0801I BRCONNECT 6.40 (41)
        BR0805I Start of BRCONNECT processing: cdwmbvbd.sta 2007-10-29
        12.18.33
        BR0484I BRCONNECT log file: /oracle/QTG/sapcheck/cdwmbvbd.sta
        BR0280I BRCONNECT time stamp: 2007-10-29 12.18.35
        BR0301E SQL error -942 at location db_connect-4
        ORA-00942: table or view does not exist
        BR0310E Connect to database instance QTG failed
    <b>
        BR0280I BRCONNECT time stamp: 2007-10-29 12.18.35
        BR0301W SQL error -942 at location brc_dblog_open-1
        ORA-00942: table or view does not exist
        BR0324W Insertion of database log header failed
    </b>
        BR0806I End of BRCONNECT processing: cdwmbvbd.sta 2007-10-29
        12.18.35
        BR0280I BRCONNECT time stamp: 2007-10-29 12.18.35
        BR0804I BRCONNECT terminated with errors
    INFO 2007-10-29 12:18:35 BRCONNECTEXPSTAT_IND_ORA ExecuteDo:0
        RC code form SyCoprocessWait  = 3 .
    ERROR 2007-10-29 12:18:35 BRCONNECTEXPSTAT_IND_ORA ExecuteCheck:0
        Exit code from /sapmnt/QTG/exe/brconnect: 3.
    ERROR 2007-10-29 12:18:35 BRCONNECTEXPSTAT_IND_ORA InternalInstallationDo:0
        Phase failed.
    ERROR 2007-10-29 12:18:35 BRCONNECTEXPSTAT_IND_ORA InstallationDo:0
        Phase failed.
    ERROR 2007-10-29 12:18:35 InstController Action:0
        Step BRCONNECTEXPSTAT_IND_ORA could not be performed.
    ERROR 2007-10-29 12:18:35 Main
        Installation failed.
    ERROR 2007-10-29 12:18:35 Main
        Installation aborted.
    </i>

    please post /oracle/QTG/sapcheck/cdwmbvbd.sta

  • Need to change the status of IDOC of type 'INFREC' to 51 failed

    Hi SapAll.
    here i have got a situation  where iam running a sap standard program 'RBDSEINF' tcode'me18'  by filling in parameters "Info record,Merchanise category as INFREC and while running  it is doing some validations using the Function module 'MASTERIDOC_CREATE_INFREC'  through the sap standard Enhancement which is implemented inside it and there is also code written in the EXIT 'EXIT_SAPLMEAO_002' under the include ' ZXMALU03 'to insert some ZSegments,etc.finally after all the explained process it was creating the IDOC Sucessfully.
    now here the requirement is i need to define some code in the following below mentioned FM  to make the IDOC Fail with status 51 when the below mentioned condition  happens
    code in the FM 'MASTERIDOC_CREATE_INFREC'  in the standared enhancement as below :
    FUNCTION masteridoc_create_infrec.
    """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""$"$\SE:(1) Function Module MASTERIDOC_CREATE_INFREC, Start                                                                                                   A
    *$*$-Start: (1)---------------------------------------------------------------------------------$*$*
    ENHANCEMENT 1  ZRMD_INFOREC_FILTER.
    TYPES: BEGIN OF t_tvkov,
                vkorg TYPE tvkov-vkorg,
                vlgfi TYPE tvkov-vlgfi,
             END OF t_tvkov,
             BEGIN OF t_marc,
                werks TYPE marc-werks,
             END OF t_marc.
    * Variables
      DATA: lv_index TYPE i,
            lv_urzla TYPE eina-urzla,
            lv_matnr TYPE eina-matnr.
    * Tables
      DATA: lt_tvkov TYPE TABLE OF t_tvkov,
            lt_marc  TYPE TABLE OF t_marc.
    * Structures
      DATA: ls_tvkov   LIKE LINE OF lt_tvkov,
            ls_bdieine LIKE LINE OF t_bdieine.
    * Leave only relevant inforecords
      SELECT  SINGLE matnr urzla
        FROM  eina
        INTO  (lv_matnr, lv_urzla)
        WHERE infnr = f_bdieina-infnr.
      IF lv_urzla IS INITIAL.**********************************************************************8
    *    EXIT.
    MESSAGE e019(zrmd_msg).
              TE_IDOC_CONTROL-STATUS ='51'.
             append TE_IDOC_CONTROL.
         ENDIF.*************************************************************************************
    when the above higlited condition is true then i have to create  the IDOC as failed  with the status 51 and with the error message saying 'Country of Origin must be maintained in Purchase info Record”.'
    i have tried debugging for  2 to 3 hours to check if i can create the failed IDOC with status 51 but i couldnt.
    so could any body help me in this.
    regards.
    Varma

    Hi mr  Bhagath.
    the only options where i can get the IDOC Number is as shown in the below attached screen s .
    Varma
    iam not sure of where i can get the IDOC number  and implement the code,the only area where i could get the IDOC number is at the higlited square  block where i explained that i can get but i am not able to write any code there as SAP is not allowing me .
    hope to get the best answer from you.
    regards.
    Varma

  • Procurement - transportation combined scenario DUMP

    Hello experts,
    In this moment i am configurating a procurement scenario, first i customize the 5 standard expected events and 3 unexpected events, i can check this in EM system in /SAPTRX/EH_LIST transaction.
    In this case i made the following configurations in the application System:
    I. BF11 -> Activate PI-EM
    II. Define EM System, logical system and RFC connection
    III. ESC_PURORD the only BPT with EH Create. I define only one AOT, associated to ESC_PURORD (PCM10_ITEM), in the other cases, I define only Event Types. In the application object type only change the event manager and the relevance function.
    Business Process Type                            Event Type                                      Relevance Function
    ESC_PURORD                                            PCM10_ACKNOWL                                   No
                                                                   PCM10_PO_CHANGE                             No
    ESC_DELIV                                            PCM10_ASN                                             Yes
                                                                   PCM10_GR                                              Yes
    ESC_MM_INVOICE                                 PCM10_INVOICE                                     Yes
    ESC_FI_CLEARING                                     PCM10_PAYMENT                                      No
    IV.     Insert a new parameter in the application system doesn´t exist, but in the Event Management system it exist, I create in ECC to correct the difference (PO_ITEM_ACKNOWL_QTY).
    V.     Finally I assign to the scenario the different variables we need (scenario PCM10, I assign AOT, event types and  extractors).
    In the Event Management system i made the followings configurations:
    I. BF11 -> Activate APO-EM
    II. Define Application System, logical system and RFC connection
    III. RFC NONE connection to the central alert server
    IV. Assign PCM10_DF activity in the EH Upd.Acty 2 field of the Event Handler type (PCM10_ITEM).
    V. Assign profile to mapping area (SAPR3 ; PCM10_ITEM ; PCM10_ITEM).
    VI. Assing the followings alert framework parameters (PCM10_ASN and PCM10_REC_PART_GOODS).
    After of this, i try to configure a transportation scenario, that combine with my actual procurement scenario like the standard propose (according with the Inbound delivery - Inbound Shipment scenario), i made the following configurations:
    I.  I had to activate the "transportation relevance" for delivery type EG (Rough GR) and EL (Inbound Delivery) in the logistics execution configuration.
    II. ESC_SHIPMT wih EH_Create
    III. Cause the inbound shipment has shipment class 0010, the standard relevance conditions don´t have included this type (include 0003, 0004, 0005 and 0006). Cause of that i create Z conditions with 0010 shipment type:
                ZTRA10_DLV_SHTYP_ROA    -> TRA10_DLV_SHYTP_ROAD     <- Relevance for AOT.
                ZTRA10_SHTYP_ROAD      ->  TRA10_SHTYP_ROAD                  <- Relevance for AOT
                ZTRA10_SHTYP_ROAD      ->  TRA10_SHTYP_ROAD                  <- Relevance for Event Type
    IV. I modify the followings parameters:
               Info parameter list -> DELIVERY_VOLUME and DELIVERY_WEIGHT (from N to C in Data Type field).
               Control parameter list -> SHIPMENT_TYPE (From 2 to 4 in Length field).
    This modification was made according a verification in the Transaction /SAPTRX/EH_CONSISTENCY_CHECK.
    In SAP Event Management System:
    I. I create Event handler type conditions (ZTRA10_DELIV and ZTRA10_ROAD) according with the relevance functions mentioned before and assigned these to the event handlers types (TRA10_DELIV and TRA10_ROAD).
    II. Assign TRA10_DF_C (Combined process, acording with procurement settings) activity in the EH Upd.Acty 2 field of the Event Handler type (TRA10_DELIV and TRA10_ROAD).
    III. Assign profile to mapping area (SAPR3 -> TRA10_DELIV, TRA10_ROAD and TRA10_SEA AOT and Mapping profile).
    AFTER OF ALL THIS CONFIGURATION SHOWED, I CREATED A SCENARIO TO TEST THE CONFIGURATION:
    I create:     Purchase Requistion
              Purchase Order
              Inbound Delivery
              Shipment (Without any execution).
    The overall status its 0 (Zero) cause EM don´t see them. Now i´m going to VT02N transaction and modify the execution (insert planning Date), the overall status Change to 1.
    After I proceed to save the change in the shipment, but the system show me a DUMP.
               GETWA_NOT_ASSIGNED              **********************************
    An ABAP consultant help me to identify the debuging and there are my conclusions:
    PROGRAM -> /SAPTRX/SAPLIP_TRA_PAT
    FUNCTION -> /SAPTRX/XIP_LE_DELIV_TRA10
    The point where the program failed was (i attached the code):
         Get Sales order header----
         READ TABLE lt_vbkd ASSIGNING  - vbeln_vauf show me the Purchase order number (4500090940 in this case), but the program looking for VBKD table and the PO Number never will be there.
    - How the system Take the purchase Order Number???
    - What configurations can I check to correct this????
    - In the transportation scenario what other point I don´t configure and it´s necessary.
    In addition when i check the SLG1 transaction, the system show me the followings error messages:
    1. Referencing of main and master table fields LIPSVB - LIKPVB failed (Message no. /SAPTRX/ASC039)
          what happened in the AOT, what configuration could failed?
    2. Event type TRA10_ROAD not relevant  for object ESC_SHIPMT (Message no. /SAPTRX/ASC079)
           Condition ZTRA10_SHTYP_ROAD for event type TRA10_ROAD was determined to be false for event ESC_SHIPMT.
    The same message show me for the AOT relevance conditions, any AOT and event types are valid for te BPT ESC_SHIPMT, and i don´t have idea why.
    I have all this procedure in a document with images, i appreciated a lot your help with my problem.
    Thanks and best regards,
    Julian.

    Hello experts,
    If you give an e-mail account or show me how attach a file, i can send this procedure with images and more explicit. In this moment i am configurating a procurement scenario, first i customize the 5 standard expected events and 3 unexpected events, i can check this in EM system in /SAPTRX/EH_LIST transaction. After of this, i try to configure a transportation scenario, that combine with my actual procurement scenario like the standard propose (according with the Inbound delivery - Inbound Shipment scenario), i made the following configurations: I had to activate the "transportation relevance" for delivery type EG (Rough GR) and EL (Inbound Delivery) in the logistics execution configuration.
    Cause the inbound shipment has shipment class 0010, the standard relevance conditions don´t have included this type (include 0003, 0004, 0005 and 0006). Cause of that i create Z conditions with 0010 shipment type (ZTRA10_DLV_SHTYP_ROA, ZTRA10_SHTYP_ROAD and ZTRA10_SHTYP_ROAD for Event Type). I create Event handler type conditions (ZTRA10_DELIV and ZTRA10_ROAD) according with the relevance functions mentioned before and assigned these to the event handlers types (TRA10_DELIV and TRA10_ROAD).
    AFTER OF ALL THIS CONFIGURATION SHOWED, I CREATED A SCENARIO TO TEST THE CONFIGURATION:
    I create:     Purchase Requistion, Purchase Order, Inbound Delivery, Shipment (Without any execution).
    The overall status its 0 (Zero) cause EM don´t see them. Now i´m going to VT02N transaction and modify the execution (insert planning Date), the overall status Change to 1.
    After I proceed to save the change in the shipment, but the system show me a DUMP.
               GETWA_NOT_ASSIGNED              **********************************
    An ABAP consultant help me to identify the debuging and there are my conclusions:
    PROGRAM -> /SAPTRX/SAPLIP_TRA_PAT
    FUNCTION -> /SAPTRX/XIP_LE_DELIV_TRA10
    The point where the program failed was (i attached the code):
         Get Sales order header----
         READ TABLE lt_vbkd ASSIGNING  - vbeln_vauf show me the Purchase order number (4500090940 in this case), but the program looking for VBKD table and the PO Number never will be there.
    - How the system Take the purchase Order Number???
    - What configurations can I check to correct this????
    - In the transportation scenario what other point I don´t configure and it´s necessary.
    In addition when i check the SLG1 transaction, the system show me the followings error messages:
    1. Referencing of main and master table fields LIPSVB - LIKPVB failed (Message no. /SAPTRX/ASC039)
          what happened in the AOT, what configuration could failed?
    2. Event type TRA10_ROAD not relevant  for object ESC_SHIPMT (Message no. /SAPTRX/ASC079)
           Condition ZTRA10_SHTYP_ROAD for event type TRA10_ROAD was determined to be false for event ESC_SHIPMT.
    The same message show me for the AOT relevance conditions, any AOT and event types are valid for te BPT ESC_SHIPMT, and i don´t have idea why.
    I have all this procedure in a document with images, i appreciated a lot your help with my problem.
    Thanks and best regards,
    Julian.

  • Logic PDF size?

    When I use the OSX "Save as PDF" feature with Logic scores, the files are HUGE! I'm using Logic Pro 7.1. When I use my old LAP 5, the same score (saved as a PDF) is much smaller. Does anyone know why? Is there any way to reduce the size of the Logic 7 pdfs? Example: nine page score on LAP is around 1 MB - the same score on Logic Pro, 7.9 MB! Help! I often email scores to musicians, but these pdfs are too cumbersome. Note: there is no difference in the quality of the printout of the two pdfs.

    Hello.
    I love logic. (I run L6 on a 1.6 G5 PowerMac. There
    IS ONE THING THAT BUGS ME ABOUT IT THOUGH: THE SIZE
    OF THE PROGRAMME. By size i mean the actual size of
    the words, instruments, GUIs of soft synths etc.
    I am almost blind (this is no joke) and i am
    virtually six inches away from the screen in order to
    read parameters, info etc.
    Is there any way at all to rectify this? Can i alter
    the settings in logic to make the images that appear
    on screen bigger?
    I have a 19 inch monityer and cant afford the apple
    cinema screens.
    Any help would be greatly appreciated.
    Cheers
    j
    Hi John,
    I bought a ViewSonic LCD television,with a Pc input...and it is a whopping 43" (diagonal)!!!
    It does up to 1360 x 768 pixels resolution so you will see Logic in a BIG way.
    I only spent about 1300 USD for it,and believe me,you can see the musicans PIMPLEs on this one!!!...plus whenI'm done with Logic work,I can go ahead and watch TV,DVD or whatever else on it as well.WAY better than spending too much on a single-purpose monitor,or even two monitors.
    cheers,
    noeqplease

  • OATS Enhancement: Verify the response contents of http requests which enclosed by begin/endconcurrent

    Recently I’m testing the Fluid UI with OATS 12.4.0.2.
    In this test, since the browser get all tiles in current page simultaneously, I have to simulate this behavior in OpenScript/OLT.
    Then I put all those http requests into a concurrent block ( marked by begin/endconcurrent statments) and it works fine.
    But this bring in a limitation: so far, the OATS doesn’t support to verify the http response contents if those http requests resided inside the concurrent blocks.
    So I did an enhancement for OpenScript to overcome this limitation. I think it might useful if you have similar test scenario.
    How to use it:
    Put the attached file ConcurrentHTTPService.java into your OpenScript project folder ( same folder as where your script.java living).
    Replace the alias line for http in script.java, the below is after replacement:
    //@ScriptService oracle.oats.scripting.modules.http.api.HTTPService http;
    @ScriptService ConcurrentHTTPService http;
      3. Put your http.get inside concurrent block as usual:
    http.beginConcurrent("Get_Tiles_Concurrently");
    //The below IDs are useful for later. We use this ID to identified the http requests inside the concurrent block.
    //If you dn’t have those IDs, it’s OK, we can use the full URL string (including all parameters)to do the same thing,
    //but the full URL is very long, and I hate the screen were occupied by URLs…
    http.get( 193, "http://Page1",...);
    http.get( 194, "http://Page2",...);
    http.endConcurrent("Get_Tiles_Concurrently");
      4. After endConcurrent statement, We can use the following methods to get the http response content by RecID or full URL:
    //Those methods should be used after the endConcurrent statement
    //Get the response contents:
    //Please reference the http.getLastResponseContent method for the explain of parameters.
    info("Resp 193/Page1:" + http.getLastResponseContentForConcurrent(193,Source.Html));
    info("Resp 193/Page1:" + http.getLastResponseContentForConcurrent("http://Page1",Source.Html));
    //Verify the response contents:
    //Please reference the http.AssertText method for the explain of parameters.
    http.AssertTextForConcurrent(193, "Text Match Name", "Key_word_should_appear_in_response_content_of_request_193/page1",
        Source.Html, TextPresence.PassIfPresent, MatchOption.Exact);
    http.AssertTextForConcurrent(("http://Page1", "Text Match Name", "Key_word_should_appear_in_response_content_of_request_194/page2",
        Source.Html, TextPresence.PassIfPresent, MatchOption.Exact);
    Done!
    Thank glenn.s in this thread: How to test asynchronous web service.

    I think I have the solution to your dynamic addressing problem, but I have a problem combining HTTP authentication with dynamic address resolution.
    I've got an external service that requires basic authentication and I've handled it successfully by adding a <MustSupportBasicAuthentication> block to the WSDL, as described in the article "Basic Authentication in HTTP SOAP BC" (http://wiki.open-esb.java.net/Wiki.jsp?page=HTTPBasicAuthentication). This works perfectly, causing the HTTP BC to send credentials every time it accesses the external service.
    Now I want to make the URL of this external service dynamic (i.e., read it at run time from a configuration mbean). I followed the example from the article "Using Dynamic Address feature" (http://wiki.open-esb.java.net/Wiki.jsp?page=UsingDynamicPartnerLinks), which shows you how to send an endpoint reference (EPR), in the form of an <EndpointReference> block. This also works fine.
    (I believe this last technique is the solution to your dynamic addressing problem. I've used both with and without BPEL. To use it outside of BPEL, you make a DocumentFragment out of the XML tree that begins with <EndpointReference> and pass it as an argument to the resolveEndpointReference method of your component context. This causes the JBI container to contact the HTTP BC, which understands the EPR.)
    My problem is this: once I've dynamically changed the target URL of the external service, the HTTP BC seems to forget that it requires authentication and no longer sends credentials.
    Has anyone else experienced this behavior, and if so how did you work around it?

  • Graphics in report builder 6i not working in a 64 bit enviroment

    Is there a patch or a workout for this scenario? Can i use graphics from excel and use an OLE2 object item in the report? How would i send the parameters (info) for the graphic?
    thanks

    Anyone can help me ? Thanks

  • Labview Drivers for a PC104 board

    I have just purchased the PC104 CPU module from RTD technology:
    PCI/104-Express cpuModule™ & Controller
    Intel® Core™ 2 Duo 1.20 GHz – 1.86 GHz
    http://www.rtd.com/PC104/CM/CMA22/CMA22Mxx.htm
    I have installed Windows XP and Labview succesfully.
    This board has an embedded advanced analog Input Output board with 8 ports.
    The Windows Driver has been succesfully installed. Now i would like to use these ports to acquire analog data using labview. However when i open the DAQmax i can't see it. In the Device Manager of Windows is listed as RTD aAIO and is properly working.
    What should i do to use this device with labview?
    Attached are the Windows Drivers and some example code for the aAIO in case it helps
    Thank you,
    Christos
    Attachments:
    aAIO_windows_v01.00.00.zip ‏3494 KB

    Thanks for your response.
    I have tried the Call Library Function Node to call a function out of the attached DLL. More specifically i have tried to call "aAIO_General_EnumDevices" but i am not able to retreive any values.
    It is the first time that i am using this Call Library Function Node and i am not sure if what i am doing is correct.
    I am attaching the vi that i am trying to run and i am also including in the lines below the documentation of necessary functions/parameters/structures.
    Thank you,
    Christos
    aAIO_General_EnumDevices
    aAIO_Enum_Info * 
    Info,
    uint8 
    Limit
    Enumerates all aAIO devices in the system.
    Parameters:
    Info 
    A pointer to an array of aAIO_Enum_Info structures to fill with information about the aAIO devices in the system.
    Limit 
    The maximum number of aAIO devices to enumerate.
    Data Fields
    uint32 
    dev_num
    This is the device number which represents this device.
    aAIO_Intrfc_Avail 
    avail
    This is the current availability of this device.
    uint32 
    base_addr
    This is the base address of this aAIO device.
    uint32 
    irq
    This is the IRQ that's been assigned to this aAIO device.
    Attachments:
    Enumerate device.vi ‏7 KB
    aAIOLib.zip ‏51 KB

  • ERROR: replicator: Job Failed :error retrieving site manifest exception

    Hi all,
    I have installed the Site Studio Publishing utility on content Server machine.
    I have installed the site studio publishing client on my machine and I have configured successfully. I mean to say that I have configured the destination on Publishing Utility & Content Provider on Publishing Client.
    I have created the publishing job on the the site. I could see the content delivered on my machine from the content server, successfully. Now i have updated the site in the Site designer. I have just added "Hi" in the site layout page in the site designer. I have saved it. Now I have given the publishing job again. While running the job, I am getting following Error:
    WARNING: replicator: 401 response received from server
    [Sep 13 18:11:49] ERROR: replicator: Job Failed :error retrieving site manifest exception:
    com.kinecta.net.HttpIOException: HTTP 401 error received from server :http://10.16.21.124/idc/idcplg?IdcService=SS_GET_SITE_PUBLISH_REPORT&siteId=TestSite
         at com.kinecta.replicator.SiteCrawler.openConnection(SiteCrawler.java:515)
         at com.kinecta.replicator.SiteCrawler.openConnection(SiteCrawler.java:191)
         at SiCloneSyndicator.SiCloneSiteStudioPackageGenerator.getSiteManifest(SiCloneSiteStudioPackageGenerator.java:452)
         at SiCloneSyndicator.SiCloneSiteStudioPackageGenerator.onReplicationStart(SiCloneSiteStudioPackageGenerator.java:342)
         at SiClone.SiCloneSiteReplicator.run(SiCloneSiteReplicator.java:534)
         at SiClone.SiCloneIcePackageGenerator.run(SiCloneIcePackageGenerator.java:39)
         at SiClone.SiCloneSiteReplicatorRunner.runJob(SiCloneSiteReplicatorRunner.java:308)
         at SiClone.SiCloneSiteReplicatorRunner.run(SiCloneSiteReplicatorRunner.java:178)
         at SiCloneSyndicator.SiCloneGenerator.doUpdate(SiCloneGenerator.java:516)
         at SiCloneSyndicator.SiCloneGenerator$1.run(SiCloneGenerator.java:472)
    First of all, May i ask you a question: What is the site manifest file?
    Any help would be much appriciated.
    Regards & thanks,
    Nirmala Vijaya Sekhar varre

    Hi Sreenath,
    I am getting following error while publishing the microsite using Site Studio Publisher even I unchecked "Treat home page errors as critical" and "Treat manifest errors as critical" options, here is the log:
    INFO 2012-02-14 07:35:11,794 - ----- Running Job
    INFO 2012-02-14 07:35:11,794 - Output Path : /opt/ora/ucmdev/Middleware/domains/UCMDevDomain/ucm/cs/data/SiteStudioPublisher/output/MyBiopsy
    INFO 2012-02-14 07:35:11,794 - Authentication : BasicAuth
    INFO 2012-02-14 07:35:11,794 - Use Cache Control : false
    INFO 2012-02-14 07:35:11,794 - Publish Now : false
    INFO 2012-02-14 07:35:11,794 - Force Analyze : false
    INFO 2012-02-14 07:35:11,794 - Force Download : false
    INFO 2012-02-14 07:35:11,794 - Use LastModified : true
    INFO 2012-02-14 07:35:11,794 - Use SSPETag : true
    INFO 2012-02-14 07:35:11,794 - Treat home page errors as critical : true
    INFO 2012-02-14 07:35:11,794 - Treat manifest errors as critical : true
    INFO 2012-02-14 07:35:11,794 - Soft Error Threshold : 99
    INFO 2012-02-14 07:35:11,794 - Soft Error Codes : 403,404
    INFO 2012-02-14 07:35:11,794 - Hard Error Threshold : 99
    INFO 2012-02-14 07:35:11,794 - Hard Error Codes : 501,502
    INFO 2012-02-14 07:35:11,794 - Delete Threshold : -1
    INFO 2012-02-14 07:35:11,794 - Friendly Url Parameters :
    INFO 2012-02-14 07:35:11,794 - Dynamic Url Parameters :
    INFO 2012-02-14 07:35:11,794 - Default Filename : index.html
    INFO 2012-02-14 07:35:11,794 - Page Extension : html
    INFO 2012-02-14 07:35:11,795 - ----- Connecting: http://dappucm07.cap.org:16200/cs/idcplg?IdcService=SS_GET_PAGE&siteId=MyBiopsy
    INFO 2012-02-14 07:35:11,802 - Response: 301 Moved Permanently
    INFO 2012-02-14 07:35:11,802 - http redirect found:http://dappucm07.cap.org:16200/MyBiopsy/index.html
    FATAL 2012-02-14 07:35:11,840 - sitestudiopublisher.net.IOFailureException: error retrieving site manifest
    INFO 2012-02-14 07:35:11,840 - Error threshold exceeded
    INFO 2012-02-14 07:35:11,840 - Finishing...
    INFO 2012-02-14 07:35:11,840 - ----- Job Summary
    INFO 2012-02-14 07:35:11,840 - Source URL : http://dappucm07.cap.org:16200
    INFO 2012-02-14 07:35:11,840 - Start time : Tue Feb 14 07:35:11 CST 2012
    INFO 2012-02-14 07:35:11,840 - End time : Tue Feb 14 07:35:11 CST 2012
    INFO 2012-02-14 07:35:11,840 - Duration : 0 hours 0 minutes 0 seconds 46 milliseconds
    INFO 2012-02-14 07:35:11,840 - Connect Time : 0:00:00.046
    INFO 2012-02-14 07:35:11,840 - ----- Links Summary
    INFO 2012-02-14 07:35:11,840 - Total : 0
    INFO 2012-02-14 07:35:11,840 - Modified : 0
    INFO 2012-02-14 07:35:11,840 - Added : 0
    INFO 2012-02-14 07:35:11,840 - Deleted : 0
    INFO 2012-02-14 07:35:11,840 - Examined : 0
    INFO 2012-02-14 07:35:11,840 - Redirected : 0
    INFO 2012-02-14 07:35:11,840 - Downloaded : 0
    INFO 2012-02-14 07:35:11,840 - Not Found : 0
    INFO 2012-02-14 07:35:11,840 - ----- Job Failed
    INFO 2012-02-14 07:35:11,840 -

Maybe you are looking for

  • Itunes10.5 download error message

    Apple should please do something on this matter. I need to download itune 10.5, and I have been tying for two weeks now without much joy. Is apple enjoying having to put us loyal customers through this? For crying out loud, I can not even sync my Ipa

  • Servlet applet communication

    I'm having a problem getting a servlet to answer a call from an applet...in the applet I do something like: String servlet = "http://192.168.123.148/root/MyServlet.class"; url= new URL(servlet); conn = url.openConnection(); conn.setUseCaches(false);

  • Show different dropdownlists according to the selected value

    Hi All, I need pop up a different dropdownlist according to the selected item in one dropdownlist. .e.g. if I select state in one dropdownlist, another dropdownlist contains all the states will show up beside it. Any one can help me? Thanks a lot

  • Upgrade from 10.4.1 to 10.4.6

    Hi all I am sorry but I am yet another converted x windows geek who really needs help with the basics. I wish to upgrade from 10.4.1 to 10.4.6 with combo intel update on my macbook. Installation starts but then fails because it says it needs 512mb to

  • Access to Users Session data in a Filter

    Is there a way to get access to a user's session data inside a Servlet Filter? I see you have access to the Servlet Context, but that doesn't include the getSession() function. How would I do this? Thanks