How can i know the list of tables created in each DB using Oracle ? I want to delete the unnecessary ones.
2 Answers
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
tables created with their namesCould you clarify this part?Show tablesperhaps...