Error occurred in the execution of ODCIINDEXCREATE routine

Hi,
We're using oracle 9.2.0.1. I've created a table with a spatial data column. Then inserted some rows and then created a spatial index on that column. What is peculiar is; depending on the number of the rows inserted I receive below error;
ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
ORA-13249: internal error in Spatial index: [mdidxrbd]
ORA-13249: Error in Spatial index: index build failed
ORA-13236: internal error in R-tree processing: [failed to cluster in memory]
ORA-13249: Internal error in Spatial index: [mdrcrclmem]
ORA-06512: at "MDSYS.SDO_INDEX_METHOD_9I", line 7
ORA-06512: at line 1
for 2500 records, I can successfully create the index. However, for 3000 records above error happens. What can be the reason and how can I fix it?
Thanks in advance ;-))

Hi,
I've seen this a few times, and it seems to be related to some memory config issues in the database.
Can you try adding this to your create index statement (after dropping the existing index using the FORCE option [drop index <spatial_index_name> force;]):
parameters ('sdo_max_memory=2000000')
We've found it to be helpful, but we haven't been able to isolate the database or OS parameters that lead to the problem.

Similar Messages

  • ERROR at line 1: ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine ORA-20000: Oracle Text error: DRG-10700: preference does not exist: global_lexer ORA-06512: at "CTXSYS.DRUE", line 160 ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 366

    database version 11.2.0.4
    rac two node
    CREATE INDEX MAXIMO.ACTCI_NDX3 ON MAXIMO.ACTCI
    (DESCRIPTION)
    INDEXTYPE IS CTXSYS.CONTEXT
    PARAMETERS('lexer global_lexer language column LANGCODE')
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000: Oracle Text error:
    DRG-10700: preference does not exist: global_lexer
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 366

    Like the error message says, you don't have a global_lexer.  So, you need to create a global_lexer and that lexer must have at least a default sub_lexer, then you can use that global_lexer in your index parameters.  Please see the demonstration below, including reproduction of the error and solution.
    SCOTT@orcl12c> -- reproduction of problem:
    SCOTT@orcl12c> CREATE TABLE actci
      2    (description  VARCHAR2(60),
      3      langcode     VARCHAR2(30))
      4  /
    Table created.
    SCOTT@orcl12c> CREATE INDEX ACTCI_NDX3 ON ACTCI (DESCRIPTION)
      2  INDEXTYPE IS CTXSYS.CONTEXT
      3  PARAMETERS('lexer global_lexer language column LANGCODE')
      4  /
    CREATE INDEX ACTCI_NDX3 ON ACTCI (DESCRIPTION)
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000: Oracle Text error:
    DRG-10700: preference does not exist: global_lexer
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 366
    SCOTT@orcl12c> -- solution:
    SCOTT@orcl12c> DROP INDEX actci_ndx3
      2  /
    Index dropped.
    SCOTT@orcl12c> BEGIN
      2    CTX_DDL.CREATE_PREFERENCE ('global_lexer', 'multi_lexer');
      3    CTX_DDL.CREATE_PREFERENCE ('english_lexer', 'basic_lexer');
      4    CTX_DDL.ADD_SUB_LEXER ('global_lexer', 'default', 'english_lexer');
      5  END;
      6  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> CREATE INDEX ACTCI_NDX3 ON ACTCI (DESCRIPTION)
      2  INDEXTYPE IS CTXSYS.CONTEXT
      3  PARAMETERS('lexer global_lexer language column LANGCODE')
      4  /
    Index created.

  • ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine

    I am receiving the following error from FME(safe software) when creating a spatial index. I have ruled out several of the common causes as reported in this forum because the procedure works for dataset with 300,000 rows of less but fails with the full dataset of 455,412 rows.
    I am using 10G 10.2.0.2.0 - 64bi
    Any hints/tips would be much appreciated.
    Thanks
    Richard
    -----Error text follows ----------------------------------------------------------------------------------------
    Executing SQL statement `CREATE INDEX CARTO_TEXT_LL_IXS ON CARTO_TEXT_LL(GEOM) INDEXTYPE IS MDSYS.SPATIAL_INDEX' to create spatial index on Oracle table
    Executing SQL statement `DROP INDEX CARTO_TEXT_LL_IXS FORCE' to clean up failed spatial index creation
    Database Writer: Translation aborted -- rerun specifing "ORACLE8I_2_START_TRANSACTION 227"
    Execution of statement `CREATE INDEX CARTO_TEXT_LL_IXS ON CARTO_TEXT_LL(GEOM) INDEXTYPE IS MDSYS.SPATIAL_INDEX' did not succeed; error was `ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-13249: internal error in Spatial index: [mdidxrbd]
    ORA-13249: Error in Spatial index: index build failed
    ORA-29400: data cartridge error
    Error - OCI_NODATA
    ORA-06512: at "MDSYS.SDO_INDEX_METHOD_10I", line 10

    Thank you both for replies.
    The error does ocurr when I try to create the index from SQL, see message text below.
    With the spatial index creation disabled in FME the run completes sucessfully, so the data is ok, well thats a maybe.
    So I omitted the first 200,000 input rows and ran the last 255,413 rows and the index was sucessfully created (in FME) so now I conclude that the data IS ok (I had previously done a successful run with the first 300,000 rows)
    Therefore I am thinking that my database has a problem when it is asked to create a spatial index with the full 455,412 rows. Could this be configuration, a space problem . . . .
    Any more suggestions?
    Thanks
    Richard
    =Error when running from SQL =====================================
    SQL> CREATE INDEX CARTO_TEXT_LL_IXS ON CARTO_TEXT_LL(GEOM) INDEXTYPE IS MDSYS.SPATIAL_INDEX;
    CREATE INDEX CARTO_TEXT_LL_IXS ON CARTO_TEXT_LL(GEOM) INDEXTYPE IS MDSYS.SPATIAL_INDEX
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-13249: internal error in Spatial index: [mdidxrbd]
    ORA-13249: Error in Spatial index: index build failed
    ORA-29400: data cartridge error
    Error - OCI_NODATA
    ORA-06512: at "MDSYS.SDO_INDEX_METHOD_10I", line 10
    SQL>
    =End error message=============================================

  • Locator Error ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine

    I am trying to setup Intermedia Locator and am trying to create the Locator index per the code below. Any ideas why I am getting the below error, and what I can do about it.
    Oracle8i Enterprise Edition Release 8.1.6.0.0 - Production
    With the Partitioning option
    JServer Release 8.1.6.0.0 - Production
    SQL> desc zip_codes
    Name Null? Type
    ZIPC_ZIP5 NOT NULL VARCHAR2(5)
    ZIPC_SDO_GEOMETRY MDSYS.SDO_GEOMETRY
    ZIPC_GEOCODE_RESULT MDSYS.GEOCODE_RESULT
    SQL> execute geocoder_http.setup_locator_index('zip_codes','zipc_sdo_geometry');
    BEGIN geocoder_http.setup_locator_index('zip_codes','zipc_sdo_geometry'); END;
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-13224: specified index name is too long for a spatial index
    ORA-06512: at "MDSYS.SDO_INDEX_METHOD", line 7
    ORA-06512: at line 1
    ORA-06512: at "MDSYS.GEOCODER_HTTP", line 168
    ORA-06512: at line 1
    Thanks,
    Bob Mann

    Hi Raju,
    There are a few things I would change below.
    The first is that optimized rectangles (which you are using) need to be specified as lower left then upper right, assuming the lowest values are in the lower left corner of the coordinate system.
    The way you've specified them is upper left, lower right which will not work.
    The second thing I would change is your create index statement. You shouldn't be using locater to create the index - locator is a separate product should be used only with point geometries.
    Your create index statement should look something like this:
    create index zonetemp_sidx on zonetemp(shape)
    indextype is mdsys.spatial_index
    parameters ('sdo_level=NN');
    where NN above is an integer number representing the tiling level you are going to use for the index. This is workload dependent, but I will give you a range of 8-12 to start with - you can protype using real data and figure out what gives you the best performance - if it is 12 you may want to go higher.
    Also, you will have had to preload user_sdo_geom_metadata.
    Finally, your query looks good, although I would change it slightly to set the third ordinate to NULL rather than 0, i.e.:
    SELECT NAME
    FROM ZONETEMP A
    WHERE SDO_FILTER (A.SHAPE,
    MDSYS.SDO_GEOMETRY(2001,null,
    MDSYS.SDO_POINT_TYPE(20,20,NULL),
    NULL, NULL)),'QUERYTYPE='WINDOW')
    ='TRUE'
    Hope this helps,
    dan

  • Job failed,ORA-29855: error occurred in the execution of ODCIINDEXCREATE

    Hi All,
    In my 10gR2 Linux Box,
    One of the job is failing,Part of this job is dropping a particular table and recreating it,then creating the Index.But I am getting the error like
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    But the same job is succesfully dropping ,recreating another table with same structure but different name, and creating Index also.
    Can anybody tell Why it is happening?
    Thanks in Advance,
    saf

    Please provide the metadata of your objects with dbms_metadata, are you using the National Characterset on the column being indexed? This maybe related to Metalink Note:233180.1 "DRG-10509 Trying to Create Text Index on NCLOB Column"

  • Error occured during the execution of the JSPM_main phase

    Hi,
    When ever I try to Start JSPM i get the following error saying that Cannot detect system kernel under the directory c:\usr\sap\EPD\sys directory and also error occured during the execution of the JSPM_main phase.
    Can any one help me in this regard.
    Thanks in advance.
    Thanks
    Venu

    Hi Anand,
    Please find the log file below.
    <!LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[1.5.3.7185 - 630]/>
    <!NAME[C:\usr\sap\EPD\JC20\j2ee\JSPM\log\log_2007_04_03_16_57_45\JSPM_MAIN_1_01.LOG]/>
    <!PATTERN[JSPM_MAIN_1_01.LOG]/>
    <!FORMATTER[com.sap.tc.logging.ListFormatter]/>
    <!ENCODING[Cp1252]/>
    <!LOGHEADER[END]/>
    #1.5#C000AC190C09000000000016019B539300042D33A14D91C0#1175599679640#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.ucp.phases.AbstractPhaseType.initialize(AbstractPhaseType.java:720)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.ucp.phases.AbstractPhaseType.initialize(AbstractPhaseType.java:720)#Java###Phase has been started.#1#JSPM/JSPMPhases/JSPM_MAIN#
    #1.5#C000AC190C09000000000017019B539300042D33A14DD040#1175599679656#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.ucp.phases.AbstractPhaseType.initialize(AbstractPhaseType.java:721)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.ucp.phases.AbstractPhaseType.initialize(AbstractPhaseType.java:721)#Java###Phase type is .#1#com.sap.sdt.jspm.phases.PhaseTypeJSPM#
    #1.5#C000AC190C09000000000018019B539300042D33A1531000#1175599680000#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.jspm.gui.DialogController.showInitDialog(DialogController.java:560)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.jspm.gui.DialogController.showInitDialog(DialogController.java:560)#Java###Starting Initialize dialog...##
    #1.5#C000AC190C0900000000001E019B539300042D33A15C5AE8#1175599680609#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.jspm.gui.SystemInitializer.initializeDataModelAndLogging(SystemInitializer.java:462)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.jspm.gui.SystemInitializer.initializeDataModelAndLogging(SystemInitializer.java:462)#Java###Detecting system parameters...##
    #1.5#C000AC190C0900000000001F019B539300042D33A15C5AE8#1175599680609#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.jspm.trace.JspmExtLoggingManager.logReferenceToExtLog(JspmExtLoggingManager.java:167)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.jspm.trace.JspmExtLoggingManager.logReferenceToExtLog(JspmExtLoggingManager.java:167)#Java###You can find additional information in log file .#1#C:
    usr
    sap
    EPD
    JC20
    j2ee
    JSPM
    log
    log_2007_04_03_16_57_45
    DETECT_SYSTEM_PARAMETERS_01.LOG#
    #1.5#C000AC190C0900000000002D019B539300042D33A1AA1558#1175599685703#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.jspm.gui.SystemInitializer.initializeDataModelAndLogging(SystemInitializer.java:483)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.jspm.gui.SystemInitializer.initializeDataModelAndLogging(SystemInitializer.java:483)#Java###Detection of system parameters has finished.##
    #1.5#C000AC190C0900000000002E019B539300042D33A1AA4FF0#1175599685718#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.jspm.gui.DialogController.execute(DialogController.java:470)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.jspm.gui.DialogController.execute(DialogController.java:470)#Java###Initialize dialog has been processed.##
    #1.5#C000AC190C0900000000002F019B539300042D33A1AA4FF0#1175599685718#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.jspm.gui.DialogController.loginDialog(DialogController.java:1043)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.jspm.gui.DialogController.loginDialog(DialogController.java:1043)#Java###Starting dialog...#1#LogIn#
    #1.5#C000AC190C09000000000039019B539300042D33AA43E180#1175599830000#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.jspm.gui.DialogController.loginDialog(DialogController.java:1048)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.jspm.gui.DialogController.loginDialog(DialogController.java:1048)#Java###Dialog has been confirmed by the user.#1#LogIn#
    #1.5#C000AC190C0900000000003A019B539300042D33AA467D78#1175599830171#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.j700.deploymentmgr.DeploymentManagerImpl#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.j700.deploymentmgr.DeploymentManagerImpl#Java###Checking connectivity for SDM server on host , port ...#2#aprins02#52018#
    #1.5#C000AC190C0900000000003B019B539300042D33AA539CD8#1175599831031#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.j700.deploymentmgr.DeploymentManagerImpl#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.j700.deploymentmgr.DeploymentManagerImpl#Java###Connection to SDM server on host , port is valid.#2#aprins02#52018#
    #1.5#C000AC190C0900000000003C019B539300042D33AA65F810#1175599832234#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.jspm.deployedsdu.DeployedComponentsProvider.refresh(DeployedComponentsProvider.java:192)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.jspm.deployedsdu.DeployedComponentsProvider.refresh(DeployedComponentsProvider.java:192)#Java###Detecting components of the J2EE engine...##
    #1.5#C000AC190C0900000000003D019B539300042D33AA65F810#1175599832234#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.jspm.trace.JspmExtLoggingManager.logReferenceToExtLog(JspmExtLoggingManager.java:167)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.jspm.trace.JspmExtLoggingManager.logReferenceToExtLog(JspmExtLoggingManager.java:167)#Java###You can find additional information in log file .#1#C:
    usr
    sap
    EPD
    JC20
    j2ee
    JSPM
    log
    log_2007_04_03_16_57_45
    DETECT_SYSTEM_COMPONENTS_01.LOG#
    #1.5#C000AC190C09000000000052019B539300042D33B5C8DEE8#1175600023265#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.jspm.trace.JspmExtLoggingManager.logError(JspmExtLoggingManager.java:275)#######Thread[main,5,main]##0#0#Error#1#com.sap.sdt.jspm.trace.JspmExtLoggingManager.logError(JspmExtLoggingManager.java:275)#Java###Error during operation. For more information about the operation, see the previous message. For more information about the error, see the next messages.##
    #1.5#C000AC190C09000000000053019B539300042D33B5C91D68#1175600023281#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.jspm.trace.JspmExtLoggingManager.logMaximumLogSeverity(JspmExtLoggingManager.java:258)#######Thread[main,5,main]##0#0#Warning#1#com.sap.sdt.jspm.trace.JspmExtLoggingManager.logMaximumLogSeverity(JspmExtLoggingManager.java:258)#Java###There are some WARNING messages in the child log .#1#C:
    usr
    sap
    EPD
    JC20
    j2ee
    JSPM
    log
    log_2007_04_03_16_57_45
    DETECT_SYSTEM_COMPONENTS_01.LOG#
    #1.5#C000AC190C09000000000054019B539300042D33B5C95800#1175600023296#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.ucp.phases.AbstractPhaseType.doExecute(AbstractPhaseType.java:748)#######Thread[main,5,main]##0#0#Error#1#com.sap.sdt.ucp.phases.AbstractPhaseType.doExecute(AbstractPhaseType.java:748)#Java###Exception has occurred during the execution of the phase.##
    #1.5#C000AC190C09000000000055019B539300042D33B5C95800#1175600023296#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.tools.proc.OsProcessController.startProcess(OsProcessController.java:285)#######Thread[main,5,main]##0#0#Error#1#com.sap.sdt.tools.proc.OsProcessController.startProcess(OsProcessController.java:285)#Java###java.io.IOException: CreateProcess: C:/usr/sap/EPD/JC20/exe/disp+work -V error=2##
    #1.5#C000AC190C09000000000056019B539300042D33B5C95800#1175600023296#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.tools.proc.OsProcessController.startProcess(OsProcessController.java:284)#######Thread[main,5,main]##0#0#Error#1#com.sap.sdt.tools.proc.OsProcessController.startProcess(OsProcessController.java:284)#Java###Error while executing process C:/usr/sap/EPD/JC20/exe/disp+work.##
    #1.5#C000AC190C09000000000057019B539300042D33B5C95800#1175600023296#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.tools.proc.OsProcessController.launch(OsProcessController.java:130)#######Thread[main,5,main]##0#0#Error#1#com.sap.sdt.tools.proc.OsProcessController.launch(OsProcessController.java:130)#Java###Could not start process C:/usr/sap/EPD/JC20/exe/disp+work.##
    #1.5#C000AC190C09000000000058019B539300042D33B5C95800#1175600023296#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.j2ee.tools.kernel.KernelRetriever.getCommandOutput(KernelRetriever.java:240)#######Thread[main,5,main]##0#0#Error#1#com.sap.sdt.j2ee.tools.kernel.KernelRetriever.getCommandOutput(KernelRetriever.java:240)#Java###disp+work executable file cannot be run.##
    #1.5#C000AC190C09000000000059019B539300042D33B5C95800#1175600023296#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.j2ee.tools.kernel.detect.DetectKernelComponent.detectKernelComponentFromExeDirectory(DetectKernelComponent.java:767)#######Thread[main,5,main]##0#0#Error#1#com.sap.sdt.j2ee.tools.kernel.detect.DetectKernelComponent.detectKernelComponentFromExeDirectory(DetectKernelComponent.java:767)#Java###Could not detect current system kernel in the C:
    usr
    sap
    EPD
    JC20
    exe directory.##
    #1.5#C000AC190C0900000000005A019B539300042D33B5C95800#1175600023296#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.j630.sysinfo.ExeDirLocator.determineMultipleKernels(ExeDirLocator.java:435)#######Thread[main,5,main]##0#0#Error#1#com.sap.sdt.j630.sysinfo.ExeDirLocator.determineMultipleKernels(ExeDirLocator.java:435)#Java###Could not detect central instance kernel in directory C:
    usr
    sap
    EPD
    JC20
    exe.##
    #1.5#C000AC190C0900000000005B019B539300042D33B5C95800#1175600023296#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.j2ee.tools.kernel.detect.DetectKernelComponent.detectKernelComponentsFromSystem(DetectKernelComponent.java:464)#######Thread[main,5,main]##0#0#Error#1#com.sap.sdt.j2ee.tools.kernel.detect.DetectKernelComponent.detectKernelComponentsFromSystem(DetectKernelComponent.java:464)#Java###Could not detect system kernel under the C:
    usr
    sap
    EPD
    SYS directory.##
    #1.5#C000AC190C0900000000005C019B539300042D33B5C95800#1175600023296#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.j2ee.tools.kernel.detect.DetectKernelComponent.detectComponentsFromSystem(DetectKernelComponent.java:554)#######Thread[main,5,main]##0#0#Error#1#com.sap.sdt.j2ee.tools.kernel.detect.DetectKernelComponent.detectComponentsFromSystem(DetectKernelComponent.java:554)#Java###Could not detect version information of the current system kernel.##
    #1.5#C000AC190C0900000000005D019B539300042D33B5C95800#1175600023296#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.jspm.deployedsdu.DeployedComponentsProvider.refresh(DeployedComponentsProvider.java:220)#######Thread[main,5,main]##0#0#Error#1#com.sap.sdt.jspm.deployedsdu.DeployedComponentsProvider.refresh(DeployedComponentsProvider.java:220)#Java###Could not detect deployed components.##
    #1.5#C000AC190C0900000000005E019B539300042D33B5C95800#1175600023296#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.jspm.gui.SystemInitializer.initializeBusinessObjects(SystemInitializer.java:676)#######Thread[main,5,main]##0#0#Error#1#com.sap.sdt.jspm.gui.SystemInitializer.initializeBusinessObjects(SystemInitializer.java:676)#Java###Cannot initialize application data.##
    #1.5#C000AC190C0900000000005F019B539300042D33B5C95800#1175600023296#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:792)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:792)#Java###Phase has been completed.#1#JSPM/JSPMPhases/JSPM_MAIN#
    #1.5#C000AC190C09000000000060019B539300042D33B5C95800#1175600023296#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:793)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:793)#Java###Start time: .#1#2007/04/03 16:57:59#
    #1.5#C000AC190C09000000000061019B539300042D33B5C95800#1175600023296#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:794)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:794)#Java###End time: .#1#2007/04/03 17:03:43#
    #1.5#C000AC190C09000000000062019B539300042D33B5C95800#1175600023296#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:795)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:795)#Java###Duration: .#1#0:05:43.640#
    #1.5#C000AC190C09000000000063019B539300042D33B5C95800#1175600023296#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:796)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:796)#Java###Phase status is .#1#error#
    Thanks
    Venu

  • Autoconfig Error- jtfictx.sh (INSTE8_PRF 1) ORA-29874: warning in the execution of ODCIINDEXALTER routine

    Gurus,
    EBS : R12.1.2 (OS Linux)
    Database: 11.2.0.3 (OS HP UX Itanium)
    I am getting error in autoconfig with jtfictx.sh.  I am cloning PROD to QA. Usually I use RMAN duplicate to clone the database and then Application file system are copied. I have performed this method for many times( say 25 times).
    This iteration after the database recovery, I ran the RDBMS autoconfig which completed successfully. Then I ran the autoconfig on the concurrent manager server  first and received the below error. There are no change of steps from my usual.
    Executing script in InstantiateFile:
    /ebs02/oracle/inst/apps/SID_servername/admin/install/jtfictx.sh
    script returned:
    jtfictx.sh started at Sun Sep  8 01:04:11 CDT 2013
    SQL*Plus: Release 10.1.0.5.0 - Production on Sun Sep 8 01:04:11 2013
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Enter value for 1: Enter value for 2: Enter value for 3: Connected.
    DECLARE
    ERROR at line 1:
    ORA-29874: warning in the execution of ODCIINDEXALTER routine
    ORA-29960: line 1,
    DRG-10595: ALTER INDEX JTF_AMV_ITEMS_URL_CTX failed
    DRG-11422: linguistic initialization failed
    DRG-11446: supplied knowledge base file
    /u01/oracle/orahome/11.2.0/ctx/data/enlx/droldUS.dat not installed
    ORA-06512: at "SYS.DBMS_SQL", line 1199
    ORA-06512: at line 96
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    jtfictx.sh exiting with status 1
    ERRORCODE = 1 ERRORCODE_END
    .end std out.
    .end err out.
    I usually backup the autoconfig/ context file before the refresh of EBS files from PROD. The previous refresh was performed 2 months ago and it was successful. There is no changes on database ORACLE_HOME as depicted in the error.
    I see that someone have had asked similar error in forums and Hussein did recommend some Metalink Note. I did refer that but so far no success. Please do let me know if anyone faced similar issue and how did you solve it?
    Notes Referred:
    "Jtfictx.sh" Failed During Autoconfig On Application Tier, ORA-29874, DRG-10595 (Doc ID 1271186.1)
    Autoconfig Failed On Apps Tier "jtfictx.sh INSTE8_PRF" . Running manually "jtfictx.sh " Failed on "DRG-10758: index owner does not have the privilege" (Doc ID 1357760.1)
    Several Scripts Failing With A ORA-29855 Executing ODCIINDEXCREATE Routine During Upgrade To 12.1.1 (u6678700.drv) (Doc ID 1286033.1)
    11i : Autoconfig Fails On The Application Tier in running jtfictx.sh (Doc ID 396174.1)
    Thanks
    Cherrish Vaidiyan

    Yes I did and below are the DB components from dba_registry:
    Oracle Application Express    APEX_030200    3.2.1.00.12    VALID
    OLAP Catalog    OLAPSYS    11.2.0.3.0    VALID
    Oracle Data Mining    DMSYS    11.2.0.3.0    VALID
    Oracle XML Database    XDB    11.2.0.3.0    VALID
    Oracle Text    CTXSYS    11.2.0.3.0    VALID
    Spatial    MDSYS    11.2.0.3.0    VALID
    Oracle Multimedia    ORDSYS    11.2.0.3.0    VALID
    Oracle Database Catalog Views    SYS    11.2.0.3.0    VALID
    Oracle Database Packages and Types    SYS    11.2.0.3.0    VALID
    JServer JAVA Virtual Machine    SYS    11.2.0.3.0    VALID
    Oracle Database Java Packages    SYS    11.2.0.3.0    VALID
    Oracle XDK    SYS    11.2.0.3.0    VALID
    Oracle Real Application Clusters    SYS    11.2.0.3.0    INVALID
    OLAP Analytic Workspace    SYS    11.2.0.3.0    VALID
    Oracle OLAP API    SYS    11.2.0.3.0    VALID
    Only component invalid is RAC and I dont have RAC for this database.
    Thanks
    Cherrish Vaidiyan

  • An error has occurred during the execution of the JSPM_MAIN phase.

    Hi,
    When I run the go.bat for running SLD, I am getting the following exception.
    An error has occurred during the execution of the JSPM_MAIN phase.
    Cannot initialize application data. Could not determine profile parameters. Error while retrieving value j2ee/dbhost,j2ee/dbname,j2ee/dbtype, with retriever com.sap.sdt.tools.sysinfo.ProfileDataRetriever. Could not extract value with key j2ee/dbhost,j2ee/dbname,j2ee/dbtype, from file D:/usr/sap/CE1/SYS/profile/DEFAULT.PFL. A possible reason could be that the path to the directory containing the sappfpar executable is not included in the PATH environment variable. Could not start process sappfpar. Error while executing process sappfpar. java.io.IOException: CreateProcess: sappfpar all pf=D:/usr/sap/CE1/SYS/profile/DEFAULT.PFL error=2
    You can find more information in the log file D:\usr\sap\CE1\J01\j2ee\JSPM\log\log_2007_07_11_18_49_45\JSPM_MAIN_1_01.LOG.
    Use the information provided to troubleshoot the problem. An SAP Note may provide a solution to this problem. Search for SAP Notes with the following key words:
    com.sap.sdt.jspm.phases.PhaseTypeJSPM
    com.sap.sdt.jspm.gui.JspmUiException
    Cannot initialize application data.
    JSPM_MAIN
    JSPMPhases
    NetWeaver Upgrade
    SAPJup
    Java Upgrade
    Any inputs regarding this highly appreciated.
    Thanks
    Siva

    You can look at the following link, it may help
    https://www.sdn.sap.com/irj/sdn/directforumsearch?userid=3474257&rankby=10001&start=90

  • N unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    some one can help me please
    i have no idea what i must to do.
    an unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    The Exception Handler gave all the info that you need. No need to print the whole stack trace.
    The exception handler says
    Exception Details: java.lang.IllegalArgumentException
    TABLE1.NAME
    Look in the session bean (assuming that is where your underlying rowset is). Look in the _init() method for statements similar to the following:
    personRowSet.setCommand("SELECT * FROM TRAVEL.PERSON");
    personRowSet.setTableName("PERSON");
    What do you have?

  • An error has occurred during the execution of the PREPARE_JSPM_QUEUE phase

    Hi ,
         During upgrade of EHP1 - NW 700 i am getting a error in configuration step like An error has occurred during the execution of the PREPARE_JSPM_QUEUE phase
    The validation of the deploy queue was not successful. Request to check queue sapjup-queue completed with error. JSPM version is 7.01.4.0.17. Current JSPM log directory is /usr/sap/BIP/DVEBMGS00/j2ee/JSPM/log/log_2009_08_11_11_44_10.
    You can find more information in the log file /EHPI/java/log/PREPARE_JSPM_QUEUE_CSZ_01.LOG.
    Use the information provided to troubleshoot the problem. An SAP Note may provide a solution to this problem. Search for SAP Notes with the following key words: com.sap.sdt.j2ee.phases.PhaseTypePrepareJSPMQueue com.sap.sdt.sapjup.tools.sapjupjspm.JSPMRapiException The validation of the deploy queue was not successful. PREPARE_JSPM_QUEUE INIT NetWeaver Enhancement Package Installation SAPJup Java Enhancement Package Installation
    When reporting problems to SAP Support, attach the trouble ticket file /EHPI/java/log/TroubleTicket_01.txt to your message
    Plz help me to  analyze on this issue.
    Regards,
    Hari

    Hi Vasil Dimitranov
                              Thanks for your response.I have went through the log wat u said and found that only Java Patch JSPM is deployed in my system and the others patches are found be taken from the xml file and not deployed due to this below errors.
    Aug 11, 2009 11:53:33 AM [Error]: java.lang.NullPointerException:
    Aug 11, 2009 11:53:33 AM [Error]: Request to check queue sapjup-queue completed with error.
    Aug 11, 2009 11:53:33 AM [Error]: Request to check queue sapjup-queue completed with error.
    JSPM version is 7.01.4.0.17. Current JSPM log directory is /usr/sap/BIP/DVEBMGS00/j2ee/JSPM/log/log_2009_08_11_11_44_10
    Aug 11, 2009 11:53:33 AM [Info]: Message type received disconnect.
    Aug 11, 2009 11:53:33 AM [Info]: Remote connection is closed.
    Aug 11, 2009 11:53:34 AM [Warning]: Refusing connection.
    Aug 11, 2009 11:53:34 AM [Warning]: Network input/output exception has occurred: Error during read
    Aug 11, 2009 11:53:34 AM [Info]: Phase JSPM/JSPMPhases/JSPM_MAIN has been completed.
    Aug 11, 2009 11:53:34 AM [Info]: Start time: 2009/08/11 11:45:25.
    Aug 11, 2009 11:53:34 AM [Info]: End time: 2009/08/11 11:53:34.
    Aug 11, 2009 11:53:34 AM [Info]: Duration: 0:08:08.764.
    Aug 11, 2009 11:53:34 AM [Info]: Phase status is initial.
    Plz help me on this to analyze regarding the check queue sapjup-queue .
    Thanks in Advance.
    Regards,
    Hari

  • Failure occurred in the execution of deployment request with ID '1219300288

    I deployed my JSF application from workspacestudio 1.1 (workshop for weblogic 10) to weblogic 10 server. It works fine for me.
    All other teammates are facing problem with their deployment. They get an error as
    <Failure occurred in the execution of deployment request with ID '1219300288452' for task '0'. Error is: 'weblogic.application.ModuleException: com.sun.faces.util.Util.getLogger(Ljava/lang/String;)Ljava/util/logging/Logger;'
    Please can someone tell me the reason for this behaviour?
    Here's the stack trace:
    <Aug 20, 2008 11:31:15 PM PDT> <Warning> <Server> <BEA-002611> <Hostname "localhost", maps to multiple IP addresses: 10.1.243.73, 127.0.0.1> <Aug 20, 2008 11:31:15 PM PDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING> <Aug 20, 2008 11:31:15 PM PDT> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode> log4j:WARN No appenders could be found for logger (com.sun.faces.config.ConfigureListener).
    log4j:WARN Please initialize the log4j system properly.
    <Aug 20, 2008 11:31:29 PM PDT> <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with ID '1219300288452' for task '0'. Error is: 'weblogic.application.ModuleException: com.sun.faces.util.Util.getLogger(Ljava/lang/String;)Ljava/util/logging/Logger;'
    weblogic.application.ModuleException: com.sun.faces.util.Util.getLogger(Ljava/lang/String;)Ljava/util/logging/Logger;
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:977)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:361)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
         Truncated. see log file for complete stacktrace
    java.lang.NoSuchMethodError: com.sun.faces.util.Util.getLogger(Ljava/lang/String;)Ljava/util/logging/Logger;
         at com.sun.faces.application.WebappLifecycleListener.<clinit>(WebappLifecycleListener.java:67)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         Truncated. see log file for complete stacktrace
    >
    <Aug 20, 2008 11:31:30 PM PDT> <Error> <Deployer> <BEA-149202> <Encountered an exception while attempting to commit the 1 task for the application 'ipro'.> <Aug 20, 2008 11:31:30 PM PDT> <Warning> <Deployer> <BEA-149004> <Failures were detected while initiating deploy task for application 'ipro'.> <Aug 20, 2008 11:31:30 PM PDT> <Warning> <Deployer> <BEA-149078> <Stack trace for message 149004
    weblogic.application.ModuleException: com.sun.faces.util.Util.getLogger(Ljava/lang/String;)Ljava/util/logging/Logger;
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:977)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:361)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60)
         Truncated. see log file for complete stacktrace
    java.lang.NoSuchMethodError: com.sun.faces.util.Util.getLogger(Ljava/lang/String;)Ljava/util/logging/Logger;
         at com.sun.faces.application.WebappLifecycleListener.<clinit>(WebappLifecycleListener.java:67)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         Truncated. see log file for complete stacktrace
    >
    <Aug 20, 2008 11:31:30 PM PDT> <Warning> <Deployer> <BEA-149252> <No deployment 'ipro' found for Operation stop.>

    I created JSF app in the workshop for weblogic 10 and submitted the code to source control.
    Team mates took the latest revision and build the project on their machine, which has same installation workshop for weblogic 10 as mine( we use same installler)
    Thus the project have same code no difference at all.

  • Ng An exception occurred during the execution of the current web request.

    An exception occurred during the execution of the current web request. Please contact the administrator to review the stack trace in the event log for more information about the error.
    this error occured while making changes to the mapings, there was "&" in the source account and some test also loaded in the text,
    the versio n of FDM is 11.1.2.0
    I understand that because of loading & in the source account it is causing this issue,
    How to delete this invalid char from database, which table and column will contain this information, Please advise me how to proceed on this.
    thanks,
    msr

    This TSQL will do the trick. It's not the cleanest as I just wrote it, but it will dynamically remove the & from the data mapping tables and replace any invalid entries with the phrase INVALID.
    --Remove && from Data Maps
    --Charles Beyer ([email protected])
    --NOTES : 'Hackish' version for demonstration purposes
    -- Declare working variables
    DECLARE @strTableName varchar(255)
    DECLARE @strSql Nvarchar(500)
    -- Create cursor to iterate through each Data Map table.  Look in special table sysobjects to get a list of the tables.
    DECLARE crsDataMapTables Cursor For
       select name
          from sysobjects
          where name like 'tdatamap%'
             and xtype = 'U'
    Open crsDataMapTables
    Fetch Next from crsDataMapTables Into @strTableName  --Get the name of the first Data Map table and place it into working variable
    While @@FETCH_STATUS = 0 Begin  --While records (table names) exist, execute loop logic
    print 'Cleaning table : ' + @strTableName
      --Multi-pass updates to check the SrcKey, TargKey, and WhereClauseValue fields for the invalid character
      --Dynamic SQL is used below so that we can use the Table Name from the cursor..
      Set @strSQL = 'UPDATE ' + @strTableName + ' set SrcKey = ''Invalid'' where SrcKey like (''%&%'')'
      exec (@strSQL)
      Set @strSQL = 'UPDATE ' + @strTableName + ' set TargKey = ''Invalid'' where TargKey like (''%&%'')'
      exec (@strSQL)
      Set @strSQL = 'UPDATE ' + @strTableName + ' set WhereClauseValue = ''Invalid'' where WhereClauseValue like (''%&%'')'
      exec (@strSQL)
      Fetch Next from crsDataMapTables Into @strTableName
    End
    --Dispose of Cursor as we are done.
    Close crsDataMapTables
    Deallocate crsDataMapTables
     

  • Unhandled exception occurred during the execution of the workflow instance

    I had a workflow and library working with no issues, but had to move the library and export the workflow to another subsite (though on the same web site/collection).  I followed these how-tos:
    http://msdn.microsoft.com/en-us/library/office/jj819316%28v=office.15%29.aspx
    http://technet.microsoft.com/en-us/library/ee428301%28v=office.15%29.aspx
    Anyway, I've stripped all actions from the workflow and only have an Assign Task, but get this below:
    An unhandled exception occurred during the execution of the workflow instance. Exception details: System.ArgumentException: ContentTypeId at Microsoft.Activities.Hosting.Runtime.Subroutine.SubroutineChild.Execute(CodeActivityContext context) at System.Activities.CodeActivity.InternalExecute(ActivityInstance
    instance, ActivityExecutor executor, BookmarkManager bookmarkManager) at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager bookmarkManager, Location resultLocation)
    To troubleshoot, I removed all library columns, removed then re-added the Custom Content type the New Document uses, and still the same error - with the workflow going into Suspended mode.
    I also tried the removal of the file from /Relationships%20List/allitems.aspx and de-activating then re-activating the SharePoint Publishing feature, also that didn't work.
    I've gone into ULS, but unable to find anything definitive, so not sure what to try next?
    Thank you,
    Chad

    Hi Chad,
    Glad to hear the issue is resolved. Content types could be used for multiple lists in SharePoint site at the same time.
    However, I'm not quite sure why you said the resolution is for a "bug". I read the article per your link:
    http://www.andrewconnell.com/blog/SP2013-Workflow-Custom-Task-Outcomes
    The article is showing how to create custom outcomes buttons in task forms. As I understand, the issue you encountered is that workflow migrated from the other site shows the suspended status.
    Please be more specific on the issue if assistance is needed. If this is the second question, I’d recommend you open another thread in the relevant forum and provide specific information about the issue. In order to avoid confusion and keep track of troubleshooting
    steps, we usually troubleshoot one issue per thread in order to find a resolution efficiently.
    Thanks for the understanding.
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

  • An error occured during the executin of the DETERMINE_ENGINE_RELEASE  i

    Hi,
             while installing EHP1 on java(Netweaver 2004s) using EHPInstalled we are stopped with this error in configuration stage
    An error occured during the executin of the DETERMINE_ENGINE_RELEASE phase could not detect as java release return code condition sucess evaluate to false for process java for ACTION_VERSION
    Please help us how to resolve this issue.
    Thanks in Advance

    Hi,
    I am getting the same error while upgrading to EHP4 and so not starting a seperate thread...
    I am pasting the log...
    Kindly suggest...
    This file is DETERMINE_ENGINE_RELEASE_DER_01.LOG
    <!LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[2.0.7.1006]/>
    <!NAME[/softcd_dump/EHPI/java/log/DETERMINE_ENGINE_RELEASE_DER_01.LOG]/>
    <!PATTERN[DETERMINE_ENGINE_RELEASE_DER_01.LOG]/>
    <!FORMATTER[com.sap.tc.logging.TraceFormatter(%d [%s]: %-100l [%t]: %m)]/>
    <!ENCODING[UTF8]/>
    <!LOGHEADER[END]/>
    Feb 9, 2010 9:41:22 PM [Info]:                      com.sap.sdt.ucp.phases.AbstractPhaseType.initialize(AbstractPhaseType.java:754) [Thread[main,5,main]]: Phase PREPARE/INIT/DETERMINE_ENGINE_RELEASE has been started.
    Feb 9, 2010 9:41:22 PM [Info]:                      com.sap.sdt.ucp.phases.AbstractPhaseType.initialize(AbstractPhaseType.java:755) [Thread[main,5,main]]: Phase type is com.sap.sdt.j2ee.phases.PhaseTypeDetectEngineRelease.
    Feb 9, 2010 9:41:22 PM [Info]: com.sap.sdt.j2ee.tools.releasedetection.EngineReleaseDetector.detectEngineRelease(EngineReleaseDetector.java:73) [Thread[main,5,main]]: Checking AS Java release using version command.
    Feb 9, 2010 9:41:22 PM [Info]: com.sap.sdt.j2ee.tools.releasedetection.EngineReleaseDetector.detectEngineRelease(EngineReleaseDetector.java:146) [Thread[main,5,main]]: The tool has not been found in location: /usr/sap/D50/DVEBMGS00/j2ee/cluster/bootstrap/scripts/version.sh.
    Feb 9, 2010 9:41:22 PM [Info]: com.sap.sdt.j2ee.tools.releasedetection.EngineReleaseDetector.detectEngineRelease(EngineReleaseDetector.java:80) [Thread[main,5,main]]: Checking AS Java release using jspm tool.
    Feb 9, 2010 9:41:22 PM [Info]: com.sap.sdt.j2ee.tools.releasedetection.EngineReleaseDetector.detectEngineRelease(EngineReleaseDetector.java:114) [Thread[main,5,main]]: The tool have been found in location /usr/sap/D50/DVEBMGS00/j2ee/JSPM.
    Feb 9, 2010 9:41:22 PM [Info]:       com.sap.sdt.tools.proc.JavaOsProcessController.logProcessInfo(JavaOsProcessController.java:41) [Thread[main,5,main]]: AS Java process ID 4, name com.sap.sdt.jspm.main.Jspm has been started.
    Feb 9, 2010 9:41:22 PM [Info]:       com.sap.sdt.tools.proc.JavaOsProcessController.logProcessInfo(JavaOsProcessController.java:54) [Thread[main,5,main]]:   Command line: /softcd_dump/EHPI/jvm/jre/bin/java -cp .:/usr/sap/D50/DVEBMGS00/j2ee/JSPM/lib/sdt_jspm.jar com.sap.sdt.jspm.main.Jspm -rootdir=/usr/sap/D50/DVEBMGS00/j2ee/JSPM -v
    Feb 9, 2010 9:41:22 PM [Info]:       com.sap.sdt.tools.proc.JavaOsProcessController.logProcessInfo(JavaOsProcessController.java:55) [Thread[main,5,main]]:   Standard out: /softcd_dump/EHPI/java/log/JSPM_ACTION_VERSION__DER_01.OUT
    Feb 9, 2010 9:41:22 PM [Info]:                      com.sap.sdt.tools.proc.OsProcessController.launch(OsProcessController.java:142) [Thread[main,5,main]]: Process ID 4 has been started.
    Feb 9, 2010 9:41:22 PM [Info]:                     com.sap.sdt.tools.proc.OsProcessController.waitFor(OsProcessController.java:198) [Thread[main,5,main]]: Waiting for process ID 4, name java to finish.
    Feb 9, 2010 9:41:28 PM [Info]:                     com.sap.sdt.tools.proc.OsProcessController.waitFor(OsProcessController.java:231) [Thread[main,5,main]]: Process ID 4, name java has been finished, exit code 1.
    Feb 9, 2010 9:41:28 PM [Error]:                       com.sap.sdt.ucp.phases.AbstractPhaseType.doExecute(AbstractPhaseType.java:863) [Thread[main,5,main]]: Exception has occurred during the execution of the phase.
    Feb 9, 2010 9:41:28 PM [Error]:        com.sap.sdt.tools.procx.DefaultProcessAdapter.checkReturnCode(DefaultProcessAdapter.java:524) [Thread[main,5,main]]: Return code condition success evaluated to false for process java for action ACTION_VERSION.
    Feb 9, 2010 9:41:28 PM [Error]:           com.sap.sdt.j2ee.tools.releasedetection.JSPMProcess.runVersionCommand(JSPMProcess.java:74) [Thread[main,5,main]]: Could not detect AS Java release.
    Feb 9, 2010 9:41:28 PM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:906) [Thread[main,5,main]]: Phase PREPARE/INIT/DETERMINE_ENGINE_RELEASE has been completed.
    Feb 9, 2010 9:41:28 PM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:907) [Thread[main,5,main]]: Start time: 2010/02/09 21:41:22.
    Feb 9, 2010 9:41:28 PM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:909) [Thread[main,5,main]]: End time: 2010/02/09 21:41:28.
    Feb 9, 2010 9:41:28 PM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:910) [Thread[main,5,main]]: Duration: 0:00:05.925.
    Feb 9, 2010 9:41:28 PM [Info]:                         com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:911) [Thread[main,5,main]]
    This is Trouble ticket.txt
    Trouble Ticket Report
    Installation of enhancement package 1 for SAP NetWeaver 7.0
    SID................: SID
    Hostname...........: saptr10
    Install directory..: /usr/sap/SID
    Upgrade directory..: /softcd_dump/EHPI/java
    Database...........: $(/J2EE/DBSystem/DBInfoName)
    Operating System...: UNIX
    JDK version........: 1.6.0_07 SAP AG
    SAPJup version.....: 3.4.24
    Source release.....: $(/ER_CODE)
    Target release.....: 710
    Start release SP...: $(/J2EE/StandardSystem/SPLevel)
    Target release SP..: $(/J2EE/ShadowSystem/SPLevel)
    Current usages.....:
    ABAP stack present.: true
    The execution of PREPARE/INIT/DETERMINE_ENGINE_RELEASE ended in error.
    Could not detect AS Java release.
    Return code condition success evaluated to false for process java for action ACTION_VERSION.
    More information can be found in the log file /softcd_dump/EHPI/java/log/DETERMINE_ENGINE_RELEASE_DER_01.LOG.
    Use the information provided to trouble-shoot the problem. There might be an OSS note providing a solution to this problem. Search for OSS notes with the following search terms:
    com.sap.sdt.j2ee.phases.PhaseTypeDetectEngineRelease
    com.sap.sdt.j2ee.tools.releasedetection.EngineReleaseDetectionException
    Could not detect AS Java release.
    DETERMINE_ENGINE_RELEASE
    INIT
    PREPARE
    NetWeaver Enhancement Package Installation
    SAPJup
    Java Enhancement Package Installation
    Thanks,
    RaHuL...

  • Error 1935.An error occurred during the installation of assembly 'Microsoft.VC90.ATL or 'Microsoft.VC80.ATL'

    The OS is Windows Server 2008 R2
    I can't install any programs (like backup agents) that require these components: 
    Microsoft Visual C++ 2005 SP1 Redistributable Package (x64) or the
    Microsoft Visual C++ 2008 SP1 Redistributable Package (x64)
    I've tried unregistering the Windows Installer and reregistering it, starting from a clean boot scenario,
    This is the error message:
    Product: Microsoft Visual C++ 2005 Redistributable (x64) -- Error 1935.An error occurred during the installation of assembly 'Microsoft.VC80.ATL,type="win32",version="8.0.50727.762",publicKeyToken="1fc8b3b9a1e18e3b",processorArchitecture="amd64"'. Please
    refer to Help and Support for more information. HRESULT: 0x80070BC9. assembly interface: IAssemblyCacheItem, function: Commit, component: {837BF1EB-D770-94EB-A01F-C8B3B9A1E18E}
    Seems like there are thousands of entries when you google this error but not too many solutions.
    The only microsoft support KB entry that deals with this error only is for Windows 7, so the Fix It tool can't be run:
    http://support.microsoft.com/kb/970652

    Hi All
    I have the Same_D_n_Problem.... However, I WAS able to download and install the VC++ 2005 Redist x_64 after removing the one that was there.... Didn't help :(
    Tried removing, then installing using a CleanBoot - no luck
    REinstalled VC++2005 Redist. No problem but cannot install SQL 2008 R2
    Soooo... have traced the SQL Installer log file - and one can get to the entry by searching for 1935 - then looked back for what I think is the begining of the problem - I have marked this with ********************* here is the LogFile excerpt:
    2010-12-29 22:08:59 Slp: HKEY_LOCAL_MACHINE\Software\Microsoft\Microsoft SQL Server\Services\SSIS Server - OK.
    2010-12-29 22:08:59 Slp: HKEY_LOCAL_MACHINE\Software\Microsoft\Microsoft SQL Server\SqlUA - OK.
    2010-12-29 22:08:59 Slp: HKEY_LOCAL_MACHINE\Software\Microsoft\Microsoft SQL Server\SqlUA\CurrentVersion - OK.
    2010-12-29 22:08:59 Slp: ------------------------------------------------------------
    2010-12-29 22:08:59 Slp: D:\SQLInstal\x64\FixSqlRegistryKey_x86.exe exit code: 0
    2010-12-29 22:08:59 Slp: Completed Action: FixSqlRegistryKey, returned True
    2010-12-29 22:08:59 Slp: ----------------------------------------------------------------------
    2010-12-29 22:08:59 Slp: Running Action: PostMsiTimingConfigAction
    2010-12-29 22:08:59 Slp: The object state property 'workflow' is null/empty. *********************
    2010-12-29 22:08:59 Slp: Error: Action "PostMsiTimingConfigAction" failed during execution.
    2010-12-29 22:08:59 Slp: Completed Action: PostMsiTimingConfigAction, returned False
    2010-12-29 22:08:59 Slp: Completed Action: ExecuteStandardTimingsWorkflow, returned True
    2010-12-29 22:08:59 Slp: ----------------------------------------------------------------------
    2010-12-29 22:08:59 Slp: Running Action: ExecuteCloseWorkflow
    2010-12-29 22:08:59 Slp: Workflow to execute: 'CLOSE'
    2010-12-29 22:08:59 Slp: ----------------------------------------------------------------------
    2010-12-29 22:08:59 Slp: Skipping Action: ProduceStatusLogs
    2010-12-29 22:08:59 Slp: Action is being skipped due to the following restrictions:
    2010-12-29 22:08:59 Slp: Condition "Is the datastore flag /Scenario/GlobalFlags/AreProductFeaturesSupported set" did not pass as it returned false and true was expected.
    2010-12-29 22:08:59 Slp: ----------------------------------------------------------------------
    2010-12-29 22:08:59 Slp: Running Action: FinalizeProgressStatus
    2010-12-29 22:08:59 Slp: Completed Action: FinalizeProgressStatus, returned True
    2010-12-29 22:08:59 Slp: ----------------------------------------------------------------------
    2010-12-29 22:08:59 Slp: Running Action: RebootMessageAction
    2010-12-29 22:08:59 Slp: Completed Action: RebootMessageAction, returned True
    2010-12-29 22:08:59 Slp: ----------------------------------------------------------------------
    2010-12-29 22:08:59 Slp: Skipping Action: FinishPage
    2010-12-29 22:08:59 Slp: Action is being skipped due to the following restrictions:
    2010-12-29 22:08:59 Slp: Condition "Is the user's scenario set to EditionUpgrade" did not pass as it returned false and true was expected.
    2010-12-29 22:08:59 Slp: ----------------------------------------------------------------------
    2010-12-29 22:08:59 Slp: Skipping property RequireMode of class: StopAction
    2010-12-29 22:08:59 Slp: Input of property will not be set due to the following failed restriction(s):
    2010-12-29 22:08:59 Slp: Condition "Is the user's scenario set to ComponentUpdate" did not pass as it returned true and false was expected.
    2010-12-29 22:08:59 Slp: ----------------------------------------------------------------------
    2010-12-29 22:08:59 Slp: Running Action: CloseUI
    2010-12-29 22:08:59 Slp: Stop Action
    2010-12-29 22:08:59 Slp: Completed Action: CloseUI, returned True
    2010-12-29 22:08:59 Slp: Completed Action: ExecuteCloseWorkflow, returned True
    2010-12-29 22:08:59 Slp: ----------------------------------------------------------------------
    2010-12-29 22:08:59 Slp: Running Action: PassPidBackFromComponentUpdate
    2010-12-29 22:08:59 Slp: Pass the flag CuPidDisplayed to the main setup
    2010-12-29 22:08:59 Slp: ENU value specified, trying to pass the value to main setup
    2010-12-29 22:08:59 Slp: PID value specified, trying to pass the value to main setup
    2010-12-29 22:08:59 Slp: SQMREPORTING value is specified in CU workflow, trying to pass the value to main setup
    2010-12-29 22:08:59 Slp: Completed Action: PassPidBackFromComponentUpdate, returned True
    2010-12-29 22:08:59 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine
    2010-12-29 22:08:59 Slp: Sco: Attempting to open registry subkey Software\Microsoft\Microsoft SQL Server\100
    2010-12-29 22:08:59 Slp: Sco: Attempting to get registry value CustomerFeedback
    2010-12-29 22:09:00 Slp:
    2010-12-29 22:09:00 Slp:
    2010-12-29 22:09:00 Slp: ----------------------------------------------------------------------
    2010-12-29 22:09:00 Slp:
    2010-12-29 22:09:00 Slp: Error result: -2068052081
    2010-12-29 22:09:00 Slp: Result facility code: 1212
    2010-12-29 22:09:00 Slp: Result error code: 1935
    2010-12-29 22:09:00 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine
    2010-12-29 22:09:00 Slp: Sco: Attempting to open registry subkey
    2010-12-29 22:09:00 Slp: Sco: Attempting to open registry subkey Software\Microsoft\PCHealth\ErrorReporting\DW\Installed
    2010-12-29 22:09:00 Slp: Sco: Attempting to get registry value DW0201
    2010-12-29 22:09:22 Slp: Submitted 1 of 1 failures to the Watson data repository
    2010-12-29 22:09:22 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine
    2010-12-29 22:09:22 Slp: Sco: Attempting to open registry subkey Software\Microsoft\Microsoft SQL Server\100
    2010-12-29 22:09:22 Slp: Sco: Attempting to get registry value CustomerFeedback
    Would be great to hear others' thoughts on this
    Cheers
    Martin

Maybe you are looking for

  • Song order keeps changing on iPod

    My albums no longer seem to play in order on my iPod. Based on previous posts I have made sure I am using the latest software, my songs are all track numbered and all the other information (eg artist and album) are all identical. All tracks are check

  • How do you remap the Fn key on windows for gaming?

    As many of you know on the macbook pro the bottom row of keys is in this order: [fn][control][alt][command] instead of the more logical [control][fn][alt][command]. This can be a huge problem in gaming which requires the use of the control key. Most

  • Purchase order mail

    Dear All In our Organization  in order of data security end users ar enot allowed to transfer mails directly . they have to post the mail to network and service dept(N&S)  after that  the corresponding file would be sent to external mail ID that is s

  • ITunes keeps on crashng on my iPad1

    After 6 months of owning my iPad iTunes and the App store constantly crashes on me. Any help would be appreciated

  • Where can I find True blood season 4 subtitled?

    Where can I find True blood season 4 subtitled in the Itunes-store? Horst