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 recursive stored procedure? : Sql dba
Does varchar need length?
Why is the cursor important?
how to calculate expressions with sql statements? : Sql dba
what is a composite primary key ? : Sql dba
Which software is used for pl sql programming?
What are schema-level triggers?
What is rollback?
Is truncate ddl or dml?
What does dml mean?
What do you understand by case manipulation functions?
Is big data nosql?
Is sql between inclusive?
what is the difference between a having clause and a where clause? : Sql dba
Why primary key is required?