Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle object 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 dependency 
Sql :: update foreign key value in mysql 
Sql :: Save PL/pgSQL output from PostgreSQL to a CSV file 
Sql :: sub query in linq 
Sql :: sql time format 
Sql :: nosql vs sql 
Sql :: run sql script from command line 
Sql :: services.AddDbContext DataSource Sqlite 
Sql :: Query to remove duplicate rows from a table 
Sql :: sql in 
Sql :: find all tables with column name 
Sql :: create table like another table 
Sql :: sql server delete table 
Sql :: mariadb cast to int 
Sql :: oracle select row max date 
Sql :: sql column to row 
Sql :: SQL Copy to Another Database 
Sql :: reset keys in sql 
Sql :: SQL Subquery and JOIN 
Sql :: How to import CSV file into a MySQL table 
Sql :: array of objects sql 
Sql :: functions with parameters SQL 
Sql :: sqlite alter table add multiple column 
Sql :: replace tab in sql 
Sql :: how to get nth number in sql 
Sql :: mysql find db contarint 
Sql :: select mysql limit to 2 decimal places 
Sql :: delete table cassandra 
Sql :: max 3 salary in sql 
Sql :: multiple order by sql 
ADD CONTENT
Topic
Content
Source link
Name
2+2 =