Click here to Skip to main content
15,893,487 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to view tables, views, stored proc in oracle ala tree view like in sql server
Posted

1 solution

You can use the Oracle SQL Developer program[^].
 
Share this answer
 
Comments
Alan Tuscano 2-Mar-12 1:19am    
Hi Abhinav,

I'm Using TOAD. Forgot to say it yesterday. I'm Sorry.

Anyway, I can view tables, views, procs now.

Thanks for the Help. :)
Alan Tuscano 2-Mar-12 1:24am    
I tried this in the SQL Editor(TOAD) and giving me a 0 result, but in the schema browser, i can see the tables, views, procs.

select *
from all_objects
where object_type in ('TABLE','VIEW')
and object_name = 'OBJECT_NAME';

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900