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 are different functions in sql?
How many joins can you have in sql?
What is string data type in sql?
What is tuple in sql?
What is using in sql?
What is foreign key and example?
which operator is used in query for pattern matching? : Sql dba
discuss about myisam index statistics collection. : Sql dba
Can we change the table name in sql?
Give the order of sql select?
How can you maintain the integrity of your database on instances where deleting an element in a table result in the deletion of the element(s) within another table?
what is try_catch block in procedure
What is clustered and nonclustered index in sql?
What are the built in functions of sql?
What is the clause we need to add in function body to return variable?