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
Which is better join or subquery?
what is query cache in mysql? : Sql dba
How do I run a pl sql procedure in sql developer?
What are character functions?
Who developed sql?
How can you fetch first 5 characters of the string?
How do I run a sql query in pgadmin 4?
How delete all data from table in sql?
Explain raise_application_error.
What is on delete set null?
How do you use a while loop in pl sql?
What is difference between stored procedures and application procedures?
What is the difference between a primary key and a clustered index?
What is a recursive stored procedure?
How is use pl and sql?