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: SQL statement to get all tables in the database

Re: SQL statement to get all tables in the database

From: Arangaperumal <gaperumal_at_hotmail.com>
Date: 16 Nov 2004 03:35:03 -0800
Message-ID: <5b7fac1d.0411160335.2817d2b6@posting.google.com>


jrefactors_at_hotmail.com (Matt) wrote in message news:<ba8a039e.0411141914.53c314ff_at_posting.google.com>...
> In oracle, any SQL statements to get all tables in the database?
> I am using SQL* PLUS, and I want to see what are all tables in
> the database.
>
> Please advise. Thanks!!

select owner as schemaname, table_name from all_tables where owner NOT IN ('SYS','SYSTEM') Received on Tue Nov 16 2004 - 05:35:03 CST

Original text of this message

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