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 |
What is window clause?
What is an index? What are the types of indexes? How many clustered indexes can be created on a table?
What is a field in a database?
Maximum how many triggers can we use in trigger and How to find out how many records it fetched.
What are the different types of PL/SQL program units that can be defined and stored in ORACLE database ?
select * from emp where sal in(select max(sal) from emp) here there is any limit for in operator how many values accpect ?
What does 0 mean in sql?
Explain how exception handling is done in advance pl/sql?
What is dense_rank in sql?
what are the differences among these table level lock modes - IN SHARE MODE, IN SHARE UPDATE MODE, IN EXCLUSIVE MODE ?
Why does %isopen return false for an implicit cursor?
I have the table like this S.No Name ID 01 Xyz 123 I want the result as 01Xyz123 How to write the query to retrieve the entire row data in a single column?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)