Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle dba_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 all_dependencies 
Sql :: influxdb list all tags for a measurement 
Sql :: pagination in sql 
Sql :: how to view created temporary tables in mysql 
Sql :: postgres week number 
Sql :: mysql count characters in string 
Sql :: postgres integer to serial 
Sql :: remove all data from table mysql 
Sql :: duplicate key value violates unique constraint in postgresql 
Sql :: postgresql check total storage 
Sql :: pivot 
Sql :: postgres trigger insert into another table 
Sql :: how to write lowercase in sql 
Sql :: update in sql server table 
Sql :: mysql locate 
Sql :: clear table sql 
Sql :: show details of table postgres 
Sql :: oracle previous year 
Sql :: psql select * from table 
Sql :: convert columns to rows in sql server 
Sql :: mysql query to find duplicate records 
Sql :: json_value oracle 
Sql :: sql example query 
Sql :: add week ending date sql server 
Sql :: truncate table sqlite 
Sql :: mysql add hours to time field 
Sql :: 0 
Sql :: sql primary key constraint 
Sql :: sql date function 
Sql :: best sql collation 
ADD CONTENT
Topic
Content
Source link
Name
6+3 =