Search
 
SCRIPT & CODE EXAMPLE
 

SQL

query to find object dependencies in oracle

-- 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 nvl 
Sql :: Save PL/pgSQL output from PostgreSQL to a CSV file 
Sql :: sql server select furst day of current year 
Sql :: create table as select * from table mssql 
Sql :: Client does not support authentication protocol requested by server; consider upgrading MySQL client 
Sql :: view table sql 
Sql :: sample clause in sql 
Sql :: sql get duplicates by composite 
Sql :: sql server query database space available 
Sql :: sql server split string last 
Sql :: bigquery get last month 
Sql :: sql left 
Sql :: to_char sql 
Sql :: QL HAVING Keyword 
Sql :: show table mysql 
Sql :: mysql disable logging 
Sql :: sql column name 
Sql :: sql string function update replace 
Sql :: Selecting duplicates 
Sql :: mssql server port 
Sql :: sql server management studio reset cache 
Sql :: group by clause with join in sql 
Sql :: oracle all dates between two dates 
Sql :: generate random & unique mysql string 
Sql :: sqlite copy table to another table 
Sql :: SQL Modify Column in a Table -SQL Server 
Sql :: sql insert into select 
Sql :: mysql command prompt date insert format 
Sql :: datagrip execute procedure 
Sql :: change schema of all tables postgres 
ADD CONTENT
Topic
Content
Source link
Name
1+4 =