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 |
how would you get the current date in mysql? : Sql dba
Is hadoop a nosql?
Give the structure of the function ?
What is difference between a Cursor declared in a procedure and Cursor declared in a package specification ?
what is a scheduled jobs or what is a scheduled tasks? : Sql dba
What are sql ddl commands?
Which command is used to delete a package?
What is clustered, non-clustured and unique index. How many indexes can be created on a table ?
Explain the concept of normalization.
what is a record in a database ? : Sql dba
Can we commit inside a trigger?
What does select * from mean in sql?