NLS Error?

When trying to create and index, I get the following error:
ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
ORA-20000: interMedia Text error:
DRG-11422: linguistic initialization failed
DRG-00100: internal error, arguments : [52100],[drxs.c],[557],[gxtopen],[0]
ORA-06512: at "CTXSYS.DRUE", line 126
ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 54
ORA-06512: at line 1
I'm running 8.1.7 on Sun Solaris. NLS_LANG is set to AMERICAN_AMERICA.US7ASCII, ctx/lib is included in both PATH and LD_LIBRARY_PATH, all of the .flt files are set executable, and $HOME is set.
My table looks like:
ID NOT NULL NUMBER
NAME VARCHAR2(20)
FMT VARCHAR2(10)
CONTENT BLOB
And the query is:
create index im_test_index on intermedia_test_doc(content) indextype is ctxsys.context parameters('filter ctxsys.inso_filter format column fmt')
I had no problem indexing in 8.1.6, but I can't get it working since I upgraded to 8.1.7. Any ideas?
Thanks!
null

Possibly the linguistic knowledge base
files are missing from $ORACLE_HOME/ctx/data/enlx. What do you have on that directory?

Similar Messages

  • Issue :ORA-01890:NLS error detected

    Hi all,
    i am using oracle 10g, when i execute below query
    Select column_1,column_2,column_3 from view_name
    where trunc(c_date) >to_date('05-24-2011','MM/dd/YYYY'));
    I am getting this error in Toad, but no errors in SQL developer.
    Error: ORA-01890:NLS error detected
    Please help me how can i solve this issue.
    thanks in advance
    karmaya

    That's nice.
    This isn't the TOAD forum, it's the JDeveloper/ADF forum
    You don't see an obvious problem with
    to_date('05-24-2011','MM/dd/YYYY')As in those date formats don't match at all?

  • ORA-01890 NLS error detected

    Hello,
    I have an NLS error message while trying to get a series of sequences. My sequence seems to work fine, but when I try to get multiple sequences at on time, I have the following message:
    SQL> select next_location_id from dual;
    NEXT_LOCATION_ID
    200001608
    SQL> select next_location_id, next_location_id from dual;
    select next_location_id, next_location_id from dual
    ERROR at line 1:
    ORA-01890: NLS error detected
    ORA-06512: at "CODBA.NEXT_LOCATION_ID", line 4
    ORA-06512: at line 1I have looked into the ORACLE error message documentation, but it does not help me.
    ORA-01890 NLS error detected
    Cause: An NLS error was detected.
    Action: Look for additional error messages and take appropriate action. If there are no additional errors, call Oracle Customer Support.
    The procedure I used is very simple:
    create or replace function NEXT_LOCATION_ID return number as
    l_retour number(9);
    begin
    if to_char(sysdate, 'YYYY') = '2002' then
    select location_id_2002.nextval into l_retour from dual;
    elsif to_char(sysdate, 'YYYY') = '2003' then
    select location_id_2003.nextval into l_retour from dual;
    elsif to_char(sysdate, 'YYYY') = '2004' then
    select location_id_2004.nextval into l_retour from dual;
    elsif to_char(sysdate, 'YYYY') = '2005' then
    select location_id_2005.nextval into l_retour from dual;
    else
    l_retour := -1;
    end if;
    return (l_retour);
    end;
    We have the same problhme when we used directly the sequence.
    Someboby can help me??
    Regards
    Vincent ROBINE

    This type of error is difficult to debug. It might have to do with how the NLS_DATE_FORMAT was set up,
    since you are using sysdate in your function.
    Does it work if you do the following?
    select location_id_2002.nextval, location_id_2002.nextval from dual;

  • NLS Error on Second Fetch from Cursor

    Oracle 8i using PRO*C
    We have a UNIX (HP) environment (operational account) in which the NLS_LANG was not set for the shell. One of our applications opened a cursor for update and performed its first fetch. After processing it went back to fetch an additional buffer. At this point, the application failed with the following error: "SQLCODE: ORA-01890: NLS error detected". When we set the NLS_LANG enviroment variable this error disappeared.
    I need to know what the NLS_LANG enviroment variable is doing and why it is causing the second fetch to fail when it is not set so I can argue with the powers that be to have this paremeter always set for this accounts shell (i.e. globally). No-one really knows what this does here or why it would cause the cursor to fail, and so they are telling us to just set the variable in our own applications shell.
    I know the real answer to this is to set it up for the operational (global) shell but...
    Thanks in advance,
    Bill Rosmus

    it is difficult. The main problem is that you can't be sure that the function is called only once for each row.
    Why don't you simply run the cursor and the function separatly in pl/sql.
      CURSOR myCur IS SELECT myTable1.* FROM myTable1 ;
      SUBTYPE myRecType IS myCur%ROWTYPE ;
      funcResult varchar2(100); /* use the correct return datatype from your function here */
      FOR myRec in myCur LOOP
          BEGIN
             funcResult := myPackage.myFunc(myRec.column1);
          EXCEPTION
             WHEN myPackage.myFunc_Exception THEN
               <... do anything when fetched but function myFunc raised this exception ...>
          END ;
          <...do anything with row currently fetched>
       END LOOP;You even have more control where to handle the exception. Also there is one pl/sql context switch less. Since the function itself is pl/sql it could even be faster to run it in pl/sql then to call it from sql (inside a select).

  • NLS error in building a new repository

    Hi every body
    I reported my problem in building a repository in OWB 10g, but no one replied to me! I tried more ane half of my problem was solved. I instaled the oracle data base 10g release 2 and now I can connect with Enterprise Manager to my data base. But I still have problem in building a new repository. When I complete the wizard of creating a new repository, the following error is shown:
    cannot access NLS data file or invalid environment specified.
    I checked my ORACLE_HOME. At first, this variable was empety, then i changed it to the oracle home and also to DWB_HOME, but the error was not removed.
    any direction is welcome,
    Thanks.

    But this is not happening for other pages..only this page is creating problem...
    This region I am creating for the page whose navigation is as shown below:
    1) Login as PO Super User
    2) Go to Requisition Work Bench -> Requisitions -> Summary -> Lines Tab.
    In this page in the search region I need to add one Criteria Item named Requisition Description
    Now in our development instance,creating a Criteria Itme for this region through personalization is not enabled. But the same thing is enabled in the Test Environment. However if I go and just click on Create Item -> Criteria row and provide the id name and click on Apply the page is erroring out. Would anyone please try replication the same in their available instance and let me know whether they are facing similar issues.

  • NLS Error when use ICX

    We use ICX to invoke a jweb catridge,
    and parameters was tranfered with hashtable.
    when get the Http Request,we found the character is error. we know it must the NLS
    setting error,but we don't know how to
    correct it.
    please mail to me [email protected]
    if possible.
    B.RGDS

    What is the error you are getting? Can you please give more details?
    Thanks,
    -Kishore

  • (Help) Eclipse 3.2.2 + Oracle Data tools plugin = strange NLS error

    Has anyone seen this one before...
    This is all setup as Per the eclipse/dpt getting started guide.
    CentOS 5.0
    Eclipse SDK 3.2.2
    Driver (default per DPT): Oracle Database 10g Driver Default
    Database: orcl
    URL: jdbc:oracle:thin:@orcl1:1521/orcl
    osgi.nl=en_US
    user.language=en
    Did I miss something with the NLS params, or is there a jdbc driver for 11g or something?
    Help me out here.
    Thx
    -J
    ___SETUP AND TESTING___
    jason@kagome:~$ env | grep -ie 'ORACLE\|NLS\|TNS' | grep -v PATH ; tnsping orcl ; sqlplus -L scott/tiger@orcl
    TNS_ADMIN=/home/oracle/app/oracle/product/11.1.0/client_1/network/admin/
    ORACLE_HOME=/home/oracle/app/oracle/product/11.1.0/client_1/
    TNS Ping Utility for Linux: Version 11.1.0.6.0 - Production on 04-DEC-2007 08:25:04
    Copyright (c) 1997, 2007, Oracle. All rights reserved.
    Used parameter files:
    /home/oracle/app/oracle/product/11.1.0/client_1/network/admin/sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = orcl1)(PORT = 1521))) (CONNECT_DATA = (SERVICE_NAME = orcl) (SID = orcl)))
    OK (10 msec)
    SQL*Plus: Release 11.1.0.6.0 - Production on Tue Dec 4 08:25:04 2007
    Copyright (c) 1982, 2007, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> exit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    ___PING TEST OUTPUT FROM DATATOOLS___
    java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1
    ORA-12705: Cannot access NLS data files or invalid environment specified
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:331)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:283)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:278)
    at oracle.jdbc.driver.T4CTTIoauthenticate.receiveOauth(T4CTTIoauthenticate.java:785)
    at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:362)
    at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:414)
    at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:165)
    at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:35)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:801)
    at oracle.dbtools.dtp.connectivity.db.OracleJDBCConnection.createConn(OracleJDBCConnection.java:258)
    at oracle.dbtools.dtp.connectivity.db.OracleJDBCConnection.createConnection(OracleJDBCConnection.java:191)
    at org.eclipse.datatools.connectivity.DriverConnectionBase.internalCreateConnection(DriverConnectionBase.java:104)
    at org.eclipse.datatools.connectivity.DriverConnectionBase.open(DriverConnectionBase.java:53)
    at oracle.dbtools.dtp.connectivity.db.OracleJDBCConnectionFactory.createConnection(OracleJDBCConnectionFactory.java:42)
    at org.eclipse.datatools.connectivity.internal.ConnectionFactoryProvider.createConnection(ConnectionFactoryProvider.java:77)
    at org.eclipse.datatools.connectivity.internal.ConnectionProfile.createConnection(ConnectionProfile.java:354)
    at org.eclipse.datatools.connectivity.ui.PingJob.run(PingJob.java:57)
    at org.eclipse.core.internal.jobs.Worker.run(org.eclipse.core.jobs_3.2.0.v20060603.jar.so)

    Has anyone seen this one before...
    This is all setup as Per the eclipse/dpt getting started guide.
    CentOS 5.0
    Eclipse SDK 3.2.2
    Driver (default per DPT): Oracle Database 10g Driver Default
    Database: orcl
    URL: jdbc:oracle:thin:@orcl1:1521/orcl
    osgi.nl=en_US
    user.language=en
    Did I miss something with the NLS params, or is there a jdbc driver for 11g or something?
    Help me out here.
    Thx
    -J
    ___SETUP AND TESTING___
    jason@kagome:~$ env | grep -ie 'ORACLE\|NLS\|TNS' | grep -v PATH ; tnsping orcl ; sqlplus -L scott/tiger@orcl
    TNS_ADMIN=/home/oracle/app/oracle/product/11.1.0/client_1/network/admin/
    ORACLE_HOME=/home/oracle/app/oracle/product/11.1.0/client_1/
    TNS Ping Utility for Linux: Version 11.1.0.6.0 - Production on 04-DEC-2007 08:25:04
    Copyright (c) 1997, 2007, Oracle. All rights reserved.
    Used parameter files:
    /home/oracle/app/oracle/product/11.1.0/client_1/network/admin/sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = orcl1)(PORT = 1521))) (CONNECT_DATA = (SERVICE_NAME = orcl) (SID = orcl)))
    OK (10 msec)
    SQL*Plus: Release 11.1.0.6.0 - Production on Tue Dec 4 08:25:04 2007
    Copyright (c) 1982, 2007, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> exit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    ___PING TEST OUTPUT FROM DATATOOLS___
    java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1
    ORA-12705: Cannot access NLS data files or invalid environment specified
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:331)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:283)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:278)
    at oracle.jdbc.driver.T4CTTIoauthenticate.receiveOauth(T4CTTIoauthenticate.java:785)
    at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:362)
    at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:414)
    at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:165)
    at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:35)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:801)
    at oracle.dbtools.dtp.connectivity.db.OracleJDBCConnection.createConn(OracleJDBCConnection.java:258)
    at oracle.dbtools.dtp.connectivity.db.OracleJDBCConnection.createConnection(OracleJDBCConnection.java:191)
    at org.eclipse.datatools.connectivity.DriverConnectionBase.internalCreateConnection(DriverConnectionBase.java:104)
    at org.eclipse.datatools.connectivity.DriverConnectionBase.open(DriverConnectionBase.java:53)
    at oracle.dbtools.dtp.connectivity.db.OracleJDBCConnectionFactory.createConnection(OracleJDBCConnectionFactory.java:42)
    at org.eclipse.datatools.connectivity.internal.ConnectionFactoryProvider.createConnection(ConnectionFactoryProvider.java:77)
    at org.eclipse.datatools.connectivity.internal.ConnectionProfile.createConnection(ConnectionProfile.java:354)
    at org.eclipse.datatools.connectivity.ui.PingJob.run(PingJob.java:57)
    at org.eclipse.core.internal.jobs.Worker.run(org.eclipse.core.jobs_3.2.0.v20060603.jar.so)

  • Patch 6678700 for NLS error -no directores for FRC and ESA

    I have done the following regarding upgrade from 11.5.102 to r12.1.1;
    1)-installation of r12 complete.
    2)-US upgrade patch for patch 6678700 completed.
    3)-started 6678700 for NLS and got the following errors, when investigated from log, it was revealed the there is no directory existed for FRC and US. We were using FRC and ESA with 11i for the last may years.
    4)-In all the product top, there is just US directory, not FRC or ESA.
    I don't know where is the problem, which steps I missed. Please help.
    Please see the error below:
    FAILED: file poaslsta.ldt on worker 1.
    FAILED: file poconfun.ldt on worker 2.
    ATTENTION: Please fix the above failed worker(s) so the manager can continue.
    The worker log file is showing the following error:
    Uploading from the data file /u01/oracle/apps/apps_st/appl/po/12.0.0/patch/115/import/FRC/poconfun.ldt
    The file /u01/oracle/apps/apps_st/appl/po/12.0.0/patch/115/import/FRC/poconfun.ldt could not be opened for reading
    Concurrent request completed
    Current system time is Thu Oct 11 12:57:38 2012
    Current system time is Thu Oct 11 12:57:39 2012
    Uploading from the data file /u01/oracle/apps/apps_st/appl/po/12.0.0/patch/115/import/FRC/poconfun.ldt
    The file /u01/oracle/apps/apps_st/appl/po/12.0.0/patch/115/import/FRC/poconfun.ldt could not be opened for reading

    959660 wrote:
    I have done the following regarding upgrade from 11.5.102 to r12.1.1;
    1)-installation of r12 complete.
    2)-US upgrade patch for patch 6678700 completed.
    3)-started 6678700 for NLS and got the following errors, when investigated from log, it was revealed the there is no directory existed for FRC and US. We were using FRC and ESA with 11i for the last may years.
    4)-In all the product top, there is just US directory, not FRC or ESA.
    I don't know where is the problem, which steps I missed. Please help.
    Please see the error below:
    FAILED: file poaslsta.ldt on worker 1.
    FAILED: file poconfun.ldt on worker 2.
    ATTENTION: Please fix the above failed worker(s) so the manager can continue.
    The worker log file is showing the following error:
    Uploading from the data file /u01/oracle/apps/apps_st/appl/po/12.0.0/patch/115/import/FRC/poconfun.ldt
    The file /u01/oracle/apps/apps_st/appl/po/12.0.0/patch/115/import/FRC/poconfun.ldt could not be opened for reading
    Concurrent request completed
    Current system time is Thu Oct 11 12:57:38 2012
    Current system time is Thu Oct 11 12:57:39 2012
    Uploading from the data file /u01/oracle/apps/apps_st/appl/po/12.0.0/patch/115/import/FRC/poconfun.ldt
    The file /u01/oracle/apps/apps_st/appl/po/12.0.0/patch/115/import/FRC/poconfun.ldt could not be opened for readingHaving missing FRC and ESA directories is an expected behavior as the NLS patches you are applying will create those NLS directories for you (FRC and ESA).
    You need to download the NLS CDs from e-Delivery website and use them to apply the patch. Please use adpatch to apply the patches with no options (unlike the US patch driver which is applied using "adpatch options=nocopyportion,nogenerateportion").
    How to resolve NLS translation issues in an Ebusiness Suite 11i and R12 environment [ID 394112.1]
    Oracle Applications NLS Release Notes, Release 12.1 [ID 788053.1]
    Requesting Translation Synchronization Patches [ID 252422.1]
    Please note that you could merge those 2 NLS Patches and apply them as one merged patch.
    Thanks,
    Hussein

  • OCI NLS errors in Perl script

    I'm using Perl to access an Oracle DB, using Activestate Perl and pre-built DBI and DBD::Oracle modules.
    I'm running the scripts on a Windows XP laptop, connecting to an Oracle DB running on Solaris 10, Oracle versions are 10.2 in both cases.
    I can connect to the database successfully with sqlplus, run from the command line, using the 'easy connect' method.
    The script fails to connect, generating this error:
    DBI connect('host=host.domain.com;sid=mydb;port=1522','myusername',...)
    failed: ERROR OCINlsEnvironmentVariableGet(OCI_NLS_CHARSET_ID)
    Check ORACLE_HOME and NLS settings etc. at C:\Perl\bin/esrch line 249
    My ORACLE_HOME points to the Oracle installation directory which was used to build the module, so I believe it's OK.
    Line 249 in the script is the dbi->connect(...) method.
    I have no idea which NLS variable would need to be set or changed, if that's what's needed.
    I also know that OCI_NLS_CHARSET_ID is a #define, found in oci.h. This file is included by the header file for my code.
    Any suggestions on how to get this working are much appreciated.
    Bob

    Hmm, there seems to be some confusion on my part regarding my login. I just used one which I swear I tried previously without success.
    In any case, I'm the original poster. Sorry for any confusion this causes.
    As for the questions asked.
    1. Oracle home access: yes, not only did the same user do the install of Oracle, I've verified that the user can access all files.
    2. I've run with NLS_LANG set and unset. The value used is the one stored in the registry:
    AMERICAN_AMERICA.WE8MSWIN1252
    3. I did a 'print "$ENV{NLS_LANG}\n"' from the perl script and got the expected output, as set above.
    4. As I understand it, the PerlSetVar function is a mod_perl feature, not part of the base language. I'm using batch files to run perl on my perl scripts, started from a command prompt.
    Thanks,
    Bob

  • Faces-config.xml !NLS Error

    Message
    BME-99003: An error occurred, so processing could not continue.
    Cause
    The application has tried to de-reference an invalid pointer. This exception should have been dealt with programmatically. The current activity may fail and the system may have been left in an unstable state. The following is a stack trace.
    java.lang.NullPointerException
         at oracle.bm.diagrammer.registry.RBaseTopLevel$1SelectionAction.<init>(RBaseTopLevel.java:68)
         at oracle.bm.diagrammer.registry.RBaseTopLevel.addNavigatePopupItems(RBaseTopLevel.java:152)
         at oracle.bm.diagrammer.registry.RBaseTopLevel.addPopupItems(RBaseTopLevel.java:44)
         at oracle.bm.diagrammer.registry.RBaseEdge.addPopupItems(RBaseEdge.java:404)
         at oracle.adfdt.controller.jsf.diagram.registry.RJSFTransition.addPopupItems(RJSFTransition.java:570)
         at oracle.bm.diagrammer.ui.DiagramContextMenuAdapter.menuWillShow(DiagramContextMenuAdapter.java:139)
         at oracle.ide.controller.ContextMenu.callMenuWillShow(ContextMenu.java:418)
         at oracle.ide.controller.ContextMenu.show(ContextMenu.java:224)
         at oracle.bm.diagrammer.BaseDiagramView.onPopupTrigger(BaseDiagramView.java:6713)
         at oracle.adfdt.controller.diagram.PageFlowDiagramView.onPopupTrigger(PageFlowDiagramView.java:170)
         at oracle.bm.diagrammer.track.SelectionTracker.processEvent(SelectionTracker.java:128)
         at oracle.bm.diagrammer.track.TrackerStack.processEvent(TrackerStack.java:389)
         at oracle.bm.diagrammer.BaseDiagramView$53.processEvent(BaseDiagramView.java:719)
         at oracle.bm.diagrammer.PageView$PageViewPanel.fireEvent(PageView.java:2904)
         at oracle.bm.diagrammer.PageView$PageViewPanel.processEvent(PageView.java:3097)
         at java.awt.Component.dispatchEventImpl(Component.java:3955)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1774)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Action
    If further errors occur, you should restart the application.
    Also, report the problem on the JDeveloper forum on otn.oracle.com, or contact Oracle support, giving the information from this message.
    faces-comn

    Don't you think it might be helpful if you were to explain what you were doing when this error occurred?

  • Repository Install NLS error?

    Repository Install fails with "CDR-2144: This process has been aborted". Great.
    There is a log at D:\OraNT\RepAdm61\logs\ckPrereq.log that states "IMP-00016: required character ser conversion ( type 31 to 871 ) not supported."
    31 & 871!?!?!
    Various Oracle registry entries for NLS_LANG=AMERICAN_AMERICA.WE8IS08859P1 exist.
    The environmental variable NLS_LANG=AMERICAN_AMERICA.UTF8 requested for the OID service start seems to make no difference whether it exists or not.
    Any suggestions?

    Check out Note 353815.1
    Title: Package Body ''Scm_admin.Jr_reg_io'' Has Errors After
    Database Server Upgrade
    I have found that of the problems like this are due to the permissions not being granted by SYS to the repos owner.
    As SYS
    create user owner identified by owner default tablespace users
    temporary tablespace temp;
    Run this file as SYS
    @ D:\Designer_Home\Des1012\repadm61\UTL\CKROROLE.SQL
    GRANT EXECUTE ON DBMS_LOCK TO owner;
    GRANT EXECUTE ON DBMS_PIPE TO owner;
    GRANT CREATE TABLE TO owner;
    GRANT CREATE VIEW TO owner;
    GRANT CREATE PROCEDURE TO owner;
    GRANT CREATE SYNONYM TO owner;
    GRANT CREATE SEQUENCE TO owner;
    GRANT SELECT ON sys.v_$nls_parameters TO owner WITH GRANT OPTION;
    GRANT SELECT on sys.V_$PARAMETER TO owner;
    GRANT SELECT ON dba_rollback_segs TO owner;
    GRANT SELECT ON dba_segments TO owner;
    GRANT CREATE ANY SYNONYM TO owner;
    GRANT DROP ANY SYNONYM TO owner;
    GRANT CREATE PUBLIC SYNONYM TO owner;
    GRANT DROP PUBLIC SYNONYM TO owner;
    GRANT ck_oracle_repos_owner to owner;
    GRANT CONNECT, RESOURCE TO owner;
    GRANT dba TO owner;
    (If you want Row Level Security (RLS) on)
    GRANT execute on dbms_rls to owner;

  • DirectAccess NLS error

    WS2012 R2 Std. with Essentials Experience installed. Essentials is configured to provide Remote Web App. We are now adding DirectAccess.
    I can't post URLs with my "unverified" account, so these URLs are all intentionally incorrect, but I followed this article--
    http //technet.microsoft.com/en-us/library/jj204618.aspx
    --which said to follow this article--
    http //technet.microsoft.com/library/jj574220.aspx
    --because the Essentials server is not a DC. I did so, using the "Basic" instructions, as it is appropriate for this system. After the setup wizard is finished, in the DA console, everything has a green checkmark except one item, as follows:
    Network Location Server: Not working properly.
    There is no response from the network location server URL. DirectAccess connectivity might not work as expected, and DirectAccess clients located inside the corporate network might not be able to reach internal resources.
    When I browse the NLS URL, I am redirected to the Remote Web App logon page, so best guess is that the redirection is where the problem is. It happens whether I enter http //directaccess-webprobehost.domain.local or http webprobehost.domain.local:62000.
    (Not sure which is correct.) (If either...)
    In IIS, HTTP Redirect is not enabled for Default Web Site, so I don't know how IIS is doing this.
    How do I fix it?

    Hi JRVCr,
    On current situation, please refer to the following article and check if can help you.
    Windows
    Server 2012 DirectAccess Network Location Server Not Working Properly
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft
    does not guarantee the accuracy of this information.
    If any update, please feel free to let me know.
    Hope this helps.
    Best regards,
    Justin Gu

  • BME-99003:  An error occurred, so processing could not continue.

    Got the error message below when working with my faces-config.xml file.
    I currently have several JSF navigation cases labeled as "!NLS Error" (No Quotes)
    Steps to create the error...
    1. Create an ADF Faces project with 10-15 pages and navigation rules between each page.
    2. Outside of JDeveloper, redo your folder structure on how you store your pages.
    3. Inside Jdeveloper, update the source of faces-config.xml to point to the new location of the files.
    4. Click on the diagram tab.
    On my screen, the diagram for both the old and new files was appearing. When trying to delete the diagram for the old files, I got the error message. I cannot save the file faces-config.oxd_faces.
    Message
    BME-99003: An error occurred, so processing could not continue.
    Cause
    The application has tried to de-reference an invalid pointer. This exception should have been dealt with programmatically. The current activity may fail and the system may have been left in an unstable state. The following is a stack trace.
    java.lang.NullPointerException
         at oracle.bm.diagrammer.shape.BaseDiagramEdge.startMove(Unknown Source)
         at oracle.bm.diagrammer.track.MoveTracker.<init>(Unknown Source)
         at oracle.bm.diagrammer.track.SelectionTracker.mousePressed(Unknown Source)
         at oracle.bm.diagrammer.track.ModularTracker.processEvent(Unknown Source)
         at oracle.bm.diagrammer.track.SelectionTracker.processEvent(Unknown Source)
         at oracle.bm.diagrammer.track.TrackerStack.processEvent(Unknown Source)
         at oracle.bm.diagrammer.BaseDiagramView$53.processEvent(Unknown Source)
         at oracle.bm.diagrammer.PageView$PageViewPanel.fireEvent(Unknown Source)
         at oracle.bm.diagrammer.PageView$PageViewPanel.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Component.java:3955)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3889)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1774)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Action
    If further errors occur, you should restart the application.
    Also, report the problem on the JDeveloper forum on otn.oracle.com, or contact Oracle support, giving the information from this message.
    ________________________________________________________________________________

    To fix this issue, I performed the following...
    1. Copy the xml from the faces-config source tab.
    2. Delete the faces-config.xml file within JDeveloper.
    3. Create a new faces-config.xml file.
    4. Paste xml from step one into the faces-config source tab.
    Really not that bad of an issue, I only posted because the error message directed me to.

  • Random JBO-27122 and ORA-01890 errors

    hi All,
    I am randomly getting this error. In Toad this query works always fine, but in web application raises this error from time to time (seldom). What can be a reason.
    Thanks,
    SNikiforov
    JBO-27122: SQL error during statement preparation. Statement: SELECT * FROM (SELECT WfsSignIn.SSN, BhsSatLoc.LOC_DESC SAT_LOC, WFS.PK_WFS_SIGNOUT.sf_pft_check(WfsSignIn.SSN, WfsSignIn.EXAM_DATE ) PftY, WFS.PK_WFS_SIGNOUT.sf_h_check(WfsSignIn.SSN, WfsSignIn.EXAM_DATE ) HearingY, WFS.PK_WFS_SIGNOUT.sf_vis_check(WfsSignIn.SSN, WfsSignIn.EXAM_DATE ) VisionY, WFS.PK_WFS_SIGNOUT.sf_v_check(WfsSignIn.SSN, WfsSignIn.EXAM_DATE ) VitalY, WFS.PK_WFS_SIGNOUT.sf_f_check(WfsSignIn.SSN, WfsSignIn.EXAM_DATE ) FitnesslY, WFS.PK_WFS_SIGNOUT.sf_MM_check(WfsSignIn.SSN, WfsSignIn.EXAM_DATE ) MentorY, WFS.PK_WFS_SIGNOUT.sf_Consent_check(WfsSignIn.SSN, WfsSignIn.EXAM_DATE) Consent, WFS.PK_WFS_SIGNOUT.sf_D_check(WfsSignIn.SSN, WfsSignIn.EXAM_DATE ) DISY, WFS.PK_WFS_SIGNOUT.sf_B_check(WfsSignIn.SSN, WfsSignIn.EXAM_DATE ) BloodY, WFS.PK_WFS_SIGNOUT.sf_SA_check(WfsSignIn.SSN, WfsSignIn.EXAM_DATE ) SAMHY, FDNY_APP_DATE -TO_DATE('25-JUL-02', 'DD-MON-RR') wtc, trunc(:P_DATE) today, :P_DOC doc, substr(WfsSignIn.SSN,6,4) SSN4, WfsSignIn.EXAM_DATE, WfsSignIn.SIGN_IN_ID, WfsSignIn.USERID, WfsSignIn.FNAME, WfsSignIn.LNAME, ComFdemp.GENDER, WfsSignIn.RANK_CODE, WfsSignIn.UNIT_CODE, ComFdemp.WORK_LOCATION, WfsSignIn.WALK_IN, ComFdemp.BIRTH_DATE, PK_WFS_SIGNOUT.sf_sign_out(WfsSignIn.SSN) Can_Sign_Out, trunc(nvl(sf_empall_age(WfsSignIn.ssn),0)) Age, case when WfsSignIn.PHYSICIAN_CHECK ='Y' then 'Yes' else 'No' end PHYSICIAN_CHECK, sf_Emp_Cand_Name (WfsSignIn.ssn) Fullname, sf_get_title_wfs (WfsSignIn.ssn) title, WfsSignIn.SIGN_OUT, WfsSignIn.ANNUAL_YR ANNUALYR, 'Y' SIGNED_IN, pk_wfs.SF_GET_STATUS(WfsSignIn.ssn) Duty, rownum FROM HRIS.WFS_SIGN_IN WfsSignIn,EMP_CAND_V ComFdemp,bhs_sat_loc BhsSatLoc WHERE (WfsSignIn.SAT_LOC=:P_SAT_LOC or :P_SAT_LOC ='AA') and WfsSignIn.SAT_LOC = BhsSatLoc.SAT_LOC_CODE(+) and ComFdemp.Ssn=WfsSignIn.Ssn and not (nvl((WfsSignIn.SIGN_OUT),'N') in (decode(:P_Table,'Signed In','Y','N'),decode(:P_Table,'Signed In','A','N'))) and ( ( ((:P_FIELD is null or :P_FIELD='SSN') and WfsSignIn.SSN like '%'||:P_PARAM)and (ComFdemp.LNAME) like '%'||UPPER(:P_FNAME) ||'%') or (:P_FIELD='Name' and (ComFdemp.FNAME) like '%'||UPPER(:P_FNAME) ||'%' ) ) and WfsSignIn.EXAM_DATE=trunc(TO_DATE(:P_DATE)) and (:P_Table='Signed In' or :P_Table='Signed Out') union select ComFdemp.SSN, '00' SAT_LOC, 'No' PftY, 'No' HearingY, 'No' VisionY, 'No' VitalY, 'No' FitnessY, 'No' MentorY, 'No' Consent, 'No' DISY, 'No' BloodY, 'No' SAMHY, FDNY_APP_DATE -TO_DATE('25-JUL-02', 'DD-MON-RR') wtc, trunc(:P_DATE) today, :P_DOC doc, substr(ComFdemp.SSN,6,4) SSN4, trunc(TO_DATE(:P_DATE)) EXAM_DATE, 0 SIGN_IN_ID, to_char(null) USERID, ComFdemp.FNAME, ComFdemp.LNAME, ComFdemp.GENDER, ComFdemp.RANK_CODE, ComFdemp.UNIT_CODE, ComFdemp.WORK_LOCATION, 'No' WALK_IN, ComFdemp.BIRTH_DATE, null Can_Sign_Out, ROUND(nvl(sf_empall_age(ComFdemp.ssn),0)) Age, 'No' PHYSICIAN_CHECK, sf_Emp_Cand_Name (ComFdemp.ssn) Fullname, sf_get_title_wfs (ComFdemp.ssn) title, 'Z' SIGN_OUT, to_number(substr(to_char(TO_DATE(:P_DATE),'MM/DD/YYYY'),7,4)) ANNUALYR, decode((select count(*) from HRIS.WFS_SIGN_IN where ssn=ComFdemp.ssn and EXAM_DATE>=trunc(TO_DATE(:P_DATE))),0,'N','Y') SIGNED_IN, pk_wfs.SF_GET_STATUS(ComFdemp.ssn) Duty, rownum from EMP_CAND_V ComFdemp WHERE (((ComFdemp.SSN like '%'||:P_PARAM and (ComFdemp.LNAME) like '%'||UPPER(:P_FNAME) ||'%') ) ) and (:P_Table<>'Signed In' and :P_Table<>'Signed Out')) QRSLT ORDER BY SAT_LOC DESC
    ORA-01890: NLS error detected
    THIS IS THE VO
    SELECT WfsSignIn.SSN,
    BhsSatLoc.LOC_DESC SAT_LOC,
    WFS.PK_WFS_SIGNOUT.sf_pft_check(WfsSignIn.SSN, WfsSignIn.EXAM_DATE ) PftY,
    WFS.PK_WFS_SIGNOUT.sf_h_check(WfsSignIn.SSN, WfsSignIn.EXAM_DATE ) HearingY,
    WFS.PK_WFS_SIGNOUT.sf_vis_check(WfsSignIn.SSN, WfsSignIn.EXAM_DATE ) VisionY,
    WFS.PK_WFS_SIGNOUT.sf_v_check(WfsSignIn.SSN, WfsSignIn.EXAM_DATE ) VitalY,
    WFS.PK_WFS_SIGNOUT.sf_f_check(WfsSignIn.SSN, WfsSignIn.EXAM_DATE ) FitnesslY,
    WFS.PK_WFS_SIGNOUT.sf_MM_check(WfsSignIn.SSN, WfsSignIn.EXAM_DATE ) MentorY,
    WFS.PK_WFS_SIGNOUT.sf_Consent_check(WfsSignIn.SSN, WfsSignIn.EXAM_DATE) Consent,
    WFS.PK_WFS_SIGNOUT.sf_D_check(WfsSignIn.SSN, WfsSignIn.EXAM_DATE ) DISY,
    WFS.PK_WFS_SIGNOUT.sf_B_check(WfsSignIn.SSN, WfsSignIn.EXAM_DATE ) BloodY,
    WFS.PK_WFS_SIGNOUT.sf_SA_check(WfsSignIn.SSN, WfsSignIn.EXAM_DATE ) SAMHY,
    FDNY_APP_DATE -TO_DATE('25-JUL-02', 'DD-MON-RR') wtc,
    trunc(:P_DATE) today,
    :P_DOC doc,
    substr(WfsSignIn.SSN,6,4) SSN4,
    WfsSignIn.EXAM_DATE,
    WfsSignIn.SIGN_IN_ID,
         WfsSignIn.USERID,
    WfsSignIn.FNAME,
    WfsSignIn.LNAME,
         ComFdemp.GENDER,
    WfsSignIn.RANK_CODE,
    WfsSignIn.UNIT_CODE,
    ComFdemp.WORK_LOCATION,
    WfsSignIn.WALK_IN,
         ComFdemp.BIRTH_DATE,
         PK_WFS_SIGNOUT.sf_sign_out(WfsSignIn.SSN) Can_Sign_Out,
    trunc(nvl(sf_empall_age(WfsSignIn.ssn),0)) Age,
    case when WfsSignIn.PHYSICIAN_CHECK ='Y' then 'Yes'
         else 'No' end PHYSICIAN_CHECK,
    sf_Emp_Cand_Name (WfsSignIn.ssn) Fullname,
    sf_get_title_wfs (WfsSignIn.ssn) title,
    WfsSignIn.SIGN_OUT,
         WfsSignIn.ANNUAL_YR ANNUALYR,
         'Y' SIGNED_IN,
         pk_wfs.SF_GET_STATUS(WfsSignIn.ssn) Duty,
    rownum
    FROM HRIS.WFS_SIGN_IN WfsSignIn,EMP_CAND_V ComFdemp,bhs_sat_loc BhsSatLoc
    WHERE (WfsSignIn.SAT_LOC=:P_SAT_LOC or :P_SAT_LOC ='AA') and WfsSignIn.SAT_LOC = BhsSatLoc.SAT_LOC_CODE(+) and ComFdemp.Ssn=WfsSignIn.Ssn and not (nvl((WfsSignIn.SIGN_OUT),'N') in (decode(:P_Table,'Signed In','Y','N'),decode(:P_Table,'Signed In','A','N'))) and
    ((:P_FIELD is null or :P_FIELD='SSN') and WfsSignIn.SSN like '%'||:P_PARAM)and (ComFdemp.LNAME) like '%'||UPPER(:P_FNAME) ||'%') or
    (:P_FIELD='Name' and (ComFdemp.FNAME) like '%'||UPPER(:P_FNAME) ||'%' )
    and
    WfsSignIn.EXAM_DATE=trunc(TO_DATE(:P_DATE)) and (:P_Table='Signed In' or :P_Table='Signed Out')
    union
    select
    ComFdemp.SSN,
    '00' SAT_LOC,
    'No' PftY,
    'No' HearingY,
    'No' VisionY,
    'No' VitalY,
    'No' FitnessY,
         'No' MentorY,
         'No' Consent,
         'No' DISY,
         'No' BloodY,
         'No' SAMHY,
    FDNY_APP_DATE -TO_DATE('25-JUL-02', 'DD-MON-RR') wtc,
    trunc(:P_DATE) today,
    :P_DOC doc,
    substr(ComFdemp.SSN,6,4) SSN4,
    trunc(TO_DATE(:P_DATE)) EXAM_DATE,
    0 SIGN_IN_ID,
         to_char(null) USERID,
    ComFdemp.FNAME,
    ComFdemp.LNAME,
         ComFdemp.GENDER,
    ComFdemp.RANK_CODE,
    ComFdemp.UNIT_CODE,
    ComFdemp.WORK_LOCATION,
    'No' WALK_IN,
         ComFdemp.BIRTH_DATE,
         null Can_Sign_Out,
    ROUND(nvl(sf_empall_age(ComFdemp.ssn),0)) Age,
    'No' PHYSICIAN_CHECK,
    sf_Emp_Cand_Name (ComFdemp.ssn) Fullname,
    sf_get_title_wfs (ComFdemp.ssn) title,
    'Z' SIGN_OUT,
         to_number(substr(to_char(TO_DATE(:P_DATE),'MM/DD/YYYY'),7,4)) ANNUALYR,
         decode((select count(*) from HRIS.WFS_SIGN_IN where ssn=ComFdemp.ssn and EXAM_DATE>=trunc(TO_DATE(:P_DATE))),0,'N','Y') SIGNED_IN,
         pk_wfs.SF_GET_STATUS(ComFdemp.ssn) Duty,
    rownum
    from EMP_CAND_V ComFdemp
    WHERE (((ComFdemp.SSN like '%'||:P_PARAM and (ComFdemp.LNAME) like '%'||UPPER(:P_FNAME) ||'%') )
    ) and
    (:P_Table<>'Signed In' and :P_Table<>'Signed Out')

    Hi,
    how likely is it that your database is version 9.0 or older ? If so, the bug is fixed in 9.0.1. If my guess didn't hit bulls eye then you may need to provide more information about your environment. Also, a reproducible pattern would be good.
    Frank

  • While Installation watson Error

    hi,
    While installing oracle 8(server) and developer2.0 on same machine (WINDOWS NT SERVER)we had an error of dr.watson.
    we tried many methods of installing but we have encountered errors.also there was an error in the TNS connections and also of NLS error,this was when we installed dev2k first and oracle 8.0 after that. Doing vice-versa installation it skipped Enterprise Manager and SQL 8.0 and replaced it with SQL 3.3
    Thanks for all
    Email : [email protected]
    [email protected]
    [email protected]

    look at sdk forum, there is a lot of explanation for this.
    From visual studio you are using diferent connection string than in addon and for addon you must create separately instal file (not only compiled as exe from vs)
    In sdk samples is example for addon creating, look at that.
    Petr

Maybe you are looking for

  • How to use a single iTunes library when using multiple Windows Accounts

    Has anyone had success using a common iTunes library between multiple accounts on a single computer? I've tried and have been able to point all of the "different" iTunes programs in the different profiles to the same place...however, when I add files

  • Do migrated forms still interact with EBS database?

    Once you have completed a EBS forms conversion into APEX, are you able to have the new APEX applications forms read/write from the EBS database? For instance ,say your wanting to take currently used forms XYZ out of EBS and put them into APEX so you

  • Interface-Mapping with a Fault Message Type

    Hi, we have an abap-proxy and some messages generated errors. The errors can be displayed via sxmb_moni. The proxy raises an "Application Error (Restart possible)". Now I wanna transform the generated fault message (of the proxy) with a message mappi

  • HT202159 app download frozen

    app download frozen

  • Bdc for va41

    hi can any one have sample code for VA41 sales contract(bdc). i need to develop bdc program for sales contract VA41. please provide sample code.its urgent. thanks in advance.