有没有办法在oracle 11g中找到给定过程的程序包名称

问题描述 投票:0回答:1

有没有办法在oracle 11g中找到给定过程的程序包名称。

问候,塔拉克语

oracle package procedure
1个回答
0
投票

这是我这样做的方式:

select *
from user_source
where lower(text) like '%my_procedure%'
  and type = 'PACKAGE BODY';
© www.soinside.com 2019 - 2024. All rights reserved.