How can I know which stored PL/SQL code is wrapped?
时间:2011-05-12 来源:William.Lu
The following query gives the list of all wrapped PL/SQL code:
select owner, name, type
from dba_source
where line = 1
and instr(text, ' wrapped'||chr(10))+instr(text, ' wrapped '||chr(10)) > 0
order by 1, 2, 3
/
相关阅读 更多 +