查询某个表所涉及的 存储过程Procedure, 视图view , 方法Function
Posted EasTward
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查询某个表所涉及的 存储过程Procedure, 视图view , 方法Function相关的知识,希望对你有一定的参考价值。
/*
查询某个表所涉及的Procedure,Package,Function
*/
select name,type,referenced_owner,referenced_name,
referenced_type
from user_dependencies
where referenced_name=‘Mytable‘ -- Mytable 表名
and type=‘procedure‘; -- 储过程Procedure, 视图view , 方法Function
以上是关于查询某个表所涉及的 存储过程Procedure, 视图view , 方法Function的主要内容,如果未能解决你的问题,请参考以下文章