Error Messages in SQLPLUS

We are having Oracle 9i (9.2.0.5) which handles a whole bunch of applications.
Suddenly the server has started giving out the entire error stack.eg:
in sqlplus
SQL> select e from emp;
will give out
ORA-00604: error occurred at recursive SQL level 1
ORA-06502: PL/SQL: numeric or value error: character string buffer too small
ORA-06512: at line 8
ORA-00904: "E": invalid identifier
instead of just
ORA-00904: "E": invalid identifier
This is happening at a global level(ie: all users are getting this), can someone tell me which init.ora parameter/sqlnet parameter is making this happen.
DK

One of your triggers on EMP table has in invalid stateNote that the error is on running the SELECT statement (Not a Insert/Update/Delete).
Try using disable all triggers on this tableExtended Error stack is NOT coming because of a invalid trigger on emp table.
SQL> create or replace trigger trig_emp
  2  before insert or update
  3  on emp
  4  for each row
  5  begin
  6    raise program_error ;
  7    err ;
  8  end ;
  9  /
Warning: Trigger created with compilation errors.
SQL> show errors
Errors for TRIGGER TRIG_EMP:
LINE/COL ERROR
3/3      PL/SQL: Statement ignored
3/3      PLS-00201: identifier 'ERR' must be declared
SQL>
SQL> select status from user_objects where object_name = 'TRIG_EMP' ;
STATUS
INVALID
1 row selected.
SQL>
SQL> select e from emp ;
select e from emp
ERROR at line 1:
ORA-00904: "E": invalid identifier
SQL>

