Search
 
SCRIPT & CODE EXAMPLE
 

SQL

user_dependencies

-- Dependencies on a view, table, ...
SELECT *
  FROM ALL_DEPENDENCIES			-- or DBA_DEPENDENCIES or USER_DEPENDENCIES
 WHERE TYPE = 'VIEW'			-- or 'PROCEDURE', 'SYNONYM'...
   AND REFERENCED_OWNER = 'OBJECT_OWNER'
   AND REFERENCED_NAME = 'OBJECT_NAME';
Comment

PREVIOUS NEXT
Code Example
Sql :: oracle dependencies table 
Sql :: oracle view dependencies 
Sql :: counting in sql 
Sql :: mysql utc to local time 
Sql :: how to delete a table in mysql 
Sql :: how to find all children of a record with only parent ID in sql 
Sql :: create table query in mysql 
Sql :: replace text in sql 
Sql :: sum value by month sql 
Sql :: mysql import database 
Sql :: mysql max 
Sql :: sql remove duplicates 
Sql :: postgres recursive function 
Sql :: sql get character at index 
Sql :: mysql select row max date 
Sql :: to_date postgresql 
Sql :: select true if exists on another table or false sqlserver 
Sql :: sql oracle limit 
Sql :: mysql table schema 
Sql :: get duplicate entry sql 
Sql :: sql to array of objects 
Sql :: auto increment in postgresql 
Sql :: sql full outer join with where clause 
Sql :: difference between 2 query results sql server 
Sql :: how to get specific salary in sql 
Sql :: mysql fetch all data 
Sql :: soql more than today 
Sql :: how to change server name in sql server 
Sql :: top 3 salary in sql 
Sql :: sql select whole row max column 
ADD CONTENT
Topic
Content
Source link
Name
6+8 =