Search
 
SCRIPT & CODE EXAMPLE
 

SQL

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 :: user_dependencies 
Sql :: oracle dependency 
Sql :: oracle nvl 
Sql :: rename column name sql server 
Sql :: sql download for windows 10 
Sql :: SQL SERVER ORDER BY DATE NULL LAST 
Sql :: sql integer to serial 
Sql :: drop function in sql 
Sql :: is numeric in sql 
Sql :: GROUP BY With HAVING Clausel 
Sql :: creating table in sql 
Sql :: how to count the number of rows in sql 
Sql :: how to write uppercase in sql 
Sql :: postgres role does not exist 
Sql :: mysql biginteger size 
Sql :: sql 2nd highest salary 
Sql :: mysql create a user 
Sql :: postgresql conectar 
Sql :: postgres describe table 
Sql :: mac django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module. Did you install mysqlclient? 
Sql :: sql inserted 
Sql :: if null put 0 sql 
Sql :: mysql timestamp vs datetime 
Sql :: SQL print multiple variable 
Sql :: mssql procedure 
Sql :: import mysql database command line 
Sql :: sql server on mac m1 
Sql :: mysql show slave status 
Sql :: how to select all fieldsin a soql query 
Sql :: delete vs truncate sql server 
ADD CONTENT
Topic
Content
Source link
Name
4+9 =