Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Newbie - How can I list all the tables in a schema?
On 6 Dec 1996 18:44:49 GMT, earvin_at_omega.uta.edu (Earvin C. Lim) wrote:
select object_name, object_type, status
from all_objects
where owner = 'SOMEONE'
/
that'll give you more then just tables, You can get just tables from the all_tables view.
>How can I list all the tables in a schema?
>
>Thanks!
>
>--
>Earvin Lim
>-- Programmer/Analyst
>-- Academic Computing Services
>-- University of Texas at Arlington
>email: earvin_at_omega.uta.edu
>Phone: (817)272-3678
Thomas Kyte
Oracle Government
tkyte_at_us.oracle.com
![]() |
![]() |