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 -> Partial hang up of 7.3.3.0.0

Partial hang up of 7.3.3.0.0

From: Sergey Zhukov <SergeyZh_at_cityline.ru>
Date: Tue, 9 Mar 1999 18:06:33 +0300
Message-ID: <7c3dbq$v60$1@news.msu.ru>


Hi All!
You know that next will work:

CREATE OR REPLACE PACKAGE hang_up
as
 subtype number1 is number;
 n number1;
end hang_up;

BUT let's interchange two strings in this simplest package, declaring the varialbe BEFORE the declaring of subtype:

CREATE OR REPLACE PACKAGE hang_up
as
 n number1;
 subtype number1 is number;
end hang_up;

This will hang the client process up and, probably, you will not be able to drop the package before restarting the instance on the server... What do you think about this silly joke? Received on Tue Mar 09 1999 - 09:06:33 CST

Original text of this message

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