Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle view 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 :: mysql if 
Sql :: pgsql is not permitted to log in 
Sql :: mysql utc to local time 
Sql :: postgres week number 
Sql :: SQL SERVER ORDER BY DATE NULL LAST 
Sql :: if mysql 
Sql :: sample in sql 
Sql :: mysql not defined 
Sql :: sql convert datetime 
Sql :: sql find second highest salary employee 
Sql :: sql display max value 
Sql :: sql get first letter of string 
Sql :: to_char oracle 
Sql :: mysql how to use FIND_IN_SET function in WHERE clause ? 
Sql :: rollback in sql 
Sql :: command to give readonly access to a postgres sql user 
Sql :: mysql time 
Sql :: how to create a table structure from another table in mysql 
Sql :: oracle right characters 
Sql :: sql server port 
Sql :: insert into table from another table 
Sql :: sql data types 
Sql :: oracle generate list of dates in between a date range 
Sql :: postgresql database url 
Sql :: how to casting data types in postgresql 
Sql :: sql script to remove default from column 
Sql :: mysql update command 
Sql :: bigquery timestamp 
Sql :: android sqlite query join 
Sql :: return the number of records in a single table mysql 
ADD CONTENT
Topic
Content
Source link
Name
9+8 =