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



How many database objects (trigger, packages, sequence etc) uses a particular field in a given t..

Answer / raji_4u

CHECK THE VIEW "USER_DEPENDENCIES"

Is This Answer Correct ?    5 Yes 1 No

How many database objects (trigger, packages, sequence etc) uses a particular field in a given t..

Answer / gaurav

select * from user_source where upper(text)
like '%PO_VENDORS%'

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More SQL PLSQL Interview Questions

Are left and right joins the same?

0 Answers  


Can we edit a view in sql?

0 Answers  


Explain alias in sql?

0 Answers  


What is procedure explain with program?

0 Answers  


What are the two types of cursors in pl sql?

0 Answers  






Does normalization improve performance?

0 Answers  


what is the difference between mysql_fetch_array and mysql_fetch_object? : Sql dba

0 Answers  


What is forward declaration in pl sql?

0 Answers  


What is example of database?

0 Answers  


What are the string functions in sql?

0 Answers  


What is the syntax to add a record to a table?

0 Answers  


What is string join?

0 Answers  


Categories