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: list table in schema

Re: list table in schema

From: Bambang Setiawan <Bambang.Setiawan_at_Sidola.com>
Date: Sat, 05 May 2001 01:01:16 -0700
Message-ID: <F001.002FA199.20010505004022@fatcity.com>

Halo Jim,

use table DBA_TABLES :

in SQL plus just type :

break on owner skip 1
select owner , table_name from dba_tables ;

or you can use 'WHERE' clause to exclude user SYS and SYSTEM

select owner , table_name from dba_tables where
owner not in ('SYS','SYSTEM') ;

hope this helps ,

=bambang=

<> Bambang Setiawan <>

>>> "Jimmy Lim" <long_at_enetpearl.com> 05/05/01 12:00PM >>> hello....

how can i list all table in a schema ?

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com 
-- 
Author: Jimmy Lim
  INET: long_at_enetpearl.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: Bambang Setiawan
  INET: Bambang.Setiawan_at_Sidola.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 Sat May 05 2001 - 03:01:16 CDT

Original text of this message

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