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

how would you get the current date in mysql? : Sql dba

0 Answers  


Is hadoop a nosql?

0 Answers  


Give the structure of the function ?

2 Answers  


What is difference between a Cursor declared in a procedure and Cursor declared in a package specification ?

2 Answers   JDA,


what is a scheduled jobs or what is a scheduled tasks? : Sql dba

0 Answers  


What are sql ddl commands?

0 Answers  


Which command is used to delete a package?

0 Answers  


What is clustered, non-clustured and unique index. How many indexes can be created on a table ?

3 Answers   TCS,


Explain the concept of normalization.

3 Answers  


what is a record in a database ? : Sql dba

0 Answers  


Can we commit inside a trigger?

0 Answers  


What does select * from mean in sql?

0 Answers  


Categories