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: mary kodama <mkodama_at_nyx10.cs.du.edu>
Date: 1996/12/08
Message-ID: <58dubt$4ev@nyx10.cs.du.edu>#1/1

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

>Hi all,
 

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

Connect as the user and issue the following command:

SELECT table_name FROM user_tables;

or connect with DBA access and issue the following command to see tables in SCOTT schema:

SELECT table_name FROM dba_tables
WHERE OWNER = 'SCOTT'; -Mary Kodama Received on Sun Dec 08 1996 - 00:00:00 CST

Original text of this message

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