- 最后登录
- 2023-8-16
- 在线时间
- 1686 小时
- 威望
- 2135
- 金钱
- 50532
- 注册时间
- 2011-10-12
- 阅读权限
- 200
- 帖子
- 5207
- 精华
- 39
- 积分
- 2135
- UID
- 2
|
2#
发表于 2013-8-16 11:11:42
create or replace procedure vv
as
begin
execute immediate 'alter procedure vv compile';
end;
create or replace procedure zz
as
begin
execute immediate 'alter procedure zz compile';
end;
exec zz;
exec vv;
0: waiting for 'library cache pin'
handle address=0x7ff536a0e80, pin address=0x7ff59750338, 100*mode+namespace=0x1c8a800010003
0: waiting for 'library cache pin'
handle address=0x7ff5b61e548, pin address=0x7ff53a85118, 100*mode+namespace=0x1c8a900010003
0x1c8a9 =>116905
0x1c8a8 => 116904
1* select object_id,object_name from dba_objects where object_name in ('ZZ','VV')
SQL> /
OBJECT_ID OBJECT_NAME
---------- --------------------
116905 ZZ
116904 VV
0: waiting for 'library cache pin'
handle address=0x7ff536a0e80, pin address=0x7ff5beb9890, 100*mode+namespace=0x1c8a800010003 ==>RequestMode=X
0: waiting for 'library cache pin'
handle address=0x7ff536a0e80, pin address=0x7ff59a0e278, 100*mode+namespace=0x1c8a800010002 ==>RequestMode=S
|
|