Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: How to find the view names where a particular table is used

RE: How to find the view names where a particular table is used

From: Deshpande, Kirti <kirti.deshpande_at_verizon.com>
Date: Fri, 15 Mar 2002 18:53:19 -0800
Message-ID: <F001.0042B492.20020315185319@fatcity.com>


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



Phone: 262-317-9354
Cell: 262-424-1101

--

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).
--

Please see the official ORACLE-L FAQ: http://www.orafaq.com
--

Author: Deshpande, Kirti
  INET: kirti.deshpande_at_verizon.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). Received on Fri Mar 15 2002 - 20:53:19 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US