To get a list of all tables in Oracle you can use the following query.
SELECT owner, table_name FROM dba_tables
if your user does not have sufficient access rights to query dba_tables, you can try to query all_tables which will only show you the tables you are allowed to see.
SELECT owner, table_name FROM all_tables
RT @CodeSnippetsNET: How to get a list of all tables in #Oracle http://t.co/XY781KFasI #database #db #coding #dev #developer #codesnippets …
RT @CodeSnippetsNET: How to get a list of all tables in #Oracle http://t.co/XY781KFasI #database #db #coding #dev #developer #codesnippets …
RT @CodeSnippetsNET: How to get a list of all tables in #Oracle http://t.co/XY781KFasI #database #db #coding #dev #developer #codesnippets …