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: Get all table names in a database

Re: Get all table names in a database

From: Cdr628 <cdr628_at_aol.com>
Date: 15 Jan 2000 02:29:35 GMT
Message-ID: <20000114212935.18704.00000448@ng-fb1.aol.com>


select owner, object_name, object_type
from
all_objects
where
object_type in ('TABLE', 'SYNONYM', 'VIEW') order by
owner, object_name Received on Fri Jan 14 2000 - 20:29:35 CST

Original text of this message

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