Re: To list all tables of a particular user??

From: Guerry Semones <guerry_at_iluvatar>
Date: Tue, 21 Mar 1995 11:29:43 -0500 (EST)
Message-ID: <Pine.NXT.3.90.950321112653.18835A-100000_at_iluvatar>


On Tue, 21 Mar 1995, Chung Hoi Shan wrote:

> Hi,
>
> How can I list all the tables belong to a particular user?
>
> Any help would be appreciated.

if logged in as that user:

select table_name from user_tables;

if logged in as system user:

select table_name from dba_tables

   where owner='USERNAME';

other related tables:

user_indexes
user_views

dba_views
dba_tablespaces
dba_objects

etc.

See system admin manual....

Hope this helps!

Guerry                          |    My thoughts are not my company's
http://www.duke.edu/~guerry/ | thoughts, saith the disclaimer. Received on Tue Mar 21 1995 - 17:29:43 CET

Original text of this message