This query worked, then it didn't with ORA-00600

select decode (level, -1, -1, -1) initial_level,
level node_depth,
decode (level, 0, parent_id, child_id)||' '||rule_desc node_label,
'expand' node_icon,
child_id node_data,
parent_id node_parent
from rule_tree, rule_master
where rm_id = child_id
start with nvl(parent_id,' ') = 'MASTER'
connect by parent_id = prior child_id
select decode (level, -1, -1, -1) initial_level,
ERROR at line 1:
ORA-00600: internal error code, arguments: [12406], [], [], [], [], [], [], []
Anyone know why this code once worked but now doesn't and what does the error mean?

http://download.oracle.com/docs/cd/B19306_01/server.102/b14219/e0.htm#sthref371
http://forums.oracle.com/forums/search.jspa?threadID=&q=ORA-00600%3A+internal+error+code&objID=c84&dateRange=all&userID=&numResults=15&rankBy=10001

Similar Messages

  • How does this query work?

      UPDATE medfileinfo mf
          SET total_tap_count = total_tap_count-
                                   (SELECT   COUNT (1)
                                        FROM rating_temp rt
                                       WHERE ( ( ( (calledcallzone IS NULL) OR (callingcallzone IS NULL))  AND calltype = 0)   OR (charges_inr IS NULL))
                                       AND rt.fileid=mf.fileid
        WHERE EXISTS (SELECT   COUNT (1)
                                        FROM rating_temp rt
                                        WHERE ( ( ( (calledcallzone IS NULL) OR (callingcallzone IS NULL))  AND calltype = 0)   OR (charges_inr IS NULL))
                                       AND rt.fileid=mf.fileid)
          AND chargedamount=0;

    After the question has solved on HOW this works. I guess you have a issue with this? Performance?
    This query will tell you what it will do:
    SELECT mf.fileid,mf.total_tap_count,rt.cnt,
    mf.total_tap_count-rt.cnt new_total_tap_count
    FROM
         medfileinfo mf 
        INNER JOIN (SELECT fileid,count(*) cnt FROM rating_temp
                            WHERE  ( ( ( (calledcallzone IS NULL) OR (callingcallzone IS NULL))  AND calltype = 0)   OR (charges_inr IS NULL))
                                GROUP BY fileid ) rt
         ON rt.fileid=mf.fileid)
    WHERE chargedamount=0;And if you want to get rid of subselects use MERGE like this:
    MERGE medfileinfo target
    USING
    (SELECT mf.fileid,mf.total_tap_count,rt.cnt,
    mf.total_tap_count-rt.cnt new_total_tap_count
    FROM
         medfileinfo mf 
        INNER JOIN (SELECT fileid,count(*) cnt FROM rating_temp
                            WHERE  ( ( ( (calledcallzone IS NULL) OR (callingcallzone IS NULL))  AND calltype = 0)   OR (charges_inr IS NULL))
                                GROUP BY fileid ) rt
         ON rt.fileid=mf.fileid) source
    ON (target.fileid = source.fileid
       and target.chargedamount=0)
      WHEN MATCHED THEN UPDATE
         SET total_tap_count = source.new_total_tap_count;

  • Why is this query working??

    According to the rules of GROUP BY statement, this query shoun't work
    SELECT e.secction_id,
    COUNT(*) AS num,
    (SELECT s.capacity FROM section S WHERE E.section_id=S.section_id ) capacity
    FROM enrollment e
    GROUP BY e.section_id
    The column capacity is obtained from a correlated subquery, it is not a group function. I made this query , it gives correct results, but after a while i recognized that it doesn't follow the rules of group by statements.
    Thanks in advance.
    Edited by: chg78 on 16-mar-2011 2:11
    Edited by: chg78 on 16-mar-2011 2:11

    chg78 wrote:
    SELECT e.secction_id,
    COUNT(*) AS num,
    (SELECT s.capacity FROM section S WHERE E.section_id=S.section_id ) capacity
    FROM enrollment e
    GROUP BY e.section_idThe column capacity is obtained from a correlated subquery, it is not a group function. I made this query , it gives correct results, but after a while i recognized that it doesn't follow the rules of group by statements.The query fetching collumn capacity is executed for each row of the outer query. So this is a ugly but valid statement.
    bye
    TPD

  • My lovely complicated SQL crashes with ORA-00600: internal[qerpfAllocateX2]

    ORACLE 9201
    Hi all
    I wrote a nice query to look for combinations of transactions using a "connect by prior" to arrange a half-cartesian join, then look for all connected paths that were a certain depth and whose nodes added up to a certain value. It works great and has tested out fine in the debug runs I've given it, but it is falling over in live with the following weird error:
    ORA-00600: internal error code, arguments: [qerpfAllocateX2], [4038], [4028], [], [], [], [], []
    I was originally getting this and I solved it during debug, using a WITH statement rather than twice doing a nested select on my source table.. I double checked and I'm using the WITH verison (in PL/SQL)
    What I dont get, is I can run it straight from e.g. Visual Studio just fine, but when my PL/SQL code calls into the function, it all falls apart with this error. Is there anything I can do to help investigate the cause or to fix?
    The original thread, where you guys helped me write the SQL, is: Re: A little help writing an SQL please? May need some advanced functionality..
    Regards
    cj
    Edited by: charred on Sep 15, 2008 8:05 AM

    If you are running on 9i this could be as a result of a known database bug.
    "A query may fail with ORA-600[qerpfAllocateX2] when the prefetch size exceeds the sort buffersize."
    Bug: 2277191
    Fixed in 10g or > v9202
    With most ORA-600 errors, the only solution available is to contact Oracle Support or try and re-write the query to use different access methods (plans).
    Christopher Soza
    Oracle BI DBA
    Orix Consultancy Services Ltd
    http://sozaman.blogspot.com

  • Ora-12801 with ora - 00600 urgent

    Hi dear
    I just migrate my dataabse from oracle 8.1.7.4 to oracle 10g release 2
    i m getting the error
    ORA-12801: error signaled in parallel query server P000
    ORA-00600: internal error code, arguments: [xtycsr3], [], [], [], [], [], [], []
    when i save the new record it's work fine but when i save the record the modify mode it give the above error
    i m using form 6i
    O/s win 2000 server
    Kindly suggest the solution urgently i m on production database
    Regards
    Tarun Mittal

    Symptoms:
    Internal Error may occur (ORA-600)
    ORA-600 [xtycsr3]
    Related To:
    Parallel Query (PQO)
    Description
    Select with GROUP BY may result in ORA-600[xtycsr3]
    on a parallel slave process, if select list contains
    a PLSQL function call on aggregation operators.
    Eg:
    SELECT 1, b.x, xty_func( max(1),SUM(100))
    FROM xty b
    GROUP BY 1, b.x;
    The full bug text (if published) can be seen at Bug 2459355
    This link will not work for UNPUBLISHED bugs.

  • Ora_m000 consuming 100% cpu with ORA-00600 [kcbz_check_objd_typ_3], [0]

    Hello,
    I have been trying to troubleshoot high cpu usage in our Ebiz R12 environment where cpu is running 100% by ora_m000 process and I see ORA-00600 in alert log.
    I have tried work around from metalink note 466049.1 and even applied fixed for patch 4430244, 5752105 but it hasn't fixed the issue.
    Before going through opening a ticket with support, I thought try my luck here. I'd really appreciate any suggestions to fix this problem.
    content of trace file.
    *** KEWROCISTMTEXEC - encountered error: (ORA-00600: internal error code, arguments: [kcbz_check_objd_typ_3], [0], [0], [1], [], [], [], [])
    *** SQLSTR: total-len=176, dump-len=176,
    STR={insert into wrh$_sysstat   (snap_id, dbid, instance_number, stat_id, value)  select    :snap_id, :dbid, :instance_number, stat_id, value  from    v$sysstat  order by    stat_id}
    *** KEWRAFM1: Error=13509 encountered by kewrfteh

    What's your database version in four decimal places?
    ORA-600 is Oracle internal error you need to work with Oracle support to fix the problem.
    Also use "Troubleshoot an ORA-600 or ORA-7445 Error Using the Error Lookup Tool"
    The lookup tool will show you the known bug related to the error message.

  • Export terminated with ORA-00600: internal error code, arguments: [kcfrbd_1

    when i am taking an export of a particular table , i got following message. please help
    ORA-00600: internal error code, arguments: [kcfrbd_1], [0], [400], [], [], [], [], []
    Export terminated successfully with warnings.

    with out a versioninfo it's not possible tomgive appropiate information. Anyway, an ORA-00600 is almost certainly a job for the oracle support.
    And lastly, the right forum for this question would be a database forum, maybe the Database-General-forum.

  • Netflix viewed perfect for over a month, then it didn't with this error msge: Invalid URL The requested URL "/home", is invalid. Reference #9.9d0bc841.1320231048.92bcc44 --What's up with this now?

    Been watching Netflix on my Verizon HP Notebook, it's less than 3mo old. runs windows xp...pretty standard stuff. Anyway tried to login to netflix and Firefox gave this error message--Invalid URL
    The requested URL "/home", is invalid. Reference #9.9d0bc841.1320231048.92bcc44 -- I called Netflix & there system running perfectly. My pc running perfectly as well. Logged into netflix using IE--worked just fine. So by process of elimination, it's Firefox's Problem! I have NO CLUE about it, never seen it before on ANY browser. Tried opening & closing FFx, restarting puter, etc...Don't know what else to tell you except Firefox works on every other website now EXCEPT NETFLIX, it's the darnedest (I know that's not a word LOL) I've seen--it happened 10/2/11 @ about 3am!

    As I understand:
    The procedure works.
    The link 'appears' to work. (ie you saw the procedure run a 2nd at the database level)
    But it doesn't actually work (because you get a 404)
    I think I ran into an issue, on a completely different page type, that produced an 'error 404'. (I can't seem to reproduce it, though)
    The only way I discovered what was really going on was with an HTTP sniffer. (eg HTTPFox for FireFox)
    Through that, I noticed that the browser was (for some reason) calling a completely non-sensible APEX page. (hence the PAGE NOT FOUND error)
    My solution was to add a "submit to self" branch point.
    If that doesn't work, I'm at a loss.
    MK

  • Wireless network worked, then it didn't

    I set up my two iMac's and one MacBook Pro (all C2D) on a Verizon DSL network using a Model 327W Verizon modem/router. It was plug-and-play. Everything worked perfectly -- wireless included -- the moment I plugged it in.
    Now the only computer that works wirelessly is the one I set the modem/router up on. Is this a MAC address issue? My Airport is giving me the following message in the Network Status: "AirPort is connected to the network XXX. AirPort does not have an IP adress and cannot connect to the internet."
    I added the AirPort addresses for each iMac into the router set up and gave them "permission" to gain access to the wireless network and that didn't work.
    Caveats:
    Both of the other computers (the ones that no longer connect to the network wirelessly) connect to the modem and the internet when I plug the ethernet cable into them.
    When I manually configure the IP Address, Subnet Mask and Router to match the settings of the computer that does wirelessly connect, I get a GREEN light from my AirPort along with the following message: "AirPort is connected to the network XXX. You are connected to the internet via AirPort."
    No, I'm not. Even though it says that, I still can't access the internet -- which makes me think it may be a firewall issue.
    Help! I've got all my office computers connected to the network with ethernet cables until I get this resolved!
    Thanks!
    Doug
    iMac 2.16 GHz C2D Mac OS X (10.4.9)
    iMac 2.16 GHz C2D Mac OS X (10.4.9)
    iMac 2.16 GHz C2D   Mac OS X (10.4.9)   MacBook Pro 2.16

    Geoff93 wrote:
    I think imjolly meant un-installing it not installing it - its a useful coaster,... etc
    thanks Geoff93 just trying from HTC and almost got spelling correct 
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Does this query work on your DB?

    I'm on 9.2.0.4. The following query fails because it can't see the u.username column of the inner-inner query. But if I un-nest it by one level it works fine. It's as if the inline view hides the column names of the outermost query.
    Is it supposed to work this way, or have I hit a bug?
    If it works on your installation, could you please tell me your version number? Thanks.
    SELECT u.username
         ,(SELECT object_name
           FROM (SELECT o.object_name
                 FROM   all_objects o
                 WHERE  o.owner = u.username
                 ORDER BY o.object_id DESC)
           WHERE rownum = 1
          )  greatest_object_id
    FROM   all_users u
    ERROR at line 5:
    ORA-00904: "U"."USERNAME": invalid identifier
    SELECT u.username
         ,(SELECT count(*)
           FROM   all_objects o
           WHERE  o.owner = u.username) object_count
    FROM   all_users u
    USERNAME    OBJECT_COUNT
    SYS                 2851
    SYSTEM                31
    HANSENE               15
    ...

    I tested in 9.2.0.6 and didn't work either. I think it should work... can be a bug, not sure. An alternate way is:
    select
    u.username,
    (select o.object_name from all_objects o where o.owner = u.username and o.object_id = (select max(m.object_id) from all_objects m where m.owner = o.owner)) greatest_object_id
    from
    all_users u;

  • Will this query work?

    Email id in one of my tables A is stored in the format -- email://[email protected]
    If I want this to get displayed as just [email protected] where X is any address and its value is varying for eg -- [email protected] or [email protected] etc
    Can I give my query like this?
    insert into A values(select trim(substr(email,1,9)); -- I am trying to trim email://
    Will trim(substr) work?
    Please advise

    user6440749 wrote:
    Email id in one of my tables A is stored in the format -- email://[email protected]
    If I want this to get displayed as just [email protected] where X is any address and its value is varying for eg -- [email protected] or [email protected] etc
    Can I give my query like this?
    insert into A values(select trim(substr(email,1,9)); -- I am trying to trim email://
    Will trim(substr) work?
    Please adviseYou are on the right track. Just that you need to change the substr function a little bit.
    You just need to remove the email:// (8 characters) and get the string from 9th character. So, it would be something like
    insert into A values(select trim(substr(email,9))); -Arun

  • Can this query work?

    I'm having trouble with a query because I need the Count results in the query below to refer only to the current column of the SQL Report:
    select T1.id,
    T1.name,
    (select count(*) from T1 where typeid = 222
    AND id = # T1.id#) "COUNT 1",
    (select count(*) from T1 where typeid = 262
    AND id = # T1.id#) "COUNT 2"
    from T1
    order by T1.name
    Is this possible to do? If I substitute an actual ID instead of the #T1.id#, it returns the results that I want.
    Thanks much,
    Nora

    Try this -
    select
      a.id,
      a.name,
      (select count(*) from t1 b where b.typeid = 222 and b.id = a.id) 'COUNT 1',
      (select count(*) from t1 b where b.typeid = 262 and b.id = a.id) 'COUNT 2',
    from
      t1 a
    order by a.nameWithout more details about what you're trying to achieve it's hard to suggest (better) alternatives

  • It worked then it didn't

    Hi, I installed the airport express and at first it work fine.
    Then I ran the software update that was released in May. It has not worked since.
    The light flashes amber and the device can no longer be picked up when scanning.
    Help please?

    The upgrade itself is buggy.
    What many did to solve to problem was a combination of reverse to the 7.3.0, factory resets, and base station restarts. The finally, upgraded to 7.3.1 again.
    There is no magic formula.

  • This query works in TOAD but not in forms 6i,

    Hi,
    It shows error identifier 'ATTRIBUTES' must be declared. what is this error about ?
    BEGIN
    select distinct B.TEXT into v_lbl
    from
    SAMS S, TABLE(ATTRIBUTES) A, TABLE(ATTRIBUTES) B, LOCATIONS LS
    where
    S.ID = :P_ ID and
    A.NAME = 'DISL' and
    B.NAME='BL'
    SL.ID(+) = S.ID and
    SL.STAT(+) = 'HIGH' ;
    return(v_lbl);
    END;
    Thanks
    Bcj

    returning valueswhat values? 1 or more?
    when i compile it shows the errorwhat's the error?

  • Why doesnt this query work on CF when it works fine on MYSQL?

    Topic says it all. I can run this through mysql console and
    get the result i need but when i place it inside a cfquery it wont
    process.
    SET @saldo=20000;
    SELECT
    IF(co.transtipo=0,@saldo:[email protected],@saldo:=@saldo+t.transmonto),
    @saldo:[email protected],
    t.transid,
    t.cuentaid,
    t.operacionid,
    t.fechatrans,
    t.voucher,
    t.cheque,
    t.transtitular,
    t.transmonto,
    t.transdetalle,
    t.modificado,
    co.transtipo,
    co.operacion
    FROM cuentastrans t
    LEFT JOIN cuentasoperacion co ON
    t.operacionid=co.operacionid
    WHERE t.cuentaid= 7
    ORDER BY t.fechatrans ASC

    Thank you for the info, here is my robust:
    [Table (rows 30 columns
    IF(CO.TRANSTIPO=0,@SALDO:[email protected],@SALDO=@SALDO+T.TRANSMONTO),
    TRANSID, CUENTAID, OPERACIONID, FECHATRANS, VOUCHER, CHEQUE,
    TRANSTITULAR, TRANSMONTO, TRANSDETALLE, MODIFICADO, TRANSTIPO,
    OPERACION):
    [IF(CO.TRANSTIPO=0,@SALDO:[email protected],@SALDO=@SALDO+T.TRANSMONTO):
    coldfusion.sql.QueryColumn@fc48ce] [TRANSID:
    coldfusion.sql.QueryColumn@10fdc46] [CUENTAID:
    coldfusion.sql.QueryColumn@469b16] [OPERACIONID:
    coldfusion.sql.QueryColumn@16fcbc0] [FECHATRANS:
    coldfusion.sql.QueryColumn@a9be7a] [VOUCHER:
    coldfusion.sql.QueryColumn@184a49] [CHEQUE:
    coldfusion.sql.QueryColumn@b525a6] [TRANSTITULAR:
    coldfusion.sql.QueryColumn@badda8] [TRANSMONTO:
    coldfusion.sql.QueryColumn@2e6d14] [TRANSDETALLE:
    coldfusion.sql.QueryColumn@1fb3f37] [MODIFICADO:
    coldfusion.sql.QueryColumn@1f35ded] [TRANSTIPO:
    coldfusion.sql.QueryColumn@9b967b] [OPERACION:
    coldfusion.sql.QueryColumn@b49cf1] ] is not indexable by
    IF(CO.TRANSTIPO=0
    Now to the ":=" statement...
    http://dev.mysql.com/doc/refman/5.0/en/user-variables.html
    This is an example on the documentation
    mysql> SET @t1=0, @t2=0, @t3=0;
    mysql> SELECT @t1:=(@t2:=1)+@t3:=4,@t1,@t2,@t3;
    You can run that on your sql console and check the results.
    Perhaps there is another way to write the statement?

Maybe you are looking for

  • Refresh browser causes to increment results

    Hi, I have a servlet that is using a database to query results from a survey. The survey has 3 questions and each one of them has 4 possible answers. The query runs fine and displays in the web browser, but once I do a refresh some of the data increm

  • How to change the default orientation?

    Hello,      I'm new to Adobe Flash Builder and I am currently making a mobile application for a school project. I was wondering how you change the default app orientation to landscape. I've tried going into my app.xml and change the aspect ratio to l

  • ..CLASSPATH in Windows XP Home Edition..

    Please can anyone tell me how to set CLASSPATH in Windows XP Home Edition OS. Thanx giminaitis

  • Print report parameters and report contents in separate pages.

    Hi , I Have a report with more than 10 parameters and while printing i am supposed to print all the parameters in the first page and then the report contents in a separate page(next). This is an old report developed by some one else. i need to change

  • Jca and jms

    hi, i ned to impliment a jca (java connector architecture) in jms, help me. thanks