Error : ORA-00600: internal error code, arguments: [1350], [1], [23], [], [], [], [], [], [], [], [], []



Check the below tables:
 
select T.nls_territory from
fnd_territories_vl T, v$nls_valid_values V
where T.nls_territory = V.value
and V.parameter = 'TERRITORY';

Should return the data if below error 

Error : 1. ORA-00600: internal error code, arguments: [1350], [1], [23], [], [], [], [], [], [], [], [], []
2. Some time you will not be able to Save data on address form in HRMS modules. It will through some CTXSYS. and some trigger issue. 
 
Cause: The error is raised when the environment variable ORA_NLS10 is set incorrectly or pointing to a wrong location. Executing the query as APPS results to ora-00600

Solution:
Create nls/data/9idata directory
On the database server node, as the owner of the Oracle RDBMS file system and database instance, run the $ORACLE_HOME/nls/data/old/cr9idata.pl script to create the $ORACLE_HOME/nls/data/9idata directory.
1. cd $ORACLE_HOME/nls/data/
2. mv 9idata 9idata_old
3. perl $ORACLE_HOME/nls/data/old/cr9idata.pl
4. Check new 9idata was created!
After creating the directory, make sure that the ORA_NLS10 environment variable is set
to the full path of the 9idata directory whenever you enable the 11g Oracle home.
5. Restart database and check the query again! It should return the data.
Start the Oracle Production database using the below command
srvctl start database -d ORAPRD

Comments

Popular posts from this blog

Workflow Agent Listener Service WF_DEFERRED + Business Event not processing

Output Post Processor - EBS 12.2.4 Troubleshoot

How to Diagnose Workflow Notification Mailer Issue