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).
Answers were Sorted based on User's Feedback
Answer / gaurav
select * from user_source where upper(text)
like '%PO_VENDORS%'
Is This Answer Correct ? | 2 Yes | 1 No |
Are left and right joins the same?
Can we edit a view in sql?
Explain alias in sql?
What is procedure explain with program?
What are the two types of cursors in pl sql?
Does normalization improve performance?
what is the difference between mysql_fetch_array and mysql_fetch_object? : Sql dba
What is forward declaration in pl sql?
What is example of database?
What are the string functions in sql?
What is the syntax to add a record to a table?
What is string join?