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

Home -> Community -> Usenet -> c.d.o.server -> Re: Newbie - How to list all the tables in a schema?

Re: Newbie - How to list all the tables in a schema?

From: Frank Thomas <thomasf_at_daugherty.com>
Date: 1996/12/09
Message-ID: <58i4h3$jn7@speedy.daugherty.com>#1/1

If you are logged into the schema:

select table_name from user_tables;

or

select table_name from all_tables where owner = '<SCHEMANAME>';

If you are not in the schema but have access to the tables within the schema.

The dictionary tables are outlined in the Oracle7 Server Reference, Static Data Dictionary chapter.

earvin_at_omega.uta.edu (Earvin C. Lim) wrote:

>Hi all,
 

>How can I list all the tables in a schema?
>Thanks!
 

>--
>Earvin Lim
>-- Programmer/Analyst
>-- Academic Computing Services
>-- University of Texas at Arlington
>email: earvin_at_omega.uta.edu
>Phone: (817)272-3678

Frank Thomas
thomasf_at_daugherty.com Received on Mon Dec 09 1996 - 00:00:00 CST

Original text of this message

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