ORA-04045 error on a 10g form

I have a form 10g that runs fine on one server, then when I move the FMX over to another 100% identical server, I get the ORA04045 error as soon as i run the form. I've recompiled the form and still get the error.
The problem is that teh message on the form is truncated and I can not see which object is causing the issue.
Anyone have any ideas?

then when I move the FMX over to another 100% identical serverThis is a common miss-conception - you should ALWAYS compile your form on the server it will run from.
I've recompiled the form and still get the error.My first suspicion is that the servers are not 100% identical. Rather than a SQL Trace, I suggest you use the Forms Runtime Diagnostics (FRD) to trace just the Forms Session. You might need to modify the default.env and formsweg.cfg to enable FRD. Double check with your App Server admin to see if the "FORMS_TRACE_DIR=" variable is set in the DEFAULT.ENV. As long as this is set, you can enable FRD through the Forms app URL. Start your application and then add "record=collect log=<your_file_name_here.txt" to the URL to start the FRD trace. You could also have your admin modify the formsweb.cfg to create a config just for FRD. For example, I modified my local formsweb.cfg and added the following section so I can run FRD on specific forms from my workstation.
[my_frd]
otherparams=record=collect log=my_frd.txt
This setting is dependent on the FORMS_TRACE_DIR= variable in the default.env.
With this added to the formsweb.cfg, you can enable FRD by adding "config=my_frd" to the url instead of explictly passing record= and log= to the URL.
The log file produced by the FRD is quite large but, if you end your application after you receive the error, you could go to the end of the log file and work your way back until you find the error.
Hope this helps,
Craig B-)
If someone's response is helpful or correct, please mark it accordingly.

