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

Home -> Community -> Usenet -> c.d.o.server -> what about this?

what about this?

From: Kamal <kamal80_at_virgilio.it>
Date: 5 Mar 2003 10:15:46 -0800
Message-ID: <4e766a02.0303051015.35dad7e1@posting.google.com>


Oracle9i Enterprise Edition Release 9.2.0.1.0 on Tru64 UNIX V5.1A (Rev. 1885).

create package test is
function user
return varchar2;
end test;
/

create or replace
package body test is
function user
return varchar2
is
begin
return user;
end user;
end test;
/

SQL> begin
  2 dbms_output.put_line(test.user);
  3 end;
  4 /
begin
*
ERROR at line 1:
ORA-00600: internal error code, arguments: [kohdtf048], [], [], [], [], [], [], []

(I know this package would be of scarce utility, i was just trying...) What do you think about this problem? Is this an Oracle bug?

Kamal Received on Wed Mar 05 2003 - 12:15:46 CST

Original text of this message

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