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


Please Help Members By Posting Answers For Below Questions

What is the difference between a primary key and a unique key?

552


What is raw datatype in sql?

544


How do I run sql?

604


What does the acronym acid stand for in database management?

532


The select into statement is most often used to create backup copies of tables or for archiving records?

553






What is the difference between union and union all command?

540


what are the advantages of using stored procedures? : Sql dba

607


How to create your own reports in sql developer?

530


What are the triggers associated with image items?

612


Where not exists in sql?

500


What is sql trigger example?

530


What is the maximum number of rows in sql table?

535


How do I sort a table in sql?

587


Is trigger a stored procedure?

497


ERROR:Insert or update on table"accnt" violates foreign key constraints "acct_to_curr_symbol" DETAILS:KEY(accnt_curr_id)(-2)is not present in the table "curr_symbol" ......solve The Problem..

1999