查询以搜索表和/或列的所有包

Query to search all packages for table and/or column(查询以搜索表和/或列的所有包)
本文介绍了查询以搜索表和/或列的所有包的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以运行查询来搜索所有包以查看包中是否使用了特定表和/或列?包太多了,无法打开每个包并找出我要​​查找的值.

Is there a query I can run to search all packages to see if a particular table and/or column is used in the package? There are too many packages to open each one and do a find on the value(s) I'm looking for.

推荐答案

您可以这样做:

select *
from user_source
where upper(text) like upper('%SOMETEXT%');

或者,SQL Developer 有一个内置报告来执行此操作:

Alternatively, SQL Developer has a built-in report to do this under:

View > Reports > Data Dictionary Reports > PLSQL > Search Source Code

USER_SOURCE 的 11G 文档位于这里

The 11G docs for USER_SOURCE are here

这篇关于查询以搜索表和/或列的所有包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

SQL to Generate Periodic Snapshots from Transactions Table(用于从事务表生成定期快照的SQL)
MyBatis support for multiple databases(MyBatis支持多个数据库)
Oracle 12c SQL: Missing column Headers in result(Oracle 12c SQL:结果中缺少列标题)
SQL query to find the number of customers who shopped for 3 consecutive days in month of January 2020(查询2020年1月连续购物3天的客户数量)
How to get top 10 data weekly (This week, Previous week, Last month, 2 months ago, 3 month ago)(如何每周获取前十大数据(本周、前一周、上个月、2个月前、3个月前))
Select the latest record for an Id per day - Oracle pl sql(选择每天ID的最新记录-Oracle pl SQL)