How many database objects (trigger, packages, sequence etc)
uses a
particular field in a given table.
For ex: I want to know how many database object uses the
ATTRIBUTE1 in
the PO_VENDORS table.
What query will give me the result showing the database
object
name(package, trigger etc),
field_name used (in this case ATTRIBUTE1) and table_name
(in this case
PO_VENDORS).
Answer Posted / gaurav
select * from user_source where upper(text)
like '%PO_VENDORS%'
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is the maximum number of triggers, you can apply on a single table?
What is meant by temporal data?
How to pipe multiline string to isql?
How do I upgrade sql?
How do I restart sql?
Why is a primary key important?
How to use sql*plus built-in timers?
What is sql architecture?
what are the drivers in mysql? : Sql dba
What is data definition language?
Why use stored procedures?
What is a clob in sql?
What are its different types of dbms?
What is orm in sql?
What does the argument [or replace] do?