List of tables in an Oracle database
Solved
Titelle
-
bernie_liege -
bernie_liege -
```sql
SELECT table_name FROM user_tables;
```
SELECT table_name FROM user_tables;
```
11 answers
-
Hi,
List the tables in the current user's schema:
SELECT table_name FROM user_tables;
List the tables accessible by the user:
SELECT table_name FROM all_tables;
List all tables (you need to be ADMIN):
SELECT table_name FROM dba_tables;
Talk to you later, Blux"Stupid people dare to do anything. That's even how you recognize them"