The following sql will give you all table_names and view names:<br>
<br>
select Owner, object_name, object_type<br>
from all_objects<br>
where object_type in ( 'TABLE','VIEW')<br>
;<br>
<br>
<br>
<br>
To list all fields and their attributes<br>
from a specific table or view simple use<br>
desc...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.