>
> All tables owned by me that is...
>
> Thanx
> Carlos Roman
>
>
> Hello!
> Im new at Oracle and I just want to know...
> How the hell can you see the names of all the tables you have created
> through sqlplus
>
> Thanx!
> -Carlos Roman
>
To see your tables, type:
SELECT TABLE_NAME FROM USER_TABLES;
To see tables owned by everyone, type:
SELECT OWNER, TABLE_NAME FROM ALL_TABLES;
Best of luck!
-Ari Kaplan
Independent Oracle DBA Consultant
<-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><->
<-> For 160+ Oracle tips, visit my Web Page: <->
<-> <->
<-> www.arikaplan.com <->
<-> <->
<-> email: akaplan@interaccess.com <->
<-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><->
Back to Ari Kaplan's Home Page