Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle all_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 :: all_dependencies 
Sql :: how to ascending order in sql 
Sql :: pgsql is not permitted to log in 
Sql :: sql not in 
Sql :: datediff in sql 
Sql :: delete row by id mysql 
Sql :: postgresql full text search 
Sql :: complete date is 1 year or not sql server 
Sql :: charindex 
Sql :: mysql dump with table query 
Sql :: athena create table 
Sql :: snowflake select from stage 
Sql :: mysql show create table 
Sql :: mysql count rows returned 
Sql :: sql select row with max date 
Sql :: Get all index postgres 
Sql :: SQL column name Oracle 
Sql :: mql5 datetime get hour 
Sql :: sql primary key syntax 
Sql :: postgres how to add field created at 
Sql :: sql values to array of objects 
Sql :: check for directory in bash 
Sql :: postgresql concat string with separator 
Sql :: select odd records sql 
Sql :: POSTGRES INSERT INTO TABLE VALUE FROM OTHER TABLE 
Sql :: sql rename column in select query 
Sql :: sqlite get date only 
Sql :: import csv to postgresql 
Sql :: how to find top 3 salary in sql 
Sql :: what is relational database 
ADD CONTENT
Topic
Content
Source link
Name
3+1 =