-3

How can i know the list of tables created in each DB using Oracle ? I want to delete the unnecessary ones.

Suhaas
  • 11
  • 2

2 Answers2

0

This question/answer should give you the details you need: Get list of all tables in Oracle?

but in summary...

-- If you have access
SELECT owner, table_name
  FROM dba_tables

-- Will show what your user has access to
SELECT owner, table_name
  FROM all_tables
Community
  • 1
  • 1
Navik Hiralal
  • 757
  • 1
  • 6
  • 17
0
SHOW TABLES  IN `db`;

Where db is the name of your database.

Misunderstood
  • 5,534
  • 1
  • 18
  • 25