On Mon, 8 Mar 1999, James Zheng wrote:
> Hi Ari,
> Here is the question. I need to do some table restructure. Without
> using any third-party tool, how could I efficiently find out from data
> dictionaries the 1)views 2)procedures 3)packages built upon the table?
> Thank you in advance.
>
> Jim
>
Jim,
Do the following SQL:
SELECT * FROM DBA_DEPENDENCIES
WHERE REFERENCED_OWNER = 'owner' AND
REFERENCED_NAME = 'table_name';
Regards,
-Ari Kaplan
Independent Oracle DBA Consultant
<-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><->
<-> For 275+ Oracle tips, visit my Web Page: <->
<-> <->
<-> www.arikaplan.com <->
<-> <->
<-> email: akaplan@interaccess.com <->
<-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><->
Back to Ari Kaplan's Home Page