Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle dependency

-- 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 view dependencies 
Sql :: pagination in sql 
Sql :: rename column name sql server 
Sql :: mysql url data type 
Sql :: mysql wont stop 
Sql :: list table columns mysql 
Sql :: mysql get date from datetime 
Sql :: sqlite insert or update 
Sql :: inner join 
Sql :: t_sql contains 
Sql :: INITCAP in Oracle example 
Sql :: expo sqlite 
Sql :: into sql 
Sql :: sql update multiple rows 
Sql :: sql online compiler 
Sql :: mysql not equal 
Sql :: print hello world in sql 
Sql :: sql server change column data type 
Sql :: ORA-01090: shutdown in progress - connection is not permitted 
Sql :: sql practice 
Sql :: table structure in sql 
Sql :: how to install mysql 8.0 windows service 
Sql :: Which MySQL data type to use for storing boolean values 
Sql :: ms sql print more than 1 variable 
Sql :: move files from one folder to another in sql server 
Sql :: sql duplicate a table with data 
Sql :: sql insert values into table 
Sql :: json_remove mysql 
Sql :: drush SQLSTATE[HY000] [2002] No such file or directory 
Sql :: decimal() mysql 
ADD CONTENT
Topic
Content
Source link
Name
2+1 =