I have an Oracle database, I am using SQL plus to browse my data. I need to know is an SQL command<br>
that will display a list of tables in my database. Thanks!
User_tables will tell you all the tables that are part of your schema (User). If you want to know all the tables in the database try:<br>
<br>
select * from all_tables;<br>
<br>
You may refine that query by adding a where clause:<br>
<br>
select * from all_tables<br>
where owner = 'BBS'; <SUBSTITUTE YOUR USER ID FOR BBS>
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.