-3

How can i know the total no of tables created with their names!!!in SQL oracle Commands ?? So that i can drop the unnecessary tables......

Mike Sherrill 'Cat Recall'
  • 86,743
  • 16
  • 118
  • 172
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
  • 697
  • 1
  • 6
  • 17
0
SHOW TABLES  IN `db`;

Where db is the name of your database.

Misunderstood
  • 4,529
  • 1
  • 14
  • 21