Similar Messages

  • Oracle Java proc ORA-04045: errors during recompilation/revalidation

    hi,
    I have Oracle Java stored proc called MERGE_ENTITY_AND_EVENT invoked by a trigger. It was working fine for a couple of weeks. Today it throws this generic exception. I'm not sure what changed.
    Caused by: java.sql.SQLSyntaxErrorException: ORA-04045: errors during recompilation/revalidation of TLMDEV./3ba8073b_Log4JLogger
    ORA-06512: at "MERGE_ENTITY_AND_EVENT", line 1
    ORA-06512: at "QUOTE_TRIGGER", line 49
    1. What is the root cause of this exception ?
    2. Whats the solution ?
    If you dont know 1 or 2, how would you go about debugging this problem ?
    Thanks in advance.

    The most likely cause is that something has caused the class TLMDEV./3ba8073b_Log4JLogger to become invalid and implicit invalidation does not succeed in making it valid. In general a class must be valid in order to be run and an attempt to run an invalid class (such as because your trigger calls it) will cause an attempt to validate it and if that attempt fails an ORA-04045 can be the result. Validation of a class amounts to iterating over the set of names referenced by the class and looking for a valid class by that name, perhaps recursively attempting to validate if an invalid class by that name is found. So validation of a class may amount to an attempt to validate several classes at once. If any of them fail to be validatable, which occurs if there is no class for a given referenced name then most if not all of the classes in the set being validated and certainly the top level one will fail to validate. So if things are working correctly, the ultimate reason for the ORA-04045 will prove to be that some name referenced by TLMDEV./3ba8073b_Log4JLogger or recursived by something it references will be a name for which there is no class in the database (or more precisely in the search path used which is typically the current schema followed by PUBLIC, but could be different if some of the classes involved have had explicit resolver specifications given for them). The thing to do to try to start determining what class is missing is to do the query
    select owner||'.'||name||' : '||text from all_errors where type like 'JAVA%';
    The first thing to look at are lines for TLMDEV./3ba8073b_Log4JLogger. These will probably show text which contains either ORA-29534 identifying a referenced class that exists but could not be recursively valid, or ORA-29521 identifying names for which there is no class. The latter are the ultimately interesting ones since the former will end up being recursively caused by them. So look at the ORA-29521s and then try to determine either why the class is missing and how to restore it or which it is now referenced when it wasn't before (which would happen if some class was changed to reference it or something that references it, recursively).

  • Oracle Collaborate Suite ORA-6502 error during loging or form submitting

    Hi!
    I had Oracle Collaborate Suite ORA-6502 error during loging or form submitting:
    Internal error (WWC-00006)
    An unexpected error has occurred (WWS-32100)
    ORA-6502: ORA-06502: PL/SQL: numeric or value error: character string buffer too small (WWC-36000)
    Unexpected error encountered in wwsec_api.person_info (ORA-06502: PL/SQL: numeric or value error: character string buffer too small) (WWC-41417)
    Error (WWS-20000)
    An unexpected error has occurred (WWS-32100)
    ORA-6502: ORA-06502: PL/SQL: numeric or value error: character string buffer too small (WWC-36000)
    Unexpected error encountered in wwsec_api.person_info (ORA-06502: PL/SQL: numeric or value error: character string buffer too small) (WWC-41417).
    This happened when:
    I was using Russian letters in OCS HTML forms (for example - in Administration provision console or in my own HTML forms)
    and only I work in Linux (with UTF-8 encoding) (in Windows with win1251 encoding all is OK).
    My Database NLS not-null Parameters are:
    NLS_LANGUAGE      - AMERICAN
    NLS_LENGTH_SEMANTICS      - BYTE
    NLS_TERRITORY      - AMERICA
    NLS_CHARACTERSET - AL32UTF8
    NLS_NCHAR_CHARACTERSET - AL16UTF16
    WHAT MUST I DO TO AVOID THIS SITUATION?
    Thank
    Valery

    All,
    It appears that the page Javascript maximum limit size was reached. The error stopped appearing after some of the page Javascript code was removed out to Application Static Files. I wonder if there exists any "direct" indicator by the system whenever the size limit has been reached?
    Again, the run error only occurred when the page was loaded in "Debug" mode.
    Bernard

  • ORA - 12560 Error Whilst i run form

    Can anybody please figure out my problem ???
    i got ORA 12560 Error when i run form ..i am new with oracle ..please help me out ..

    Is this an Oracle Apps environment? If so, what is the application release?
    Is this a standard or custom form?
    Please elaborate more so others can help.

  • ORA-04045: errors during recompilation/revalidation

    I was applying catlog.sql and catproc.sql, but has some problem during it, and now, when I try to access a database in the sqlplus appear follow errors:
    ERROR:
    ORA-04045: errors during recompilation/revalidation of
    SYS.DBMS_APPLICATION_INFO
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at line 2
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at line 2
    Error accessing package DBMS_APPLICATION_INFO
    Someone know about it ??
    Thanks

    What went wrong during catalog and catproc ?
    Did you run out of space ? In that case just enable autoextension on the system tablespace datafile[s] and re-run catalog & catproc. Check the logfiles.
    regards,
    Ronald.
    http://ronr.nl/unix-dba

  • ORA-04045 : errors during recompilation/revalidation of SYS.DBMS_STANDARD

    Hi,
    i am on 11.5.10.2 RHEL 4.0
    i tried running catalog.log on DB Tier as sys, but was not successful.
    later sqlplus apps/apps would start giving
    ORA-00604 : error occured at recursive SQL level 1
    ORA-04045 : errors during recompilation/revalidation of SYS.DBMS_STANDARD
    $sqlplus /nolog works fine... BUT
    $sqlplus conn /as sysdba HANGS!!!!
    Also logging via URL > after clicking on E-Business Home Page gives
    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator, changeOnOHSInstall and inform them of the time the error occurred, and anything you might have done that may have caused the error.
    More information about this error may be available in the server error log.
    could anybody suggest on this error?
    Thanking You
    Regards,
    SK

    Thanks for your quick reply
    status of the object: INVALID
    PLSQL_V2_COMPATIBLITY is set to FALSE
    Run utlrp.sql to compile all invalid objects in the database
    it gave me error as follows:
    SQL> @utlrp.sql
    declare
    ERROR at line 1
    ORA -00604 : error occured at recursive SQL level 1
    ORA - 04045 : errors during recompilation/revalidation of SYS.DBMS_STANDARD
    CREATE TABLE utl_recomp_invalid (obj# number)
    ERROR at line 1
    ORA -00604 : error occured at recursive SQL level 1
    ORA - 04045 : errors during recompilation/revalidation of SYS.DBMS_STANDARD
    CREATE TABLE utl_recomp_sorted (obj# number, depth number)
    ERROR at line 1
    ORA -00604 : error occured at recursive SQL level 1
    ORA - 04045 : errors during recompilation/revalidation of SYS.DBMS_STANDARD
    CREATE TABLE utl_recomp_compiled(obj# number)
    ERROR at line 1
    ORA -00604 : error occured at recursive SQL level 1
    ORA - 04045 : errors during recompilation/revalidation of SYS.DBMS_STANDARD
    CREATE INDEX utl_recomp_comp_idx1 ON utl_recomp_compiled(obj#)
    ERROR at line 1
    ORA -00604 : error occured at recursive SQL level 1
    ORA - 04045 : errors during recompilation/revalidation of SYS.DBMS_STANDARD
    CREATE TABLE utl_recomp_backup_jobs (command varchar2(100), status varchar2(1000))
    ERROR at line 1
    ORA -00604 : error occured at recursive SQL level 1
    ORA - 04045 : errors during recompilation/revalidation of SYS.DBMS_STANDARD
    SELECT o.obj#, o.type#, o. owner# FROM obj# o
    ERROR at line 2
    ORA -00604 : error occured at recursive SQL level 1
    ORA - 04045 : errors during recompilation/revalidation of SYS.DBMS_STANDARD
    Edited by: mirage on Dec 4, 2008 6:45 PM

  • I am getting ORA-01007 error at runtime in forms

    Hello All,
    Good Mornig!
    I am new to this group.
    I have some problems with oracle forms 9i. I am not able to findout the correct reason
    for the below problem.
    Please read information given below and give me the exact reason what has happend,
    1) We have 2 different schemas,one user_samp1 and other user_real .
    When we compile the forms against user_samp1 schema and deploy in
    production(user_real), we are getting runtime error ie ORA-01007.
    When we debug the problem ,we found that the error was with a cursor which
    was taking the data using * . ie 'cursor a is select * from table1'. When the cursor is
    opened, we were getting this error.
    But when we replace * with columns ( ie 'cursor a is select col1,col2 from table1' )
    Or the form is compiled against production schema, this error is not coming.
    The structure in the two schemas is as below....
    user_samp1 ::
    table1 ::
    col1 number
    col2 number
    col3 char
    production
    table1 ::
    col1 number
    col3 char
    col2 number
    I am giving the structure because the order of columns is different, when you describe
    in those two different schemas.
    We are using forms 9i (and oracle 9i) and these forms are migrated from forms 6i.
    ( Same problem with 10g forms )
    2) The below statement works even the col2 column is not present in table2 ,
    Select col1 from table1 where col2 in (select col2 from table2);
    But when you use alias then the above query gives error.
    ( This query might be taking col2 in table1 as value for the col2 present in
    subquery for table2. But is this not confusing)
    3)Is there anyway to findout all the objects(Oracle Objects Used in forms) present in a form. (eg For doing impact)
    Thanks in Advance.
    With Regards,
    Sreekanth Babu

    Cause: A reference was made to a variable not listed in the SELECT clause. In
    OCI, this can occur if the number passed for the position parameter is less than
    one or greater than the number of variables in the SELECT clause in any of the
    following calls: DESCRIBE, NAME, or DEFINE. In SQL*Forms or SQL*Report,
    specifying more variables in an INTO clause than in the SELECT clause also
    causes this error.
    Action: Determine which of the problems listed caused the problem and take
    appropriate action.

  • ORA-20001 error when creating Tabular Form or Form and Report

    Whenever I try and add a Tabular Form or Form and Report to my application i am getting the following error at the end of the Wizard.
    ORA-20001: Unable to create updateable report. ORA-20001: Error creating shortcut id="" ORA-00001: unique constraint (APEX_030200.WWV_FLOW_SHORTCUT_IDX1) violatedIt's not a problem I have seen when building other apps and clearly I have managed to corrupt this application somehow.
    I have loaded the problem onto apex.oracle.com for those that have access. The application number is 20325.
    Any help would be very much appreciated.
    Cheers Shunt

    Thanks! Never thought of that.
    --Andy                                                                                                                                                                                                                       

  • Ora 600 and ora 7445 error in oracle 10g r2

    hi all,
    we are using Oracle 10g r2.
    os is windows 2003 server,
    ram is 4 gb.
    front end is java .
    we got a below mentioned errors.
    i got the RA-00600: internal error code, arguments: [qerghFetch:inc], [], [], [], [], [], [], [],
    and ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [unable_to_trans_pc] [PC:0x61F04AC9] [ADDR:0xC] [UNABLE_TO_READ] []
    and Error 0 in kwqmnpartition(), aborting txn errors.
    for aug 3 11.42.47 we got a ora 600 error after that through front end (java) users can't able to connect the database.the not able to executed the query session disconnected error.
    what is reason for theis error . how it will rectifiy.?
    pls advice.Below i attached the alret log message .
    Sun Aug 02 04:04:24 2009
    Error 0 in kwqmnpartition(), aborting txn
    Sun Aug 02 05:48:10 2009
    Error 0 in kwqmnpartition(), aborting txn
    Sun Aug 02 05:49:10 2009
    Error 0 in kwqmnpartition(), aborting txn
    Sun Aug 02 07:38:49 2009
    Thread 1 advanced to log sequence 1732
    Current log# 3 seq# 1732 mem# 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\REDO03.LOG
    Sun Aug 02 07:44:14 2009
    Error 0 in kwqmnpartition(), aborting txn
    Sun Aug 02 07:45:14 2009
    Error 0 in kwqmnpartition(), aborting txn
    Sun Aug 02 22:00:26 2009
    Thread 1 advanced to log sequence 1733
    Current log# 1 seq# 1733 mem# 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\REDO01.LOG
    Mon Aug 03 07:08:15 2009
    Thread 1 advanced to log sequence 1734
    Current log# 2 seq# 1734 mem# 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\REDO02.LOG
    Mon Aug 03 09:28:23 2009
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Mon Aug 03 09:30:27 2009
    Error 0 in kwqmnpartition(), aborting txn
    Mon Aug 03 11:42:47 2009
    Errors in file e:\oracle\product\10.2.0\admin\orcl\udump\orcl_ora_6012.trc:
    ORA-00600: internal error code, arguments: [qerghFetch:inc], [], [], [], [], [], [], []
    Mon Aug 03 13:20:00 2009
    Thread 1 advanced to log sequence 1735
    Current log# 3 seq# 1735 mem# 0: E:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\REDO03.LOG
    Mon Aug 03 16:07:07 2009
    Errors in file e:\oracle\product\10.2.0\em_2\rdbms\trace\orcl_ora_4756.trc:
    ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [unable_to_trans_pc] [PC:0x61F04AC9] [ADDR:0xC] [UNABLE_TO_READ] []
    Mon Aug 03 16:07:11 2009
    Process m000 died, see its trace file
    Mon Aug 03 16:07:11 2009
    ksvcreate: Process(m000) creation failed
    Mon Aug 03 16:08:37 2009
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Mon Aug 03 16:10:40 2009
    Error 0 in kwqmnpartition(), aborting txn
    Mon Aug 03 17:25:05 2009
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Mon Aug 03 17:27:11 2009
    Error 0 in kwqmnpartition(), aborting txn
    Mon Aug 03 17:32:19 2009
    Error 0 in kwqmnpartition(), aborting txn
    Mon Aug 03 17:33:24 2009
    Error 0 in kwqmnpartition(), aborting txn
    Mon Aug 03 18:52:08 2009
    Error 0 in kwqmnpartition(), aborting txn
    Mon Aug 03 18:54:09 2009
    Error 0 in kwqmnpartition(), aborting txn
    Mon Aug 03 19:05:33 2009
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Mon Aug 03 19:09:02 2009
    Errors in file e:\oracle\product\10.2.0\em_2\rdbms\trace\orcl_ora_5132.trc:
    ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [unable_to_trans_pc] [PC:0x7C34126B] [ADDR:0x0] [UNABLE_TO_WRITE] []
    Mon Aug 03 19:10:27 2009
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition(), aborting txn

    Hi reshumakur
    As this is your PRODUCTION system THEN_ The best help to offer in case of ORA-600, and ORA-7445 is to open SR with metalink. Submit with the SR the following
    1- Alert log
    2- Trace files (in ur case e:\oracle\product\10.2.0\admin\orcl\udump\orcl_ora_6012.trc: and e:\oracle\product\10.2.0\em_2\rdbms\trace\orcl_ora_4756.trc:)
    3- Describe what was happening when you had these errors.
    Try to avoid free help when you have ORA-600 and ORA-07445. This errors could be becuase of BUGS. Oracle Support will know this from the call stack in the trace file.
    Then Do your best to patch 10.2.0.4 and the latest CPU patch.
    Good Luck

  • ORA-01552 error in Oracle 10g DB!!!

    Hi,
    I have an application running with an Oracle 10g db in Solaris 10 platform.
    recently when i tried logging in to my Applicn. i get the following error in its log:-
    *"sqociExec error: sqlcode=1552 message=ORA-01552: cannot use system rollback segment for non-system tablespace 'USERS'"*
    and my login fails.
    Am this apllicn. guy and don't know much about Oracle DB. Also i don't seem to have the comfort of DBA here so am hoping to receive help from
    you guys in here.
    i tried few tips which i picked from this forum but don't know what to do with its results...here they are..
    *1) "SELECT segment_name, tablespace_name, initial_extent, status from dba_rollback_segs;"*
    SEGMENT_NAME TABLESPACE_NAME INITIAL_EXTENT
    STATUS
    SYSTEM SYSTEM 114688
    ONLINE
    _SYSSMU1$                      UNDOTBS1                               131072
    ONLINE
    _SYSSMU2$                      UNDOTBS1                               131072
    ONLINE
    SEGMENT_NAME TABLESPACE_NAME INITIAL_EXTENT
    STATUS
    _SYSSMU3$                      UNDOTBS1                               131072
    ONLINE
    _SYSSMU4$                      UNDOTBS1                               131072
    ONLINE
    _SYSSMU5$                      UNDOTBS1                               131072
    ONLINE
    SEGMENT_NAME TABLESPACE_NAME INITIAL_EXTENT
    STATUS
    _SYSSMU6$                      UNDOTBS1                               131072
    ONLINE
    _SYSSMU7$                      UNDOTBS1                               131072
    ONLINE
    _SYSSMU8$                      UNDOTBS1                               131072
    ONLINE
    SEGMENT_NAME TABLESPACE_NAME INITIAL_EXTENT
    STATUS
    _SYSSMU9$                      UNDOTBS1                               131072
    ONLINE
    _SYSSMU10$                     UNDOTBS1                               131072
    ONLINE
    _SYSSMU11$                     UNDOTBS1                               131072
    OFFLINE
    SEGMENT_NAME TABLESPACE_NAME INITIAL_EXTENT
    STATUS
    _SYSSMU12$                     UNDOTBS1                               131072
    OFFLINE
    _SYSSMU13$                     UNDOTBS1                               131072
    OFFLINE
    _SYSSMU14$                     UNDOTBS1                               131072
    OFFLINE
    SEGMENT_NAME TABLESPACE_NAME INITIAL_EXTENT
    STATUS
    _SYSSMU15$                     UNDOTBS1                               131072
    OFFLINE
    _SYSSMU16$                     UNDOTBS1                               131072
    OFFLINE
    _SYSSMU17$                     UNDOTBS1                               131072
    OFFLINE
    18 rows selected.
    2)*"select name, value from v$parameter where name like '%undo%';"*
    NAME
    VALUE
    undo_management
    AUTO
    undo_tablespace
    UNDOTBS1
    undo_retention
    900
    What next????
    Guys Please help me out!!! i have to get the application running soon!!!
    please do give steps clearly bcoz am real newbie and the DB we are working on is a *"PRODUCTION"* one
    Thanks
    kris

    890466 wrote:
    @orawiss
    Sorry what precisely should i give in place of 'name' in
    *"ALTER ROLLBACK SEGMENT 'name' online."*
    In my case?
    thanks
    kris
    Edited by: 890466 on Oct 10, 2011 3:41 AMUndo tablespace names which status are offline shown in your query.

  • ORA-01445 error when creating a form on a view

    Hi,
    I am attempting to create a form on a view - the view is a simple select from three tables that are connected to each other via foreign key relationships. When I attempt to submit data via this form, I get the ORA_01445 error. The Oracle8i Error Documentation says that this error is caused when a SELECT statement attempted to select ROWIDs from a view derived from a join operation. Because the rows selected in the view do not correspond to underlying physical records, no ROWIDs can be returned. The solution is to remove ROWID from the view selection clause, then re-execute the statement.
    I did not include the rowid when I created my view so I went to look at the package that is generated by Portal to create the form. Sure enough, rowid was appended to the select statements.
    Are there any workarounds for this? Why is the rowid appended to the select statement? Do I need to build my view another way? We cannot use master-detail forms because the nature of the data does not allow it. We would like to be able to use just one form to update several tables.
    I read in an earlier post that forms cannot be created on views that have DISTINCT, AVG, COUNT, MAX, MIN, GROUP BY, HAVING, START WITH, or CONNECT BY. My view has none of these. It is just a simple select * from a, b, c.

    Melissa,
    This is the current limitation of the forms, we do not support non-updatable views, we expect to have the rowid available, if you want to access non-updatable views, please create a QBE report. If you think this is a very important feature, please file a bug.
    Thanks,
    Dmitry

  • Ora-06502 error while running a form

    Hi
    DECLARE
    pl_id PARAMLIST;
    begin
         PL_ID:=GET_PARAMETER_LIST('TMP');
         IF NOT ID_NULL(PL_ID) THEN
              DESTROY_PARAMETER_LIST('TMP');
         END IF;
         PL_ID:=CREATE_PARAMETER_LIST('TMP');
         ADD_PARAMETER(PL_ID,'PARAMFORM','TEXT_PARAMETER','NO');
         /*ADD_PARAMETER(PL_ID,'Y_N','TEXT_PARAMETER',:L_CHOICE);
         add_parameter(pl_id,'WHERE','TEXT_PARAMETER',:TI_WHERE);
         add_parameter(pl_id,'ORDERBY','TEXT_PARAMETER',:TI_ORDERBY);*/
         RUN_PRODUCT(REPORTS,'LEXUSE1.REP',SYNCHRONOUS, RUNTIME, FILESYSTEM, PL_ID, NULL);
         EXCEPTION
              WHEN OTHERS THEN
              MESSAGE(SQLERRM);
              MESSAGE(' ');
    END;
    i am using the above code on when-button-pressed trigger to call a report, but when i press the button i get an error message ORA-06502 PL/SQL Numeric or Value Error. dont know why

    Remove single quotes around TEXT_PARAMETER
    ADD_PARAMETER(PL_ID,'PARAMFORM',TEXT_PARAMETER,'NO');

  • ORA-04030 error on Oracle 10g R2 and Windows Server 2003

    We are getting this messege atleast once a day, using Oracle database 10g R2 with Oracle Developer 6i forms, we have to restart the service and then it works fine.... DB Server has 4GB RAM
    SGA 1.6 GB
    PGA 800 M

    Hi
    It is due to lack of memory or due to more put more work on server processes so try to increase memory or decrease the number of users
    Shafiulla

  • ORA-00020 and Ora-12519 error contineous in 10g Enterprise on Windows 2003

    Hello Experts,
    I have Oracle 10g installed on windows 2003 server (64 bit), No issue with Storage (1TB) x5450 @3 GHz and 16 GB RAM.
    DB size is approx. 9 GB.
    We are facing this isue again and again. We tried to restart DB and after some hours we see the same issue.
    I check the Processes and session on INIT<SID>.ora file and was confugured to 750 each. I also check the no. of Inactive process (thru SYS login) and it shows me 728-729. Nos. of backgroung processes are 20.
    Can some expert show me the path to get success on this issue asap? This is PRODUCTION server and we can not reboot as many times as we can (you understand) :-).
    maximum number of processes (%s) exceeded. HELP?????

    Thanks for the quick reply,
    Here is the output...
    MACHINE COUNT(*)
    JCLM-PSDATA-S1 19
    JCLMPS\JCLM-PSDATA-S1 1
    JCLM-psapp-s1 33
    JCLM-psapp-s2 19
    JCLM-psapp-s3 18
    JCLM-psapp-s4 19
    JCLM-psapp-s5 17
    JCLM-psapp-s6 17
    JCLM-psdata-s1 525
    JCLM-psrpt-s1 15
    JCLM-psrpt-s2 18
    MACHINE COUNT(*)
    JCLM-pstch-s1 6
    JCLM-pstch-s2 7
    JCLM-pstch-s3 25
    JCLM-pstch-s4 9
    15 rows selected.
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bi
    PL/SQL Release 10.2.0.3.0 - Production
    CORE 10.2.0.3.0 Production
    TNS for 64-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    Edited by: user1125897 on Sep 13, 2010 7:41 AM

  • Error on oracle database export ORA-04045 and ora-00600

    Hi
    I am getting following errors on database export
    EXP-00008: ORACLE error 4045 encountered
    ORA-04045: errors during recompilation/revalidation of CHEALTH1.oracle/gss/util/NLSLocale005
    ORA-00600: internal error code, arguments: [26599], [1], [225], [], [], [], [], []
    EXP-00000: Export terminated unsuccessfully
    we have recently run initxml.sql for XML after upgrading from 9.2.0.1.0 to 9.2.0.4.0
    any suggestions
    kedar

    Yes, you are in the wrong forum, but it sounds like you have your environment variable (or registry entry) for ORA_NLS33 pointing at the wrong directory.
    Steve

