ORA-01041: internal error. hostdef doesn't exist

Linux Advanced Server + Oracle 9.2.0.1.0
Trying to sqlplus
conn / as sysdba
Error
ORA-01041: internal error. hostdef doesn't exist
What does it mean ? what I should do to be able to connect to the database.
TNSNAMES.ora seems fine
Linstener is up and running
Any ideas? Thanks

you might be installing the Softawre across the network and
after some time your connection get disconnected.
or you checkout the resouresc if you are doing in the server
putting cd on the server.

Similar Messages

  • ORA-01041: internal error. hostdef extension doesn't exist

    hi all,
    i am presently working on logical standby database
    but i am facing a problem from primary database
    " select * from V$ARCHIVE_DEST"
    LOG_ARCHIVE_DEST_1 valid
    LOG_ARCHIVE_DEST_2 ERROR ORA-01041: internal error. hostdef extension doesn't exist
    at present database not synchronizing
    please help
    in alert.log file at primary
    ARC9: Attempting destination LOG_ARCHIVE_DEST_2 network reconnect (1041)
    ARC9: Destination LOG_ARCHIVE_DEST_2 network reconnect abandoned
    PING[ARC9]: Error 1041 when pinging standby 'standby server'.
    Standby database is in running mode & well connected with network
    Vaibhav
    Edited by: Vaibhav Dixit on Oct 20, 2011 4:43 PM
    Edited by: Vaibhav Dixit on Oct 20, 2011 4:43 PM

    okkk
    thanks for reply
    i m also getting some problem in standby database in just 2-3 days
    error is ->
    ORA-03135: connection lost contact
    LOG_ARCHIVE_DEST_2 ERROR ORA-01041: internal error. hostdef extension doesn't exist
    then
    i have passed some command on primary db & now it's working but i don't know it's good for db or not
    ALTER SYSTEM SET log_archive_dest_state_2=’DEFER’ SCOPE=BOTH;
    ALTER SYSTEM SET log_archive_dest_state_2=’ENABLE’ SCOPE=BOTH;
    please give a idea to resolve this problem
    regards
    Vaibhav

  • FND-UT-CMT: ORA-01041: internal error. hostdef extension doesn't exist

    I am applying patch PO RUP 22, after merging patch->10207297,11669329,7632187,9878808. However for 1 file -INVITPSB.pls, i am getting status running, but in the adorker log file shows ->
    AD Worker error:
    The following ORACLE error:
    ORA-03114: not connected to ORACLE
    occurred while executing the SQL statement:
    UPDATE fnd_install_processes
    SET skip_flag = ''
    WHERE worker_id = 1
    Error comitting pending transactions and closing Pro*C connection.
    The error is:
    FND-UT-CMT: ORA-01041: internal error. hostdef extension doesn't exist
    AD Worker is exiting with failure.
    Any ideas of what can be done?

    HI,
    Please check if solution in below metalink note helps:-
    Patch 4143498 Fails With ORA-01041,ORA-03114 Errors On Iscrf70b.Pls ORA-01041 [ID 340238.1]
    Thanks,
    JD

  • ORA-01041: internal error. hostdef extension doesn't

    Hi,
    I am getting the followin error message when i am trying to run a sql script.
    select
    ERROR at line 1:
    ORA-01041: internal error. hostdef extension doesn't exist
    Pls let me know the remedy
    Thanks

    Hi !
    I try to create database by Database Configuration Assistant in "windows 2000 advance server, ORACLE9i". Process in 12% that error appear.
    when i Ignore this error the ORA-240324: Service handle not initialized appearance
    Please Help me to fix that error !

  • ERROR: ORA-01041: internal error. hostdef extension does not exist

    Hi, I got the following error message when I tried to insert a row in table TBL_ORDER.
    ERROR:
    ORA-01041: internal error. hostdef extension does not exist
    INSERT into TBL_ORDER
    ERROR at line 1:
    ORA-03113: end-of-file on communication channel
    We have Oracle version 8.1.5.o.2 and Linux version 6.1.
    Following are the tables, triggers, loadjava definition and source programs:
    TBL_ORDER
    1 ORDER_MEMBER_FIRM_ID VARCHAR2(4)
    2 ORDER_CLIENT_ID VARCHAR2(4)
    3 ORDER_BRANCH VARCHAR2(3)
    4 ORDER_SEQUENCE VARCHAR2(4)
    5 ORDER_EXCHANGE_ID VARCHAR2(3)
    6 ORDER_EXCHANGE_SEQUENCE VARCHAR2(7)
    7 ORDER_CREATE_DATE DATE
    8 ORDER_TYPE VARCHAR2(2)
    9 ORDER_STATUS VARCHAR2(1)
    10 ORDER_SYMBOL VARCHAR2(5)
    11 ORDER_SUFFIX VARCHAR2(14)
    12 ORDER_SIDE VARCHAR2(5)
    13 ORDER_PRICE VARCHAR2(20)
    14 ORDER_STOP_PRICE VARCHAR2(20)
    15 ORDER_PRICE_QUAL VARCHAR2(10)
    16 ORDER_QUANTITY VARCHAR2(6)
    17 ORDER_TIF VARCHAR2(4)
    18 ORDER_AON VARCHAR2(4)
    19 ORDER_DNR VARCHAR2(4)
    20 ORDER_CASH_NEXT_DAY VARCHAR2(4)
    21 ORDER_SELLER VARCHAR2(4)
    22 ORDER_ACCOUNT_TYPE VARCHAR2(4)
    23 ORDER_OS_TS VARCHAR2(4)
    24 ORDER_BOOTH_ID VARCHAR2(4)
    TBL_CMSOUT
    1 CMSOUT_MEMBER_FIRM_ID VARCHAR2(4)
    2 CMSOUT_CLIENT_ID VARCHAR2(4)
    3 CMSOUT_DATA VARCHAR2(120)
    trg_order.sql
    create or replace procedure OrderToCmsoutProc(cms_member_firm_id VARCHAR2,
    cms_client_id VARCHAR2,
    cms_branch VARCHAR2,
    cms_sequence VARCHAR2,
    cms_side VARCHAR2,
    cms_quantity VARCHAR2,
    cms_symbol VARCHAR2,
    cms_price VARCHAR2,
    cms_tif VARCHAR2,
    cms_type VARCHAR2)
    AUTHID CURRENT_USER
    as language java
    name 'OrderToCmsout.test(java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String)';
    show errors;
    create or replace trigger trg_order
    after insert on TBL_ORDER
    for each row
    CALL OrderToCmsoutProc (:new.order_member_firm_id,
    :new.order_client_id,
    :new.order_branch,
    :new.order_sequence,
    :new.order_side,
    :new.order_quantity,
    :new.order_symbol,
    :new.order_price,
    :new.order_tif,
    :new.order_type)
    commit;
    show errors;
    exit;
    trg_cmsout.sql
    create or replace procedure PackCmsoutSidProc(pck_member_firm_id VARCHAR2,
    pck_client_id VARCHAR2,
    pck_data VARCHAR2)
    AUTHID CURRENT_USER
    as language java
    name 'PackCmsoutSid.test(java.lang.String,
    java.lang.String,
    java.lang.String)';
    show errors;
    create or replace trigger trg_cmsout
    after insert on TBL_CMSOUT
    for each row
    CALL PackCmsoutSidProc (:new.cmsout_member_firm_id,
    :new.cmsout_client_id,
    :new.cmsout_data)
    commit;
    show errors;
    exit;
    loadORDERjava
    loadjava -r -f -o -user userid/pswd OrderToCmsout.java
    loadCMSOUTjava
    loadjava -r -f -o -user userid/pswd PackCmsoutSid.java
    OrderToCmsout.java
    import java.sql.*;
    import java.lang.*;
    import java.io.*;
    import oracle.jdbc.driver.*;
    public class OrderToCmsout {
    public static void main(String args[]) {
    try {
    test (args[0],args[1],args[2],args[3],args[4],
    args[5],args[6],args[7],args[8],args[9]);
    catch (Exception e) {
    System.err.println(e);
    } //catch
    } // end main
    public static void test ( String parm_member_firm_id,
    String parm_client_id,
    String parm_branch,
    String parm_sequence,
    String parm_side,
    String parm_quantity,
    String parm_symbol,
    String parm_price,
    String parm_tif,
    String parm_type)
    throws SQLException
    Connection conn = new OracleDriver().defaultConnection();
    PreparedStatement stmt2;
    try {
    stmt2= conn.prepareStatement
    ("INSERT INTO TBL_CMSOUT VALUES (?, ?, ?)");
    String datastring = parm_member_firm_id + "\\~" +
    parm_branch + " " +
    parm_sequence + "\\~" + "\\~" +
    parm_side + "\\~" +
    parm_quantity + " " +
    parm_symbol + " " +
    parm_price + "\\~" +
    parm_tif + " " +
    parm_type + "\\~";
    stmt2.setString(1, parm_member_firm_id);
    stmt2.setString(2, parm_client_id);
    stmt2.setString(3, datastring);
    stmt2.executeUpdate();
    stmt2.close();
    return;
    } //try
    catch (Exception e) {
    System.err.println(e);
    } //catch
    PackCmsoutSid.java
    import java.sql.*;
    import java.lang.*;
    import java.io.*;
    import oracle.jdbc.driver.*;
    public class PackCmsoutSid {
    public static void main(String args[]) {
    try { test(args[0],args[1],args[2]);
    catch (Exception e) {
    System.err.println(e);
    } //catch
    } // end main
    public static void test( String parm_member_firm_id,
    String parm_client_id,
    String parm_data)
    throws SQLException
    try {
    Connection conn = new OracleDriver().defaultConnection();
    PreparedStatement stmt1 = conn.prepareStatement
    ("SELECT sid_session_id " +
    "FROM tbl_sid " +
    "WHERE sid_member_firm_id = ? and " +
    "sid_client_id = ?");
    stmt1.setString(1, parm_member_firm_id);
    stmt1.setString(2, parm_client_id);
    ResultSet rs1 = stmt1.executeQuery();
    while (rs1.next ()) {
    String session_id_found = rs1.getString
    ("sid_session_id");
    CallableStatement pack_pipe = conn.prepareCall
    ("{call DBMS_PIPE.PACK_MESSAGE(?)}");
    pack_pipe.setString(1, parm_data);
    pack_pipe.execute();
    CallableStatement send_pipe = conn.prepareCall
    ("{? = call DBMS_PIPE.SEND_MESSAGE(?)}");
    send_pipe.registerOutParameter
    (1, java.sql.Types.INTEGER);
    send_pipe.setString (2, session_id_found);
    send_pipe.execute();
    } //while
    stmt1.close();
    conn.close();
    } //try
    catch (Exception e) {
    System.err.println(e);
    } //catch
    } //test
    } //PackCmsoutSid
    Thanks in advance for your help
    Vinicio

    you should post this question on the Application Server forum.
    --Olaf                                                                                                                                                                                       

  • ORA-01041: internal error. hostdef

    Hi
    I install oracle 9i
    I selected the options to install
    the Enterprise version with a General Purpose started database.
    The installation went through smoothly until it reached the final step of using
    the Oracle Database Configuration Assistant. The following are the 4 steps for
    this phase :
    1. Copying database files
    2. Initializing database
    3. Creating and Staring Oracle instance
    4. Completing Database Creation
    The installation completed the first 2 steps successfully. During the 3rd step, it
    gives the error message :
    ORA-01041: internal error. hostdef extension doesn't exist
    Any ideas on what could be causing this ?
    what should i do to resolve this error?
    Thanks

    From Oracle documentation
    "ORA-01041 internal error. hostdef extension doesn't exist
    Cause: Pointer to HSTDEF extension in HSTDEF is null.
    Action: Contact Oracle Support Services."

  • ORA-01041: internal error. hostdef extension doesn't exist  in forms 10g

    While Compiling the forms 10g I'm getting this error, pls help me on this problem.

    Check this link... ORA-01041: internal error. Hostdef extension doesn't exist
    hope this helps

  • ORA-01041: Internal Error. HOSTDEF extension does not exist

    Hi all,
    In the database I provided with the commando
    ALTER DATABASE BACKUP CONTROLFILE TO TRACE; a trace file with the Script for the production my controlfile. Now I would like to test this Script. I have install a new test DB. Then I shutdown the database and renamed the control files - to see particularly over, which error message become there indicated. Afterwards I wanted to start the Script from the trace file to create a control file. But after I STARTUP MOUNT; in SQL*Plus entered, I become these error messages:
    LRM-00109: could not open parameter file 'C:\Oracle\Ora920\DATABASE\INIT%ORACLE_SID%.ORA'
    ORA-01078: failure in processing system parameters
    How have I understood, Oracle tries to find the init file local on my machine. Those lies however on the server. Then I entered:
    startup pfile=\\server1\oracleserver\admin\orcltest\pfile\initorcltest.ora
    Can I enter a file, which does not lie locally on my computer with the instruction STARTUP pfile =...? After I made that, I become only this error message:
    ORA-01041 internal error. hostdef extension doesn't exist
    And the database is closed. I can't connect with it.
    Regards
    Leonid Pavlov

    As far as I know, if you want to start/stop Oracle through sqlplus you need to be using a copy of sqlplus on the server. If your server is an *NIX box, then you can telnet to the server and run sqlplus.  If your server is windows then you will need something like VNC, PC-Anywhere or sneakernet to physically attach to the server.
    HTH
    John

  • ORA.01041:internal error-- IN R12

    Hi All,
    While testing oracle seeded reports we are getting this error. As per the error i have checked in the PL/SQL code, i found that no views are existed in the R12 which are existed in 11i.
    EX..
    AR_CUSTOMERS_V -- existing view in Oracle 11i
    AR_CUSTOMERS -- existing view in Oracle R12
    Could any one suggest me how i can achieve this issue.
    Thanks,
    RED.

    There is no such a document which shows tables mapping between 11i and R12. However, to determine the difference between 11i and R12, you can refer to eTRM and the Content Document manuals, both should be helpful.
    Applications Electronic Technical Reference Manuals (eTRM)
    http://etrm.oracle.com
    Note: 404152.1 - E-Business Suite Release 12: Release Content Documents
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=404152.1

  • ORA-00600: internal error code while drop package !

    Friends ,
    I am using oracle 10g in Oracle Ent Linux 5.0 . Now I want to drop a  user , when I give the 'drop user' command I got the below error :
    SQL> drop user user cascade;
    drop user user cascade
    ERROR at line 1:
    ORA-00600: internal error code, arguments: [psdtyfnd_with_suffix], [], [], [],
    Then I try to manually drop all the object of the specified schema . All objects are dropped except a 'PACKAGE' . When I manually drop that PACKAGE
    again then I found the above error again . Now I am sure that  this 'package' is the main culprit .
    Now would anyone please help me how I drop this package manually  ? 

    Hi,
    Glad to know that its solved.
    The cause of this issue is not known. It is believed that importing into a database where these pipelined functions already exist may be the cause, but testing has failed to reproduce the problem.
    In one of the bugs logged for a similar issue,  problem will normally happen only on upgrade and not under regular running of the DB. Therefore, it should be of relatively low impact to the real users. Also, Upgrading to 11g you shouldn't encounter this problem.
    Regards,
    Suntrupth

  • ORA-00600: internal error code while inserting data in table

    hi gems..
    i am getting the below error while inserting data in a table...
    *ORA-00600: internal error code, arguments: [kqd-objerror$ ] , , [0], [98], [BIN$sm1O+fYhF1jgRAAhKNYyZA==$0], [], [], [], [], [], [], []*
    i can select the table absolutely but cant insert datas(but this is the schema owner and so datas should get inserted)
    i have checked the alert.log...the entries in last few lines are like this:
    <msg time='2011-11-25T03:08:55.763+05:30' org_id='oracle' comp_id='clients'
    type='UNKNOWN' level='16' host_id='ICS167DOR'
    host_addr='10.184.134.139'>
    <txt>Directory does not exist for read/write [oracle/ora11g/app/ora11g/product/11.2.0/dbhome_1/log] [oracle/ora11g/app/ora11g/product/11.2.0/dbhome_1/log/diag/clients]
    </txt>
    </msg>
    please help...thanks in advance
    Edited by: user12780416 on Nov 25, 2011 3:29 AM

    hi...
    finally i got the solution...i know that this problem may occur due to some other reasons also for different users...but the problem which caused the developers facing the error in this case is below:
    they faced the error while importing the dumps in the server. at the same time the application developers told that they can select the tables but cannot insert any datas.
    after listenning to this, i assumed that this may be a space problem with the system tablespace as it is responsible for storing the data dictionary.
    i asked for the free spaces for the system tablespace and got the reason. It has only 0.2% left.
    i told them to issue the resize command for the system01.dbf datafile(allocated 2GB more) and the problem got resolved.
    Hope this helps..thanks

  • ORA-00600: internal error code While trying to view cube

    While trying to view cube, i encounter the following error
    oracle.dss.dataSource.common.QueryRuntimeException: BIB-9509 Oracle OLAP did not create cursor.
    oracle.express.idl.util.OlapiException: java.sql.SQLException: ORA-00600: internal error code, arguments: [xsLMapCrtAddPhrase01], [], [], [], [], [], [], [], [], [], [], []
    ORA-06512: at "SYS.GENDEFINITIONMANAGERINTERFACE", line 42
    ORA-06512: at line 1
    oracle.dss.dataSource.common.OLAPException: BIB-9509 Oracle OLAP did not create cursor.
    oracle.express.idl.util.OlapiException: java.sql.SQLException: ORA-00600: internal error code, arguments: [xsLMapCrtAddPhrase01], [], [], [], [], [], [], [], [], [], [], []
    ORA-06512: at "SYS.GENDEFINITIONMANAGERINTERFACE", line 42
    ORA-06512: at line 1
    oracle.express.idl.util.OlapiException: java.sql.SQLException: ORA-00600: internal error code, arguments: [xsLMapCrtAddPhrase01], [], [], [], [], [], [], [], [], [], [], []
    ORA-06512: at "SYS.GENDEFINITIONMANAGERINTERFACE", line 42
    ORA-06512: at line 1
    at oracle.dss.dataSource.common.QueryDataDirector.addDataDirectorListener(QueryDataDirector.java:795)
    at oracle.dss.dataView.ModelAdapter.setDataDirector(ModelAdapter.java:173)
    at oracle.dss.crosstab.CrosstabModelAdapter.setDataSource(CrosstabModelAdapter.java:54)
    at oracle.dss.dataView.Dataview.setDataSource(Dataview.java:396)
    at oracle.olap.awm.dataobject.dialog.olapi.UBiBeanUtil.getCrosstab(Unknown Source)
    at oracle.olap.awm.dataobject.dialog.olapi.UBiBeanUtil.showCrosstab(Unknown Source)
    at oracle.olap.awm.dataobject.dialog.olapi.UBiBeanUtil.showData(Unknown Source)
    at oracle.olap.awm.navigator.node.olapi.UCubeNode.actionPerformed(Unknown Source)
    at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
    at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
    at javax.swing.AbstractButton.doClick(Unknown Source)
    at javax.swing.plaf.basic.BasicMenuItemUI.doClick(Unknown Source)
    at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(Unknown Source)
    at java.awt.Component.processMouseEvent(Unknown Source)
    at javax.swing.JComponent.processMouseEvent(Unknown Source)
    at java.awt.Component.processEvent(Unknown Source)
    at java.awt.Container.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Window.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)
    This is with a simple cube with only one dimension. i had created the same cube earlier with 10 dimensions but same error occurred. i felt it had to do with my setup of the cube. I have recreated the cube a couple of times with different names but same error exists. interestingly all dimensions are viewable after maintenance.
    I am begining to doubt the efficacy of AWM + oracle OLAP in use for a production environment. i have been at this for quite some time but no solution yet. please i would appreciate anyhelp

    Have you ever had any cube working in this environment? yes. i had created multiple versions of the same cube with fewer dimensions. I had created a cube (USAGE) with 5 dimensions, it worked. I later created same cube with 10 dimensions, that was the Genesis of the error. i had exported the eif file, deleted the awm, reimpored the awm, same errors. recreated the cube same error. i even tried recreating the cube wih one dimension but the same error persists.
    database is Release 11.1.0.7.0
    AWM standalone client :awm11.1.0.7.0B

  • ORA-00600: internal error code, arguments: [kqlidp0:no user], [258], [], []

    Hi,
    Does anyone has solution to the below problem
    ORA-00600: internal error code, arguments: [kqlidp0:no user], [258], [], []
    Thanks and Regards

    That we have already researched earlier but we are trying to find out exact solution as per second argument ...is taken. Because for first argument a bug already exists and it is resolved if we apply the interim patch .What is the bug/patch number you are referring to?
    Tell me one thing ...
    if an ORA -600 error has ORA-00600: internal error code, arguments: [kqlidp0:no user], [258], [], []
    and the patch is available for ORA-00600: internal error code, arguments: [kqlidp0:no user], [1292], [], []
    Can we apply that RDBMS server patch for 11.1.0.7 database...Yes.
    Thanks,
    Hussein

  • ORA-00600: internal error code, arguments: [kokvxsql1], [], [], [], [], []

    Hi all,
    I'm getting Oracle internal error:
    "ORA-00600: internal error code, arguments: [kokvxsql1], [], [], [], [], [], [],[]"
    when I'm trying to drop a user from my DB. The tablespace related to the user is getting dropped easily whereas the user itself is not getting dropped. I'm getting the following errors alternatingly when trying to drop the user:
    ORA-00600: internal error code, arguments: [kokvxsql1], [], [], [], [], [], [],[]
    ORA: internal error code arguments [4814][5][0][0][][][][]
    ORA: 04043 Object :<object_name(OBJECT_TYPE='TYPE')> does not exist.
    I'm trying to refresh the schema and so have to drop the schema and the tablespace. The tablespace has no problems in getting dropped but the user has. :-(..
    please help ASAP.
    Thanks a lot in advance for any suggestions/solutions.
    Ananthram

    Hi Ulfet,
    Thanks for the reply,
    My Oracle version is 9i and not 10 g. Here is more precise information for you.
    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    PL/SQL Release 9.2.0.1.0 - Production
    CORE     9.2.0.1.0     Production
    TNS for 32-bit Windows: Version 9.2.0.1.0 - Production
    NLSRTL Version 9.2.0.1.0 - Production
    Thanks in advance for any clarities you provide. :-)

  • ORA-00600: internal error code, arguments: [qcsfbdnp:1], [], [], [], [], []

    Hi All,
    When i try to execute the following query i am getting the error
    ORA-00600: internal error code, arguments: [], [], [], [], [], [], [], []
    and in the alert log file the error is
    ORA-00600: internal error code, arguments: [qcsfbdnp:1], [], [], [], [], [], [], []
    so please tell me the workaround to get rid of this. (db version:9.2.0.1,os:win 2000 Prof.)
    Thankyou.
    The query follows:
    SELECT CI_SEVERITY, CI_STATUS, CI_CLASSIFICATION, CI_ID, CI_DESCRIPTION, CI_SUBMITTED_BY,
    CI_ASSIGNED_TO_PRS, CI_ASSIGNED_TO_GROUP, TO_CHAR(CI_RAISED_DATE,'dd-Mon-yyyy hh24:mi:ss') AS RAISED_DATE ,
    TO_CHAR(CI_TARGET_DATE,'dd-Mon-yyyy hh24:mi:ss') AS TARGET_DATE,
    TO_CHAR(CI_LAST_UPDATE,'dd-Mon-yyyy hh24:mi:ss') AS LAST_UPDATE , CI_SK, CI_TITLE,
    CI_TIMES_ESCALATED,CI_EXTERNAL_SYS_REF,CODC.CODC_CONFIDENTIAL,Fn_get_Iss_Config_item(CI_SK,';') AS CONFIG_ITEM,
    CI_RAISED_DATE AS CI_RAISED_DATE,CI_TARGET_DATE AS CI_TARGET_DATE, CI_LAST_UPDATE AS CI_LAST_UPDATE,
    CI_DATE_MODIFIED FROM vu_pma_issues VU_ISSUE,PMA_COD_ITEM_CLASSIFICATIONS CODC
    WHERE CODC.CODC_SK=CI_CODC_SK AND (CI_SK IN
    (SELECT DL_CI_SK FROM PMA_DELEGATIONS WHERE DL_PRS_SK =1522
                   AND DL_WORKED_UPON = 'N' AND DL_DELEGATION_TYPE IS NULL
                        AND VU_ISSUE.CI_STATUS <> 'DRAFT' AND DL_COMPANY_ID ='HTC')
                        OR CI_SK IN (SELECT DL_CI_SK FROM PMA_DELEGATIONS WHERE DL_PRS_SK =1522
                             AND DL_WORKED_UPON = 'N' AND DL_DELEGATION_TYPE = 'FRI'
                             AND VU_ISSUE.CI_STATUS <> 'DRAFT' AND DL_COMPANY_ID ='HTC')
                        OR CI_SK IN ( SELECT DL_CI_SK FROM PMA_DELEGATIONS WHERE DL_PRSG_SK IN
                                       (SELECT PPGR_PRSG_SK FROM PMA_PRS_PERSON_GROUPS WHERE PPGR_PRS_SK =1522
                                            AND PPGR_COMPANY_ID ='HTC') AND DL_DELEGATION_TYPE IS NULL
                                            AND VU_ISSUE.CI_STATUS <> 'DRAFT' AND DL_COMPANY_ID ='HTC')
                        OR CI_PRS_SK_RAISED_BY =1522
                        OR ci_codc_sk IN ( SELECT CODC.codc_sk FROM PMA_COD_ITEM_CLASSIFICATIONS CODC
                             WHERE CODC.codc_sk = DECODE ('N', 'Y', '1', CODC.codc_sk)
                                  START WITH CODC.codc_sk IN (SELECT cirl_codc_sk FROM PMA_CI_CLASSIFICATION_ROLES
                                                 WHERE cirl_codc_sk IN (SELECT CODC.codc_sk FROM PMA_COD_ITEM_CLASSIFICATIONS CODC START WITH CODC.codc_sk = 1
                                                 CONNECT BY PRIOR CODC.codc_sk= CODC.codc_sk_ref)
                                                 AND cirl_category = 'V' AND cirl_pj_sk IS NOT NULL
                                                 AND cirl_ro_sk IN (SELECT rosr_ro_sk FROM PMA_ROLE_SECURITY_ROLES
                                                                WHERE rosr_sr_sk IN (SELECT ur_sr_sk FROM PMA_USER_ROLES
                                                                               WHERE ur_prs_sk =1522 AND ur_sk IN
                                                                               (SELECT up_ur_sk FROM PMA_USER_PROJECTS WHERE up_pj_sk = cirl_pj_sk)))
    UNION SELECT cirl_codc_sk FROM PMA_CI_CLASSIFICATION_ROLES
    WHERE EXISTS (SELECT 'x' FROM PMA_COD_ITEM_CLASSIFICATIONS CODC
                        START WITH CODC.codc_sk = 1 CONNECT BY PRIOR CODC.codc_sk = CODC.codc_sk_ref
                        AND CODC.codc_sk = cirl_codc_sk)
                   AND cirl_category = 'V' AND (cirl_pj_sk IS NULL)
                   AND cirl_ro_sk IN (SELECT rosr_ro_sk FROM PMA_ROLE_SECURITY_ROLES
                   WHERE rosr_sr_sk IN (SELECT ur_sr_sk FROM PMA_USER_ROLES WHERE ur_prs_sk =1522)))
                                       CONNECT BY PRIOR CODC.codc_sk = CODC.codc_sk_ref)
                                       AND VU_ISSUE.CI_STATUS <> 'DRAFT' )
                                       ORDER BY CI_RAISED_DATE DESC;
    ERROR at line 8:
    ORA-00600: internal error code, arguments: [], [], [], [], [], [], [], []

    It seems the bug 2104392:" A query with nested CONNECT BY blocks and binds
    in the START WITH clause or the FROM clause may fail with ORA-600 [QCSFBDNP:1]". You can find more information about this on Note:2104392.8 on Metalink. It is resolved on 9.2.0.2.
    Adi