Similar Messages

  • SqlPlus error messages are daunting, aren't they?

    Hello guys,
    I am trying to understand the logic of SQLPLUS error messages. I read the User's Guide and Reference but I still don't understand how these line numbers are calculated!!
    I make an example. I am writing some stored procedures in a file merge_procedures.sql, that I am editing in my favourite text editor (Crimson editor). Beside, I have SQL Plus running in a dos windows in XP.
    The file defines 2 packages and various procedures and functions.
    CREATE OR REPLACE PACKAGE STRING_FNC
    AS
    END STRING_FNC;
    CREATE OR REPLACE PACKAGE BODY STRING_FNC
    AS
    END STRING_FNC;
    CREATE OR REPLACE PACKAGE moveSections
    AS
    end moveSections;
    When I run one of the procedures using EXEC procName(args) I get an error:
    SQL> EXEC moveSections.mergeUserSections('EMPTY_jbowerstest','A01','XC','G201','
    *01.G1','G101','01.G1.G1')*
    BEGIN moveSections.mergeUserSections('EMPTY_jbowerstest','A01','XC','G201','01.G
    *1','G101','01.G1.G1'); END;*
    ERROR at line 1:
    ORA-00001: unique constraint (DEV_XCSA.SYS_C008826) violated
    ORA-06512: at "DEV_XCSA.MOVESECTIONS", line 68
    ORA-06512: at "DEV_XCSA.MOVESECTIONS", line 88
    ORA-06512: at "DEV_XCSA.MOVESECTIONS", line 156
    ORA-06512: at line 1
    I don't understand how those line numbers are calculated. I mean, why does it claim there is an error at line 1? And how are the subsequent line numbers calculated? i am getting lost since I cannot find any error at the lines indicated.
    Please help me. Also references to documentation would be appreciated.
    Thanks
    TN

    Hi,
    Tremal Naik wrote:
    I am trying to understand the logic of SQLPLUS error messages. I read the User's Guide and Reference but I still don't understand how these line numbers are calculated!!
    SQL> EXEC moveSections.mergeUserSections('EMPTY_jbowerstest','A01','XC','G201','
    *01.G1','G101','01.G1.G1')*
    BEGIN moveSections.mergeUserSections('EMPTY_jbowerstest','A01','XC','G201','01.G
    *1','G101','01.G1.G1'); END;*
    ERROR at line 1:
    ORA-00001: unique constraint (DEV_XCSA.SYS_C008826) violated
    ORA-06512: at "DEV_XCSA.MOVESECTIONS", line 68
    ORA-06512: at "DEV_XCSA.MOVESECTIONS", line 88
    ORA-06512: at "DEV_XCSA.MOVESECTIONS", line 156
    ORA-06512: at line 1
    I don't understand how those line numbers are calculated. I mean, why does it claim there is an error at line 1? And how are the subsequent line numbers calculated? i am getting lost since I cannot find any error at the lines indicated.ORA-06512 errors are additional information about where the error occurred.
    Like Danny, I find it helpful to read messages like this from the top down.
    The stack above says that the real error, ORA-00001, occurred at line 68 of movesections.
    The procedure at line 68 was called from line 88 of movesections. The real error may have occured around this point; for example, if you passed a bad parameter at line 88, then the code around line 68 may be perfect.
    The procedure at line 88 was called form lline 156 of movesections. Again, the real error may be at line 156, or somewhere leading up to line 156.
    The procedure at line 156 was called from line 1 of some anonymous code, such as
    EXEC moveSections.mergeUserSections('EMPTY_jbowerstest','A01','XC','G201','01.G1','G101','01.G1.G1');

  • Returning error messages to shell with TERMOUT OFF

    Hi all,
    I did a search in this forum and I couldn't find the answer.
    I am unloading (spooling) a table using SQLPLUS. Since I don't want to display these records on screen I am using set termout off.
    But I want to see error messages on the screen. I used whenever sql error exit sql.sqlcode. It is displaying the error messages in the spool file. But I would like to have these on screen so that I can capture all my errors in to a log file.
    Thanks in advance,
    Naren

    There is no setting in SQL*Plus to separate
    errors from other text.
    There is a general risk using sql.sqlcode.
    The OS may not be able to cope with large numbers,
    the returned value may be modulus the maxium
    return code allowed. The risk is that the final
    value may be the same as a successful return value.
    For safety I exit with FAILURE and then
    check the output file for the exact error.
    -- CJ

  • Returning error messages to sheel with termout off

    Hi,
    I did a search in this forum and I couldn't find the answer.
    I am unloading (spooling) a table using sqlplus. Since I don't want to display these records on screen I am using set termout off.
    But I want to see error messages on the screen. I used whenever sql error exit sql.sqlcode. It is displaying the error messages in the spool file. But I would like to have these on screen so that I can capture all my errors in to a log file.
    Thanks in advance,
    Naren

    There is no setting in SQL*Plus to separate
    errors from other text.
    There is a general risk using sql.sqlcode.
    The OS may not be able to cope with large numbers,
    the returned value may be modulus the maxium
    return code allowed. The risk is that the final
    value may be the same as a successful return value.
    For safety I exit with FAILURE and then
    check the output file for the exact error.
    -- CJ

  • Error message for  Unable to connect (BIB-16633)

    Dear All
    I use Oracle Jdeveloper10g (win32), Oracle database10g or 9i (win32 ver). But Failure to connect to OLAP service.
    Can anyone give me what is the error message for BIB-16633.
    Would be really grateful if you could give me a solution as soon as possible.
    Thanks & Regards,
    Mr.Tsang. Hong Kong

    For database versions you need to have at least 9206 for 9i and 10.1.0.4 for 10g. This requires you to apply the 9206 patchset to 9i and the 10.1.0.4 patchset to the 10g base install.
    Please note there are a lot of steps invloved in the patching process and you must make sure you have completed all the steps before creating your OLAP schema. Most problems occur because the patching process is incomplete and the OLAP option is in an invalid state.
    You can check the state of the OLAP option using the following commands in SQLPlus:
    column comp_name format a35
    SELECT comp_name, status, substr(version,1,10) as version
    from dba_server_registry order by modified;
    Once the OLAP option is in a valid state, then you must ensure the OLAPSYS account is unlocked. To test the OLAP environment you can install the BI10G sample schema which will create a new user account called CS_OLAP which contains an Analytic Workspace.
    Hope this helps
    Business Intelligence Beans Product Management Team
    Oracle Corporation

  • ORA-12705 Error Message while trying to connect to the DB

    A colleague of mine has been trying to connect to the DB through PL/SQL Developer. The error message returned is :
    ORA-12705: invalid or unknown NLS parameter value specified
    Checked the registry for NLS_LANG which is set to NA. I did that because the ORA message references the NLS_LANG parameter. However, I doubt that is the problem. Went about to create a new TNS Name entry through Oracle NET Manager and get the same Error Message while performing the TEST function.
    Any clues ? I am clueless at this point.

    This can occur with any NLS_ environment variable of registry value.
    Your assertion ' the ORA message references the NLS_LANG parameter' is incorrect.
    You can set NLS_TERRITORY, NLS_DATE_FORMAT etc, etc, etc.
    The order of precedence is environment variable, registry, Oracle provided default.
    To find out what is going on set every NLS related environment variable to the empty string.
    In sqlplus
    select * from v$nls_valid_values
    will show you what can be set,
    This error will also occur when you installed the software with English as the only language.
    SQL developer doesn't use tnsnames.ora
    The new tnsname entry has nothing to do with it.
    You have an incorrect environment variable or registry value somewhere
    (in HKLM\software\oracle)
    Sybrand Bakker
    Senior Oracle DBA

  • Error while invoking sqlplus

    I am facing a problem while invoking sqlplus.
    The error message is as follows.
    Enter user-name: scott
    Assertion failed: !(fgets(hardwareAddr, (STRLEN-1), fstream) == NULL), file snlu
    i.c, line 1249
    IOT trap (core dumped) ----------------------------------------
    Can anyone help me on this?
    Thanks & Regards
    null

    Try
    set LOCAL=<tns_name>
    Regards
    Kurt

  • Error message while starting database

    Hi all,
    I am getting the following error message while starting the database . I just modified the DB_CACHE_SIZE parameter from 781MB to 781(+500MB) .We are using Oracle 9.2.0.1 in Windows server 2003 . The database starts fine with old parameter value.I searched in Metalink and in Google but no exact solution for this error . Can any body of you help me in this regard.. It is urgent....
    C:\Documents and Settings\mishelpdesk.MISSERVER>d:
    D:\>set oracle_sid=MISAPP1
    D:\>sqlplus /nolog
    SQL*Plus: Release 9.2.0.1.0 - Production on Thu Jun 15 06:32:31 2006
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    SQL> connect sys as sysdba
    Enter password:
    Connected to an idle instance.
    SQL> startup pfile='D:\oracle\admin\MISAPP1\pfile\init.ora';
    ORA-27102: out of memory
    OSD-00022: Message 22 not found; product=RDBMS; facility=SOSD
    O/S-Error: (OS 8) Not enough storage is available to process this command.
    Thanks in Advance...
    Govind.

    Your problem is an OS, not Oracle problem, so it wouldn't help to play around with different init.ora parameters, as long as the basic problem persists. The note addresses W2K, you are on W2003, that may the reason for the different OSD error numbers.
    For more information about AWE see on metalink
    Implementing Address Windowing Extensions (AWE) or VLM on Windows Platforms
    Note:225349.1
    Werner

  • Java - Axis2: How to get an error code / error message from the Javascript via SOAP

    Hi
    In our Java applicsation we call a Javascript in a Indesign CS Server using the following code:
    --- SNIP BEGIN ---
    // calls the remote service on the indesign server
    try {
    // create service
    ServiceStub oIndsgnSrvStub = new
    ServiceStub(sIndesignServer);
    // create service parameter
    ServiceStub.RunScriptParameters
    oIndsgnSrvRSParams = new ServiceStub.RunScriptParameters();
    // create arguments with source- and target-file for parameter
    ServiceStub.IDSPScriptArg[] oIndsgnSrvSArgs = new ServiceStub.IDSPScriptArg[2];
    oIndsgnSrvSArgs[0] = new
    ServiceStub.IDSPScriptArg();
    oIndsgnSrvSArgs[0].setName("xml-input");
    oIndsgnSrvSArgs[0].setValue(sSourceFile);
    oIndsgnSrvSArgs[1] = new
    ServiceStub.IDSPScriptArg();
    oIndsgnSrvSArgs[1].setName("output-file");
    oIndsgnSrvSArgs[1].setValue(sTargetFile);
    // define service parameter
    oIndsgnSrvRSParams.setScriptArgs(oIndsgnSrvSArgs);
    oIndsgnSrvRSParams.setScriptFile(sScriptFile);
    oIndsgnSrvRSParams.setScriptLanguage("javascript");
    oIndsgnSrvRSParams.setScriptText("");
    // create runscript
    ServiceStub.RunScript oIndsgnSrvRS = new ServiceStub.RunScript();
    // set parameter
    oIndsgnSrvRS.setRunScriptParameters(oIndsgnSrvRSParams);
    //$$$ there should be an answer returned by the InddSrvr
    // execute SOAP call
    ServiceStub.RunScriptResult oIndsgnSrvRes = oIndsgnSrvStub.RunScript(oIndsgnSrvRS);
    if(oIndsgnSrvRes.getErrorNumber() == 0) {
    oServerProdJob.setProdState(CBP_Constant.REMOTEPRODUCTIONSTATE_SUCCESS);
    bOK = true;
    } else {
    oServerProdJob.setProdState(CBP_Constant.REMOTEPRODUCTIONSTATE_FAILURE);
    bOK = false;
    //$$$ should be set, if there is something returned by inddsrvr
    //oServerProdJob.setErrorMsg(sErrorMsg);
    } catch(Exception e) {
    sError += e.getMessage() + "\n";
    bOK = false;
    --- SNIP END -----
    The problem is that we don't get the error code and/or the error message from the Javascript in oIndsgnSrvRes. The error code is always 0 if I set an Integer value as return in the Javascript. If I set a String, there is an Exception in the Java application.
    Here is the Java script we use:
    --- SNIP BEGIN ---
    main();
    main()
    var sError = "";
    var sXMLInput = "";
    var sLayoutPath = "";
    // get the SDKCodeSnippetRunner object
    var cbpAdapter = app.cbpCbpadapterObject
    if (cbpAdapter) {
    sXMLInput=app.scriptArgs.get("xml-input");
    sLayoutOutputFile=app.scriptArgs.get("output-file");
    sError = cbpAdapter.doProcess(sXMLInput, sLayoutOutputFile);
    return sError; // This give an Exception; if I return an Integer the ScriptResult is always 0
    --- SNIP END -----
    If I try this with the test application from Adobe I get the error code correctly. But in the Java application, using SOAP, I can't get the error code.
    What could be wrong?
    Any ideas?
    Thanks a lot for the support.
    Kind regards
    Hans

    user11340104 wrote:
    Hello -
    i am calling sqlplus from a bash shell script. If the sql statement generates an error, how can I return that error code (unsuccessful) back to the bash shell?
    Well, let google be your friend,
    http://www.google.co.in/search?rlz=1C1GGLS_enIN327IN327&sourceid=chrome&ie=UTF-8&q=sqlplus+error+codes
    There are many threads I guess talking about the same issue.
    HTH
    Aman....

  • ORA-01078 error message when trying to start database

    Hi,
    I am trying to clone a production database to use it as a standby on a different server. When I try to startup the database I get the below error message. I tryied starting it up from EM, but got "ORA-01078: failure in processing system parameters" error message.
    SQL> startup nomount pfile='D:\oracle\admin\MYDB\pfile\initmydb.ora'
    LRM-00101: unknown parameter name 'db_cache_size'
    LRM-00101: unknown parameter name 'dispatchers'
    LRM-00101: unknown parameter name 'fast_start_mttr_target'
    LRM-00101: unknown parameter name 'pga_aggregate_target'
    LRM-00101: unknown parameter name 'undo_management'
    LRM-00101: unknown parameter name 'undo_retention'
    LRM-00101: unknown parameter name 'undo_tablespace'
    ORA-01078: failure in processing system parameters
    SQL>
    This is my "ini" file:
    *.aq_tm_processes=1
    *.background_dump_dest='d:\oracle\admin\mydb\bdump'
    *.compatible='9.2.0.0.0'
    *.control_files='d:\oracle\oradata\mydb\control01.ctl','d:\oracle\oradata\mydb\control02.ctl','d:\oracle\oradata\mydb\control03.ctl'
    *.core_dump_dest='d:\oracle\admin\mydb\cdump'
    *.db_block_size=8192
    *.db_cache_size=629145600
    *.db_domain='skmconsulting.com'
    *.db_file_multiblock_read_count=16
    *.db_name='mydb'
    *.dispatchers='(PROTOCOL=TCP)'
    *.fast_start_mttr_target=300
    *.hash_join_enabled=TRUE
    *.instance_name='mydb'
    *.java_pool_size=33554432
    *.job_queue_processes=10
    *.large_pool_size=8388608
    *.log_archive_format='arch_mydb_%t_%s.arc'
    *.log_archive_dest = D:\oracle\archive-logs\mydb
    *.log_archive_start=TRUE
    *.max_enabled_roles=148
    *.open_cursors=500
    *.optimizer_mode='rule'
    *.pga_aggregate_target=25165824
    *.processes=200
    *.query_rewrite_enabled='FALSE'
    *.remote_login_passwordfile='EXCLUSIVE'
    *.shared_pool_size=83886080
    *.sort_area_size=524288
    *.star_transformation_enabled='FALSE'
    *.timed_statistics=TRUE
    *.undo_management='AUTO'
    *.undo_retention=10800
    *.undo_tablespace='UNDOTBS1'
    *.user_dump_dest='d:\oracle\admin\mydb\udump'
    Any ideas?
    Thanks.

    Also tried this, and got the same error:
    oradim.exe -delete -sid mydb
    set ORACLE_HOME=D:\oracle\ora92
    oradim.exe -new -sid mydb -intpwd pw -startmode manual
    set oracle_sid=mydb
    sqlplus /nolog
    conn sys/pw as sysdba
    startup nomount pfile='D:\oracle\admin\MYDB\pfile\initmydb.ora'
    ORA-12538: TNS:no such protocol adapter

  • Unknown SID Error Message/Unable To Login to VM Manager

    Hello,
    I have installed VM Server and VM Manager on the latest Virtual Box install for Windows 7.
    When I attempt to login into the VM Manager (ID: ovm , Default Password: Welcome1) - I get
    the error message:
    "... [APP: ovm_console] An incorrect username or password was specified. ...."
    I selected all default passwords and database config values during installation (e.g., SID=XE).
    (Note: I am able to login to VM Manager GNOME desktop but I am unable to log into the VM Manager UI.
    I can log in as root in a Xterm window and the ovm Welcome1 password allows me into the GNOME environment. )
    The critical error message in the AdminServer.log IS an unknown 'SID' message (even though the default SID=XE was selected):
    "ORA-12505, TNS:listener does not currently know of SID given in connect descriptor"
    I reviewed the responses to the "Unable to Login to VM Manager" thread so I decided to try the recommended response (unlocking ovs oracle password) even though the logs responses were different in certain areas. I logged in as Oracle with the correct user env and attempted to start the XE database via sqlplus sys user and startup command. I was unable to start the database due to the below error message:
    2012-11-23 14:13:46.210
    18 Oracle Instance Startup operation failed. Another process may be attempting to startup or shutdown this Instance.
    19 Failed to acquire instance startup/shutdown serialization primitive
    ~
    Shutdown abort also did not get rid of this message. Symptons suggest there is a lock not being released (e.g., primitive file that needs to be cleaned up/removed.) I did remove oracle *.lck files from /tmp directory but this did not help either. The ps -elf output also reveals there are no oracle pmon processes running.
    If anybody has additional information on this matter - it would be greatly appreciated.
    SUMMARY/EXCERPT OF AdminServer.log AND AdminServer-diagnostic.log
    The AdminServer.log squawks an "ORA-12505, TNS:listener does not currently know of SID given in connect descriptor"
    <> <> <1353697919018> <WL-001129> <Received exception while creating connection for pool "OVMDS": Listener refused the connection with the following error:
    198 ORA-12505, TNS:listener does not currently know of SID given in connect descriptor
    199 >
    200 ####<Nov 23, 2012 11:11:59 AM PST> <Info> <JDBC> <mjcmanager.example.com> <AdminServer> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1353697919019> <WL-001156> <Stack trace associated with message 001129 follows:
    201
    202 java.sql.SQLException: Listener refused the connection with the following error:
    203 ORA-12505, TNS:listener does not currently know of SID given in connect descriptor
    204
    205 at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:443)
    206 at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:670)
    The critical AdminServer-diagnostic.log error messages are:
    AdminServer-diagnostic.log:[2012-11-23T11:17:51.872-08:00] [AdminServer] [ERROR] [] [com.oracle.ovm.mgr.faces.backing.Login] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 79deca6682202612:4258bdee:13b2eaec5e4:-8000-0000000000000099,0] [APP: ovm_console] An incorrect username or password was specified. [Security:090304]Authentication Failed: User ovm javax.security.auth.login.FailedLoginException: [Security:090302]Authentication Failed: User ovm denied
    69 AdminServer-diagnostic.log:[2012-11-23T09:09:27.835-08:00] [AdminServer] [ERROR] [] [oracle.help.web.rich.converter.RichTopicConverter] [tid: [ACTIVE].ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 79deca6682202612:16d2c063:13b250c1b7c:-8000-0000000000000147,0] [APP: ovm_help] /u01/app/oracle/ovm-manager-3/machine1/base_adf_domain/servers/AdminServer/tmp/_WL_user/ovm_help/33se2m/war/helpsets/ovmHelp/qstart.html (No such file or directory)
    70 AdminServer-diagnostic.log:[2012-11-23T11:16:32.629-08:00] [AdminServer] [ERROR] [] [com.oracle.ovm.mgr.faces.backing.Login] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 79deca6682202612:4258bdee:13b2eaec5e4:-8000-0000000000000079,0] [APP: ovm_console] An incorrect username or password was specified. [Security:090304]Authentication Failed: User ovs javax.security.auth.login.FailedLoginException: [Security:090302]Authentication Failed: User ovs denied
    71 AdminServer-diagnostic.log:[2012-11-23T11:16:53.672-08:00] [AdminServer] [ERROR] [] [com.oracle.ovm.mgr.faces.backing.Login] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 79deca6682202612:4258bdee:13b2eaec5e4:-8000-000000000000007f,0] [APP: ovm_console] An incorrect username or password was specified. [Security:090304]Authentication Failed: User ovm javax.security.auth.login.FailedLoginException: [Security:090302]Authentication Failed: User ovm denied
    72 AdminServer-diagnostic.log:[2012-11-23T11:17:51.872-08:00] [AdminServer] [ERROR] [] [com.oracle.ovm.mgr.faces.backing.Login] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 79deca6682202612:4258bdee:13b2eaec5e4:-8000-0000000000000099,0] [APP: ovm_console] An incorrect username or password was specified. [Security:090304]Authentication Failed: User ovm javax.security.auth.login.FailedLoginException: [Security:090302]Authentication Failed: User ovm denied
    ******************************************************************************************

    Further investigation reveals the reason why I can't manually start the database as oracle user. The permissions on the oracle directories via the default install are incorrect. Running the command chown -R oracle:dba /u01/app/oracle/ allowed the database to start.. OVS user is now able to login into the XE database.
    Now logging in w/ admin user in VM results in the following error message:
    " Unexpected error during login (com.oracle.ovm.mgr.api.exception.FailedOperationException: OVMAPI_6000E Internal Error: Connection refused Connection refused Sat Nov 24 11:39:22 PST 2012), please consult logs for details.
    I am spending way too much time on this Virtual box install. Any feedback would be appreciated.

  • How to get more detailed error messages when using Oracle JDBC

    Here are some typical Oracle error messages that leave you guessing :
    "ORA-01722: invalid number"
    "ORA-00904: invalid column name"
    Is there any way to find out which number or which column name is invalid ?
    Why doesn't Oracle include this information in the error messages ? If it knows the number or column is invalid, it must know the number or column name !

    Launch the query under sqlplus, it'll tell u :
    SQL> select user_id, userna from dba_users ;
    select user_id, userna from dba_users
    ERROR at line 1:
    ORA-00904: invalid column name

  • Db server doesn't start. Error message: ORA-00020: maximum number of proces

    After I changed the parameter from archive log mode. My db server is having problems.
    I can't log in as sys using sqlplus. when I log in through sqlplus /nolog, and tried to shut down, here is the error message:
    $ sqlplus /nolog
    SQL*Plus: Release 10.1.0.3.0 - Production on Mon Apr 23 11:43:07 2007
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    SQL> connect / as sysdba
    Connected to an idle instance.
    SQL> shutdown immediate
    ORA-24324: service handle not initialized
    ORA-24323: value not allowed
    ORA-00020: maximum number of processes (%s) exceeded
    SQL>
    I am stuck on this. i have changed the value of processes in init.ora, but this error still exists. i think I need to do: create spfile from pfile='init.ora', but I need to log in to do, but I can't log in sys.
    Please help.
    Thanks.

    i forgot shutdown abort. used that, created spfile from pfile, and it works ok now.

  • TopLink error messages as question marks

    Hi,
    I'm using JDev10g (10.1.2). I crated a TopLink project. When I run my project and attempt to execute a ReadAllQuery against one my persistent classes, I get the following error:
    ???? ??????????? ???????: ??????? [TOPLINK-4002] (OracleAS TopLink - 10g (9.0.4.5) (Build 040930)): oracle.toplink.exceptions.DatabaseException??? ?????????: java.sql.SQLException: ??? ??????? ??? ??????? ?????????????? ?????: java.sql.SQLException: ??? ??????? ??? ??????? ?????????? ?????: 17059
    I don't know what's wrong. Erros in SQLPlus or Toad appear correctly. I set my locale to English (United States) and all the NLS_LANG in the registry to AMERICAN_AMERICA.AR8MSWIN1256 and yet the problem persists.
    I took the code as a war file and deployed it on Tomcat and the error message appears correctly as follows:
    Exception [TOPLINK-4002] (OracleAS TopLink - 10g (9.0.4.5) (Build 040930)): oracle.toplink.exceptions.DatabaseException
    Exception Description: java.sql.SQLException: Fail to convert to internal representation
    Internal Exception: java.sql.SQLException: Fail to convert to internal representation
    Error Code: 17059
    I don't know what do. Is there a language setting in JDeveloper that I need to set? Does the fact that I changed my locale after installing JDeveloper have any thing to do with it? Please help, I can not really do any debugging this way.
    Thanks.

    Hi,
    Unplug the USB, then uninstall the software by going to Start > Programs > HP > HP Officejet 4500 and select Uninstall.
    Once your are done reboot your PC, then download and install the software below:
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloa​dIndex?softwareitem=mp-80343-1&cc=il&dlc=he&lc=he&​...
    Note: be sure to keep the USB unplugged till the installation prompts to connect it.
    The software should resolve the issue and display any dialog as expected.
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Oracle 9.2 installation error message on window XP:

    Hi all;
    I am new to oracle and try to install oracle 9.2 on window XP professional. Everything went well except the error message:
    Tehre is no non empty value found for variable j_Servport in \oracle\ora92\Apache\Apache\ports.ini
    Here is the content of my ports.ini file ================================================
    [Ports]
    s_apachePort = 80
    s_apachePortSSL = 443
    [Ports]
    s_apachePort = 80
    s_apachePortSSL = 443
    [Ports]
    s_apachePort = 80
    s_apachePortSSL = 443
    s_jservPort = 8007
    [Ports]
    s_apachePort = 80
    s_apachePortSSL = 443
    s_jservPort = 8007
    ======================================
    After the installation completed I was able to connect to my sql*plus and do some excersice. However, I connect to isqlplus (web access). I did follow the rule to connect to http://localhost:7778/isqlplus but the page didn't work.
    Any suggestion?
    Thanks.
    Leah

    The error message was:
    Syntax error on line 92 of c:/oracle/ora92/sqlplus/admin/isqlplus.conf
    FastCgiServer: redefinition of a previously defined FastCGI server
    c:/oracle/ora92/bin/isqlplus
    Here is my isqlplus.conf content
    ======================================================
    # Copyright (c) 2001, 2002, Oracle Corporation. All rights reserved.
    # NAME
    # isqlplus.conf
    # PURPOSE
    # Oracle HTTP Server directives for the iSQL*Plus server
    # USAGE
    # This file should be included in the Oracle HTTP Server
    # "oracle_apache.conf" file.
    # Enable handling of all virtual paths beginning with "/iplus/"
    # Note: only /iplus/ is mapped, /iplus is not being mapped
    <IfModule mod_alias.c>
    Alias /iplus/ "C:\oracle\ora92\sqlplus\admin\iplus/"
    # Disallow users from trying to access /iplus/ directory listing
    <Directory "C:\oracle\ora92\sqlplus\admin\iplus">
    AllowOverride None
    Options FollowSymLinks
    Order deny,allow
    Allow from all
    </Directory>
    </IfModule>
    # Maps all virtual paths beginning with "/isqlplus*" to the iSQL*Plus
    # FastCGI application
    <IfModule mod_alias.c>
    ScriptAliasMatch ^/isqlplus(.*) C:\oracle\ora92\bin\isqlplus
    ScriptAliasMatch ^/isqlplusdba(.*) C:\oracle\ora92\bin\isqlplus
    <Directory "C:\oracle\ora92\bin">
    AllowOverride None
    Options FollowSymLinks
    Order deny,allow
    Allow from all
    </Directory>
    </IfModule>
    # Enable handling of all virtual paths beginning with "/isqlplus"
    <Location /isqlplus>
    SetHandler fastcgi-script
    Order deny,allow
    # Comment "Allow ..." and uncomment the four lines "AuthType ..."
    # to "Require ..." if Oracle HTTP authentication access is required
    # for the http://.../isqlplus URL
    Allow from all
    #AuthType Basic
    #AuthName 'iSQL*Plus'
    #AuthUserFile C:\oracle\ora92\sqlplus\admin\iplus.pw
    #Require valid-user
    </Location>
    # Enable handling of all virtual paths beginning with "/isqlplusdba".
    # Note: Oracle HTTP authentication access must be configured to
    # prevent unauthorized users performing DBA operations on
    # the database
    # Use the HTTP server utility script "htpasswd" to add users to the
    # "iplusdba.pw" file.
    <Location /isqlplusdba>
    SetHandler fastcgi-script
    Order deny,allow
    AuthType Basic
    AuthName 'iSQL*Plus DBA'
    AuthUserFile C:\oracle\ora92\sqlplus\admin\iplusdba.pw
    Require valid-user
    </Location>
    # Setup the iSQL*Plus FastCGI application.
    <IfModule mod_fastcgi.c>
    FastCgiServer C:\oracle\ora92\bin\isqlplus -port 8228 -initial-env iSQLPlusNumberOfThreads=20 -initial-env iSQLPlusTimeOutInterval=30 -initial-env iSQLPlusLogLevel=off -initial-env iSQLPlusAllowUserEntMap=none -idle-timeout 3600
    </IfModule>
    ==============================================
    I did reinstall a few times if this would give you some hints.
    Thanks.
    Leah.

Maybe you are looking for

  • Report not printing all the characters -main section width greater than 11"

    Hi, I am trying to build/modify a Report (used in Oracle Apps) which will be printed on some perforated paper. The perforated paper is little bit wider (11.25 inches) than the regular A4 size paper. The problem is when I print the report in Oracle Ap

  • Iphone 5 loses signal when plugged in.

    Also, if I'm in the middle of a call as soon as it is plugged in to the charger, the microphone and speaker stops working but when it's unplugged the call can continue as normal. Any ideas why?

  • Actual Labour Costs against production order

    Hi, I am currently getting some production orders with no labour costs coming through. We use Activity Types maintained within Routings to capture the labour cost. I have checked that the Activity Type and Routing details are linked correctly. But wh

  • Draw a rectangle from a flex app

    Hello, GRAND CHALLENGE (should be "hello world" that anyone should easily find): 1) - a flex app with a button 2) - when clicked the button draw the rectangle PROPOSED NON WORKING SOLUTION: draw.mxml: <?xml version="1.0" encoding="utf-8"?> <mx:Applic

  • Saved search not navigating for only one user

    Hi Everyone, I have a saved search that navigates for all users except one. Furthermore, on that same search screen if I use a different object type, do a search and save it, the saved search works for that user. So it seems like it is related to the