Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

How to get list of all tables in Oracle database?

I need help.
How to query an Oracle database to display the names of all tables in it?
by

2 Answers

Shahlar1vxp
You can use the following code to list all the tables in the Oracle database-
sql> SELECT table_name
FROM dba_tables;

In order to get all the table names, you may also use-
Select owner, table_name from all_tables;
This will list only the required data instead of extra data that confuses you.
RoliMishra
You can try this:
select table_name from all_tables

Login / Signup to Answer the Question.