Maybe you are looking for

  • Photoshop gives, Program Error, when attempting to use blending options in RGB

    This problem started today when i tryed to throw a drop shadow on a layer. in RGB mode.  "Program Error," appeared and would not let me access any Blending options.  Although, in cmyk mode it works perfectly fine.  Was some hotkey hit on accident or

  • How to insert new record in ALV GRID?

    Hi all,    I am displaying ztable data into grid format using method  SET_TABLE_FOR_FIRST_DISPLAY of Class CL_GUI_ALV_GRID using OOPS concept.now i want to insert a new record into ALV grid? If anyone has tried then please tell me? Thanks and Regards

  • Does 10.6.8 support HP Photosmart D7260

    My iMac recently stopped working with my HP Photosmart D7260 printer.  (Cannot honestly remember if this was linked to a software upgrade, but is definitely not linked to the initial upgrade to Mac OS X 10.6.8 which was loaded a long time ago.) The p

  • Struts-JSP with custom field rendering

    If I have an ADF/JSP in a struts framework and I have built some data pages with a default set of entity attributes being displayed, is there any JSTL/struts tags that can let the application at runtime decide if a column/field should be displayed? k

  • Services to be available as header

    hi        i have a scenario , where in  i need Services related      to  MSS -> TEAM   as part of the header.      i have copied the standard MSS to the folder i have created     then  when i click on the MSS  , can get TEAM workset        and when i