Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Partial hang up of 7.3.3.0.0
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
![]() |
![]() |