Oracle查询某个表被那些存储过程引用

时间:2020-09-18 00:58:19   收藏:0   阅读:72

 

技术图片
select * from user_dependencies where upper(referenced_name) = tablename ;
 
SELECT DISTINCT * FROM user_source WHERE TYPE = PROCEDURE AND upper(text) LIKE %tablename%; 
View Code

 

 

https://www.cnblogs.com/wsy0202/p/12496708.html

https://blog.csdn.net/qq_26963433/article/details/98848052?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.add_param_isCf&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.add_param_isCf

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!