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: how to list all db's / tables?

Re: how to list all db's / tables?

From: Roel Toledo <SPAMGUARDroeltoledo_at_yahoo.com>
Date: Thu, 18 Oct 2001 21:47:05 GMT
Message-ID: <t5Iz7.144438$W8.3553614@bgtnsc04-news.ops.worldnet.att.net>


> To list all tables you can do a
>
> SELECT table_name,owner
> FROM all_tables

Wrong! The correct command is:

SELECT table_name, owner
FROM dba_tables; Received on Thu Oct 18 2001 - 16:47:05 CDT

Original text of this message

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