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
Explain the order of sql statement execution?
Does sql profiler affect performance?
What are the set operators in sql?
What is pivot table in sql?
Is sql a backend language?
Explain the insert into statements in sql?
What is online transaction processing (oltp)?
What do you mean by stored procedures?
List and explain the different types of join clauses supported in ansi-standard sql?
Can a foreign key be null?
How to Execute a Package in PL/SQL.?
What are the different ddl commands in sql?
what is an alias command? : Sql dba
Enlist some predefined exceptions?
what are sequences