Search
 
SCRIPT & CODE EXAMPLE
 

SQL

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 object dependencies 
Sql :: all_dependencies 
Sql :: mysql if 
Sql :: SQL Add Column in a Table 
Sql :: create table as select * from table mssql 
Sql :: intellij mysql set timezone 
Sql :: sequence postgresql 
Sql :: sql rtrim 
Sql :: recursion in sql 
Sql :: activate binary log mariadb 
Sql :: sql server pivot rows to columns 
Sql :: odd record sql query 
Sql :: how to upper case in sql 
Sql :: mysql auto increment column 
Sql :: mysqldump database 
Sql :: sql oracle update multiple rows 
Sql :: sql Split string function 
Sql :: SQLSTATE[01000]: Warning: 1265 Data truncated for column 
Sql :: install mysql for fedora 34 
Sql :: mysql find duplicate rows multiple columns 
Sql :: calculate date and convert to yearsmysql 
Sql :: oracle sql number to varchar2 
Sql :: android sqlite database example 
Sql :: Write an SQL query to fetch worker names with salaries = 50000 and <= 100000. 
Sql :: temp tables in sql server 
Sql :: linux bash run sql command 
Sql :: sql unique select 
Sql :: add primary key to database sql 
Sql :: sql vs nosql or mysql vs mongodb 
Sql :: sql row having max 
ADD CONTENT
Topic
Content
Source link
Name
4+6 =