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

Similar Messages

  • Autoconfig error jtfictx.sh INSTE8_PRF

    Hi,
    Any one can help me to resolve the issue. The below is the autoconfig log.
    [AutoConfig Error Report]
    The following report lists errors AutoConfig encountered during each
    phase of its execution. Errors are grouped by directory and phase.
    The report format is:
    <filename> <phase> <return code where appropriate>
    [PROFILE PHASE]
    AutoConfig could not successfully execute the following scripts:
    Directory: /backup/applerpp/erpp1/inst/apps/erpp1_erpp1/admin/install
    jtfictx.sh INSTE8_PRF 1
    AutoConfig is exiting with status 1
    Regards

    Hi User;
    Please follow below and see its helpfull:
    Autoconfig Fails On The Application Tier in running jtfictx.sh [ID 396174.1]
    Regard
    Helios

  • 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

  • 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.

  • Autoconfig fails with 'Jtfictx.sh Inste8_prf 1

    Hai all,
    Autoconfig on 12.1.3 on linux fails with
    [AutoConfig Error Report]
    The following report lists errors AutoConfig encountered during each
    phase of its execution.  Errors are grouped by directory and phase.
    The report format is:
          <filename>  <phase>  <return code where appropriate>
      [PROFILE PHASE]
      AutoConfig could not successfully execute the following scripts:
        Directory: /u02/applprod/inst/apps/AOUT_aouprodfindb/admin/install
          jtfictx.sh              INSTE8_PRF         1
    AutoConfig is exiting with status 1
    AutoConfig execution completed on Mon Mar  4 06:41:03 2013
    Time taken for AutoConfig execution to complete : 1 mins  5 secswhen I try to execute the script manually, am getting the below error :
    sh jtfictx.sh
    jtfictx.sh started at Mon Mar 4 06:48:22 AST 2013
    jtfictx.sh: line 53: printf: `\': invalid format character
    Cannot find environment file appsorafileERRORCODE = 1 ERRORCODE_END
    Any idea
    I referred the notes
         Autoconfig Completed With Error 'Jtfictx.sh Inste8_prf 1' [ID 372363.1]
    Autoconfig On Apps Tier Fail While Attempting To Run Jtfictx.sh [ID 457858.1]
    no luck

    Thanks Srini.
    Am getting the below error only
    [AutoConfig Error Report]
    The following report lists errors AutoConfig encountered during each
    phase of its execution. Errors are grouped by directory and phase.
    The report format is:
    <filename> <phase> <return code where appropriate>
    [PROFILE PHASE]
    AutoConfig could not successfully execute the following scripts:
    Directory: /u02/applprod/inst/apps/AOUT_aouprodfindb/admin/install
    jtfictx.sh INSTE8_PRF 1
    AutoConfig is exiting with status 1
    AutoConfig execution completed on Mon Mar 4 06:41:03 2013
    Time taken for AutoConfig execution to complete : 1 mins 5 secs

  • 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"

  • ORA-29855: erreur d'exécution de la routine ODCIINDEXCREATE

    Hello
    i have an error when creating a full text index on a simple table which has a primary key
    CREATE TABLE tab_1(aa nvarchar2(50) PRIMARY KEY,bb clob)
    CREATE INDEX xtab_1_bb ON tab_1 (bb) INDEXTYPE IS CTXSYS.CONTEXT
    ORA-29855: erreur d'exécution de la routine ODCIINDEXCREATE
    ORA-20000: Erreur Oracle Text
    DRG-10528: clé primaires de type NVARCHAR2 non autorisées
    ORA-06512: à "CTXSYS.DRUE", ligne 160
    ORA-06512: à "CTXSYS.TEXTINDEXMETHODS", ligne 364
    if i retry to recreate the full text index, i get
    ORA-00955: ce nom d'objet existe déjà
    however, if i create the full text index before creating the primary key it works good
    CREATE TABLE tab_2(aa nvarchar2(50) ,bb clob)
    CREATE INDEX xtab_2_bb ON tab_2 (bb) INDEXTYPE IS CTXSYS.CONTEXT
    ALTER TABLE tab_2 ADD CONSTRAINT pk_bb PRIMARY KEY(aa)
    help me pleaze

    Raj Kr Pandit wrote:
    where is the issue?The issue is your code is apples and oranges:
    SQL> CREATE TABLE tab_1(aa nvarchar2(50) PRIMARY KEY,bb clob)
      2  /
    Table created.
    SQL> CREATE INDEX xtab_1_bb ON tab_1 (bb) INDEXTYPE IS CTXSYS.CONTEXT
      2  /
    CREATE INDEX xtab_1_bb ON tab_1 (bb) INDEXTYPE IS CTXSYS.CONTEXT
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000: Oracle Text error:
    DRG-10528: primary keys of type NVARCHAR2 are not allowed
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 364
    SQL> SY.

  • ORA-29902 after restoring the database

    Hello friends,
    Our database crashed 2 weeks ago and we had rman backups and I restore backups and it fixed. ORACLE version:  11.2.0.3.0, OS: Win server 2008
    But now when we want to run our old quires which were working without problem before get exception:
    ORA-29902: error in executing ODCIIndexStart() routine
    ORA-01187: cannot read from file  because it failed verification tests
    ORA-01110: data file 201: 'D:\APP\ADMINISTRATOR\ORADATA\IWATCHDB\TEMP01.DBF'
    ORA-06512: at "MDSYS.SDO_INDEX_METHOD_10I", line 333
    29902. 00000 -  "error in executing ODCIIndexStart() routine"
    *Cause:    The execution of ODCIIndexStart routine caused an error.
    *Action:   Examine the error messages produced by the indextype code and
               take appropriate action.
    our query:
    SELECT R.*
    FROM DPS_CAMERAS_V R
    WHERE SDO_WITHIN_DISTANCE(R.geom, SDO_GEOMETRY(2001, 8307, SDO_POINT_TYPE(-118.28648979370115, 34.02271512835471, null), null, null), 'DISTANCE=10 UNIT=MILE') = 'TRUE'
    I checked the table spatial index to make sure that it is still there and did not get deleted during the restoring process and it was there.
    I opened the index using sqldeveloper and it was written on top of the sql: -- Unable to render INDEX DDL for object IWATCH.DPS_CAMERA_IDX with DBMS_METADATA attempting internal generator.
    Thanks for your help

    I used the solution here:
    http://scn.sap.com/thread/562143
    And the query I mentioned above worked properly.
    But I changed the query to:
    SELECT R.*
    FROM DPS_CAMERAS R
    WHERE SDO_WITHIN_DISTANCE(R.geom, SDO_GEOMETRY(2001, 8307, SDO_POINT_TYPE(-118.28648979370115, 34.02271512835471, null), null, null), 'DISTANCE=10 UNIT=MILE') = 'TRUE'
    To run query on the main table instead of the view and I got:
    ORA-13226: interface not supported without a spatial index
    ORA-06512: at "MDSYS.MD", line 1723
    ORA-06512: at "MDSYS.MDERR", line 8
    ORA-06512: at "MDSYS.SDO_3GL", line 1052
    13226. 00000 -  "interface not supported without a spatial index"
    *Cause:    The geometry table does not have a spatial index.
    I checked the table and it has an spatial index, but I dropped it and tried to create a new spatial index and I got:
    An error was encountered performing the requested operation:
    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-13249: Error in spatial index: [mdrcrtxfergm]
    ORA-13249: Error in spatial index: [mdpridxtxfergm]
    ORA-13200: internal error [ROWID:AAASIeAAEAAAAKOAAw] in spatial indexing.
    ORA-13206: internal error [] while creating the spatial index
    ORA-13032: Invalid NULL  SDO_GEOMETRY object
    ORA-06512: at "MDSYS.SDO_INDEX_METHOD_10I", line 10
    29855. 00000 -  "error occurred in the execution of ODCIINDEXCREATE routine"
    *Cause:    Failed to successfully execute the ODCIIndexCreate routine.
    *Action:   Check to see if the routine has been coded correctly.
    Vendor code 29855
    and I tried it again and got:
    Error starting at line 1 in command:
    create INDEX dps_cameras_idx ON dps_cameras(geom) INDEXTYPE IS MDSYS.SPATIAL_INDEX
    Error at Command Line:1 Column:14
    Error report:
    SQL Error: ORA-00955: name is already used by an existing object
    00955. 00000 -  "name is already used by an existing object"
    *Cause:   
    *Action:
    and I checked the table and saw the new index is there, but when I want to run the query I get the same error as above:
    ORA-13226: interface not supported without a spatial index
    ORA-06512: at "MDSYS.MD", line 1723
    ORA-06512: at "MDSYS.MDERR", line 8
    ORA-06512: at "MDSYS.SDO_3GL", line 1052
    13226. 00000 -  "interface not supported without a spatial index"
    *Cause:    The geometry table does not have a spatial index.
    *Action:   Verify that the geometry table referenced in the spatial operator
               has a spatial index on it.

  • ORA-01547 :warning recover succeeded but open resetlogs......

    Hai All,
    In a standby database I put a command
    sql> recover standby database
    auto
    then error comes...
    ORA-01547 :warning recover succeeded but open resetlogs......
    ora-01152 : file1 was not restored from a sufficiently old bcakup
    ora-01110 : datafile 1: d:\sfms\system01.dbf'
    when the database open read only .. also this error comes...
    How can I resolve....
    Shiju

    See Note:1070049.6

  • Autoconfig error: ORA-16000:

    Hi,
    I have a standby instance for an 11.5.10.2 production instance, now when I am configuring SSL over Standby for http, it gives me below error.
    Oracle error -16000: ORA-16000: database open for read-only access has been detected in FND_GSM_UTIL.upload_context_file.
    oracle.apps.ad.autoconfig.oam.InDbCtxFileException: Error executng BEGIN fnd_gsm_util.upload_context_file(:1,:2,:3,:4,:5); END;: 1; Oracle error -16000: ORA-16000: database open for read-only access has been detected in FND_GSM_UTIL.upload_context_file.
    Please let me know how can i execute autconfig, coz my standby database is in read only mode?
    Regards
    Bilal

    user13068554 wrote:
    Section 3. Configuring SSL for AutoConfig-enabled System of 123718.1
    B. Run AutoConfig on application tier.If you are running this on the standby application tier then it is expected to get this error. You will have to enable SSL on the source application/database then rebuild the standby application/database from the beginning.
    Please log a SR to confirm this with Oracle support.
    Thanks,
    Hussein

  • Autoconfig Errors while applying Patch 981770 EBS 12.1.3

    I am trying to apply patch 981770 to my recently upgraded 12.1.3 environment and I am seeing the following errors in the Autoconfig log file. Any suggestions on how I can correct this would be greatly apprechiated
    Thanks in advance!
    [AutoConfig Error Report]
    The following report lists errors AutoConfig encountered during each
    phase of its execution. Errors are grouped by directory and phase.
    The report format is:
    <filename> <phase> <return code where appropriate>
    [INSTANTIATE PHASE]
    AutoConfig could not successfully instantiate the following files:
    Directory: /d01/oracle/VIS/inst/apps/VIS_vintoracle/ora/10.1.3/config
    jazn.xml INSTE8
    Directory: /d01/oracle/VIS/inst/apps/VIS_vintoracle/ora/10.1.3/j2ee/forms-c4ws/config
    jms.xml INSTE8
    oc4j-connectors.xml INSTE8
    oc4j.properties INSTE8
    Directory: /d01/oracle/VIS/inst/apps/VIS_vintoracle/ora/10.1.3/j2ee/forms/application-deployments/forms
    orion-application.xml INSTE8
    Directory: /d01/oracle/VIS/inst/apps/VIS_vintoracle/ora/10.1.3/j2ee/forms/config
    oc4j.properties INSTE8
    Directory: /d01/oracle/VIS/inst/apps/VIS_vintoracle/ora/10.1.3/j2ee/oafm/application-deployments/ascontrol
    orion-application.xml INSTE8
    Directory: /d01/oracle/VIS/inst/apps/VIS_vintoracle/ora/10.1.3/j2ee/oafm/application-deployments/mapviewer/web
    orion-web.xml INSTE8
    AutoConfig is exiting with status 8

    thanks again. I reran auto config and now I am seeing some different errors. Any further suggestions would be greatly appreciated.
    Thanks!
    Trying to connect using APPS_JDBC_URL
    Exception occurred: java.sql.SQLException: ORA-28000: the account is locked
    [SETUP PHASE]
    AutoConfig could not successfully execute the following scripts:
    Directory: /d01/oracle/VIS/inst/apps/VIS_vintoracle/admin/install
    adgendbc.sh INSTE8_SETUP 1
    afcpnode.sh INSTE8_SETUP 1
    afgcsreg.sh INSTE8_SETUP 1
    [PROFILE PHASE]
    AutoConfig could not successfully execute the following scripts:
    Directory: /d01/oracle/VIS/apps/tech_st/10.1.3/perl/bin/perl -I /d01/oracle/VIS/apps/tech_st/10.1.3/perl/lib/5.8.3 -I /d01/oracle/VIS/apps/tech_st/10.1.3/perl/lib/site_perl/5.8.3 -I /d01/oracle/VIS/apps/apps_st/appl/au/12.0.0/perl -I /d01/oracle/VIS/apps/tech_st/10.1.3/Apache/Apache/mod_perl/lib/site_perl/5.8.3/i686-linux-thread-multi /d01/oracle/VIS/inst/apps/VIS_vintoracle/admin/scripts/adexecsql.pl sqlfile=/d01/oracle/VIS/inst/apps/VIS_vintoracle/admin/install
    afwebprf.sql INSTE8_PRF 1
    amscmprf.sql INSTE8_PRF 1
    amswebprf.sql INSTE8_PRF 1
    bisadmprf.sql INSTE8_PRF 1
    bisdblrp.sql INSTE8_PRF 1
    clnadmprf.sql INSTE8_PRF 1
    cncmprf.sql INSTE8_PRF 1
    cseadmprf.sql INSTE8_PRF 1
    csfadmprf.sql INSTE8_PRF 1
    csiadmprf.sql INSTE8_PRF 1
    eamadmprf.sql INSTE8_PRF 1
    fteadmprf.sql INSTE8_PRF 1
    icxwebprf.sql INSTE8_PRF 1
    oksfrmprf.sql INSTE8_PRF 1
    wshadmprf.sql INSTE8_PRF 1
    Directory: /d01/oracle/VIS/inst/apps/VIS_vintoracle/admin/install
    adadmprf.sh INSTE8_PRF 1
    afadmprf.sh INSTE8_PRF 1
    afcpctx.sh INSTE8_PRF 1
    afcpgsm.sh INSTE8_PRF 1
    ibywebprf.sh INSTE8_PRF 1
    igccmprf.sh INSTE8_PRF 1
    jtfictx.sh INSTE8_PRF 1
    okladmprf.sh INSTE8_PRF 1
    txkJavaMailerCfg.sh INSTE8_PRF 1
    txkWebServicescfg.sh INSTE8_PRF 1
    [APPLY PHASE]
    AutoConfig could not successfully execute the following scripts:
    Directory: /d01/oracle/VIS/apps/tech_st/10.1.3/perl/bin/perl -I /d01/oracle/VIS/apps/tech_st/10.1.3/perl/lib/5.8.3 -I /d01/oracle/VIS/apps/tech_st/10.1.3/perl/lib/site_perl/5.8.3 -I /d01/oracle/VIS/apps/apps_st/appl/au/12.0.0/perl -I /d01/oracle/VIS/apps/tech_st/10.1.3/Apache/Apache/mod_perl/lib/site_perl/5.8.3/i686-linux-thread-multi /d01/oracle/VIS/inst/apps/VIS_vintoracle/admin/install
    adadmat.pl INSTE8_APPLY 1

  • Autoconfig error on DB Tier after changing apps password

    Hi,
    I have changes APPS password in my new cloned instance. Autconfig on db tier encountered below error. we are on application 12.1.2, RDBMS 11.1.0.7, OS RHEL 5.4.
    ===================================================
    Executing script in InstantiateFile:
    /u01/oracle/fakieh/db/tech_st/11.1.0/appsutil/install/FTEST_testdb/txkcreateACL.sh
    script returned:
    You are running txkcreateACL.sh version 120.1
    The environment settings are as follows ...
    ORACLE_HOME : /u01/oracle/fakieh/db/tech_st/11.1.0
    ORACLE_SID : FTEST
    PATH : /u01/oracle/fakieh/db/tech_st/11.1.0/perl/bin:/u01/oracle/fakieh/db/tech_st/11.1.0/bin:/usr/bin:/usr/sbin:/u01/oracle/fakieh/db/tech_st/11.1.0/appsutil/jre/bin:/bin:/usr/bin/X11:/usr/local/bin:/u01/oracle/fakieh/db/tech_st/11.1.0/perl/bin:/u01/oracle/fakieh/db/tech_st/11.1.0/perl/bin:/u01/oracle/fakieh/db/tech_st/11.1.0/bin:/usr/bin:/usr/sbin:/u01/oracle/fakieh/db/tech_st/11.1.0/appsutil/jre/bin:/bin:/usr/bin/X11:/usr/local/bin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/oracle/bin:.:.
    Executable : /u01/oracle/fakieh/db/tech_st/11.1.0/bin/sqlplus
    Executing txkcreateACL.sql ...
    SQL*Plus: Release 11.1.0.7.0 - Production on Mon Dec 24 10:00:18 2012
    Copyright (c) 1982, 2008, Oracle. All rights reserved.
    Connected.
    ERROR:
    ORA-03114: not connected to ORACLE
    ERROR:
    ORA-03114: not connected to ORACLE
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    txkcreateACL.sh: exiting with status 1
    .end std out.
    .end err out.
    ===========================================================================
    Starting Restore Profile utility at Mon Dec 24 10:00:22 GMT+03:07 2012
    Using version 120.4
    ADX Database Utility
    getConnectionUsingAppsJDBCConnector() -->
    APPS_JDBC_URL='null'
    Trying to get connection using SID based connect descriptor
    getConnection() -->
    sDbHost : testdb
    sDbDomain : fakiehgroup.com
    sDbPort : 1521
    sDbSid : FTEST
    sDbUser : APPS
    Trying to connect using SID...
    getConnectionUsingSID() -->
    JDBC URL: jdbc:oracle:thin:@testdb.fakiehgroup.com:1521:FTEST
    Exception occurred: java.sql.SQLException: The Network Adapter could not establish the connection
    Trying to connect using SID as ServiceName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=testdb.fakiehgroup.com)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=FTEST)))
    Exception occurred: java.sql.SQLException: The Network Adapter could not establish the connection
    Trying to connect using SID as ServiceName.DomainName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=testdb.fakiehgroup.com)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=FTEST.fakiehgroup.com)))
    Exception occurred: java.sql.SQLException: The Network Adapter could not establish the connection
    Connection could not be obtained; returning null
    -------------------ADX Database Utility Finished---------------
    Verifying connection to the Database : Could not be stablished
    No Restore Profile file created.
    Restore Profile utility ran successfully
    ===========================================================================
    adcvmlog.xml renamed to /u01/oracle/fakieh/db/tech_st/11.1.0/appsutil/log/FTEST_testdb/12241000/adcvmlog.xml.12241000
    [AutoConfig Error Report]
    The following report lists errors AutoConfig encountered during each
    phase of its execution. Errors are grouped by directory and phase.
    The report format is:
    <filename> <phase> <return code where appropriate>
    [PROFILE PHASE]
    AutoConfig could not successfully execute the following scripts:
    Directory: /u01/oracle/fakieh/db/tech_st/11.1.0/appsutil/install/FTEST_testdb
    afdbprf.sh INSTE8_PRF 1
    [APPLY PHASE]
    AutoConfig could not successfully execute the following scripts:
    Directory: /u01/oracle/fakieh/db/tech_st/11.1.0/appsutil/install/FTEST_testdb
    adcrobj.sh INSTE8_APPLY 1
    txkcreateACL.sh INSTE8_APPLY 1
    AutoConfig is exiting with status 3
    AutoConfig execution completed on Mon Dec 24 10:00:26 2012
    Time taken for AutoConfig execution to complete : 0 mins 21 secs
    ==========================================
    Also when i am trying to select from DBA_NETWORK_ACLS its is giving error:
    SQL> select count(*) from DBA_NETWORK_ACLS;
    select count(*) from DBA_NETWORK_ACLS
    ERROR at line 1:
    ORA-03113: end-of-file on communication channel
    Process ID: 10481
    Session ID: 361 Serial number: 74
    Thank You.

    I have changes APPS password in my new cloned instance. Autconfig on db tier encountered below error. we are on application 12.1.2, RDBMS 11.1.0.7, OS RHEL 5.4.Did you use FNDCPASS to change the password? -- How to Change Applications Passwords using Applications Schema Password Change Utility (FNDCPASS or AFPASSWD) [ID 437260.1]
    If yes, please post the contents of the log file here.
    Connected.
    ERROR:
    ORA-03114: not connected to ORACLEIs your database up and running? Can you connect as sysdba or as system user remotely?
    Please make sure that both the database and the database listener are up and running before you run AutoConfig.
    Thanks,
    Hussein

  • Geeting autoconfig error while cloning

    I am getting this eeror while cloning.Please suggest me
    cinohdbd01sec:/prj2/apps/prj2appl/fnd/11.5.0/patch/115/bin $ tail -50 /prj2/output/log/txkSetSOHM_ac.log
    [AutoConfig Error Report]
    The following report lists errors AutoConfig encountered during each
    phase of its execution. Errors are grouped by directory and phase.
    The report format is:
    <filename> <phase> <return code where appropriate>
    [SETUP PHASE]
    AutoConfig could not successfully execute the following scripts:
    Directory: /prj2/apps/prj2comn/admin/install/prj2_cinohdbd01sec
    adgendbc.sh INSTE8_SETUP 1
    afcpnode.sh INSTE8_SETUP 1
    afgcsreg.sh INSTE8_SETUP 1
    [PROFILE PHASE]
    AutoConfig could not successfully execute the following scripts:
    Directory: /prj2/apps/prj2comn/admin/install/prj2_cinohdbd01sec
    adadmprf.sh INSTE8_PRF 1
    afadmprf.sh INSTE8_PRF 1
    afcpctx.sh INSTE8_PRF 1
    afcpgsm.sh INSTE8_PRF 1
    ahladmprf.sh INSTE8_PRF 1
    aradmprf.sh INSTE8_PRF 1
    bisadmprf.sh INSTE8_PRF 1
    bisdblrp.sh INSTE8_PRF 1
    clnadmprf.sh INSTE8_PRF 1
    cnadmprf.sh INSTE8_PRF 1
    csdadmprf.sh INSTE8_PRF 1
    cseadmprf.sh INSTE8_PRF 1
    csfagprf.sh INSTE8_PRF 1
    csiadmprf.sh INSTE8_PRF 1
    eamadmprf.sh INSTE8_PRF 1
    fteadmprf.sh INSTE8_PRF 1
    gladmprf.sh INSTE8_PRF 1
    jtfadmprf.sh INSTE8_PRF 1
    okeadmprf.sh INSTE8_PRF 1
    okladmprf.sh INSTE8_PRF 1
    ontadmprf.sh INSTE8_PRF 1
    paadmprf.sh INSTE8_PRF 1
    wipadmprf.sh INSTE8_PRF 1
    wshadmprf.sh INSTE8_PRF 1
    [APPLY PHASE]
    AutoConfig could not successfully execute the following scripts:
    Directory: /prj2/apps/prj2ora/iAS/Apache/perl/bin/perl -I /prj2/apps/prj2ora/iAS/Apache/perl/lib/5.00503 -I /prj2/apps/prj2ora/iAS/Apache/perl/lib/site_perl/5.005 -I /prj2/apps/prj2appl/au/11.5.0/perl /prj2/apps/prj2comn/admin/install/prj2_cinohdbd01sec
    adadmat.pl INSTE8_APPLY 256
    txkGenExtSecConf.pl INSTE8_APPLY 1
    AutoConfig is exiting with status 29
    Thanks,
    Dave

    And one more thing in log file showing this,Hsawwan plz suggest me
    SCRIPT RETURNED:
    Generate Tns Names
    Logfile: /prj2/apps/prj2appl/admin/prj2_cinohappdi01sec/log/06010758/NetServiceHandler.log
    Classpath : /usr/jdk1.5.0_12/jre/lib/rt.jar:/usr/jdk1.5.0_12/lib/dt.jar:/usr/jdk1.5.0_12/lib/tools.jar:/prj2/apps/prj2comn/java/appsborg2.zip:/prj2/apps/prj2comn/java
    Updating s_tnsmode to 'generateTNS'
    UpdateContext exited with status: 0
    Error generating tnsnames.ora from the database, temperory tnsnames.ora will be generated using templates
    Instantiating Tools tnsnames.ora
    Tools tnsnames.ora instantiated
    Web tnsnames.ora instantiated
    adgentns.pl exiting with status 25600
    ERRORCODE = 25600 ERRORCODE_END
    .end std out.
    .end err out.
    Result : FAILED
    ===========================================================================
    Ending Context Value Management System.
    ===========================================================================
    ===========================================================================
    No uploading of Context file and its templates to database. Database conection failed
    ===========================================================================
    Configuring templates from all of the product tops...

Maybe you are looking for