Maybe you are looking for

  • BP Upload of delivery plant: CRM 7.0 = ERP 6.0

    Hi Experts, we have downloaded customer master data and ERP Plants (DNL_PLANT) into the CRM. In future we need to create customers (sold-to) in CRM and distribute them into the ERP. Some ERP sales area data do not exist in the CRM data model. Among o

  • CD drive stopped working on my Satellite L

    Hi MY CD drive stopped working, but then it recognised a disc which I had inserted, but then stopped working again. I have deleted upper and low filters from device manager. I have also downloaded the dvd ram driver from toshiba and my cd drive then

  • Changing file type when syncing to iPhone?

    Hello, is there a way to change the music file type when syncing my computer with my iPhone? I would like to store music on my compter as Apple Lossless, but then sync it as AAC to the iPhone. Under the iTunes 10.5.3 Advanced tab, I see that I can se

  • Changes to printed doc layout not being saved (Robohelp 8)

    Whenever I make a change to the TOC in my printed document layout, (i.e., deleting a page or reorganizing the pages), the change is not saved.  I have to completely rebuild that chapter.  This worked fine in version 6, but is a consistent problem in

  • How to enable IE11 x64 browser in windows 8.1 domain user

    Hi all, I was trying to enable IE11x64 bit browser in windows 8.1x64 bit ent for domain users and i was unable to enable it. step 1: i enabled Enable enhanced Protection mode step 2:It will be 64bit, only when this feature is checked, otherwise IE wi