Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: How to find the view names where a particular table is used
select name
from user_dependencies
where type = 'VIEW'
and referenced_name = 'GIVEN_TABLE_NAME';
-----Original Message-----
Sent: Friday, March 15, 2002 4:34 PM
To: Multiple recipients of list ORACLE-L
Hi,
Is there a way of finding out what views are using a given table?
Shashank Sinha
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Sinha, Shashank (MED, TCS)
INET: Shashank.Sinha_at_med.ge.com
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists --------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists --------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Fri Mar 15 2002 - 20:53:19 CST