Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: ORA ERR 600 on creatin a function.

Re: ORA ERR 600 on creatin a function.

From: Mark Gumbs <mgumbs_at_hotmail.com>
Date: Mon, 15 Mar 1999 08:53:59 -0000
Message-ID: <36ecc94f.0@145.227.194.253>


Ora 600 errors have been popping up on the newsgroup reguarly nowadays. Unfortunately, this kind of error is nornally beyond a normal fix and oracle support may have to be contacted directly. May be due to an operating system error.

Phone oracle and give them the code, operating system, oracle version etc and they may be able to tell you something.

Mark



Imel Rautenbach wrote in message <7cibi4$9mf$1_at_news3.saix.net>...
>hi all.
>
>I get the following error :
>ORA-00600: internal error code, arguments: [17112], [3510605032], [], [],
>[], [], [], []
>
>When trying to create a function.
>
>CREATE OR REPLACE FUNCTION
> tstr(p_seconds IN NUMBER)
>RETURN VARCHAR
>is time_str varchar(8);
>BEGIN
> time_str :=
> (LPAD(FLOOR(round(p_seconds,0) / 3600), 2, 0) || ':' ||
> LPAD(MOD(FLOOR(round(p_seconds,0) / 60), 60), 2, 0) || ':' ||
> LPAD(MOD(round(p_seconds,0), 60), 2, 0)) ;
> return time_str;
>END;
>/
>
>
>The second time i try this it works.
>( I have to do a shutdown abort inbetween to get going again.)
>
>I get the same error on importing.
>
>This happens randomly on different machines and databases.
>HP-UX 10.20
>Oracle 7.3.3.4
>
>Thanks
>Imel
>
>
>
>
Received on Mon Mar 15 1999 - 02:53:59 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US