-3

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

3
  • tables created with their names Could you clarify this part? Commented Jan 21, 2015 at 3:41
  • Ask it nicely. Show tables perhaps... Commented Jan 21, 2015 at 3:43
  • Can you re frame the question so that it can be understood better.? Commented Jan 21, 2015 at 3:49

2 Answers 2

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
Sign up to request clarification or add additional context in comments.

Comments

0
SHOW TABLES  IN `db`;

Where db is the name of your database.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.