The above list all tables in the current schema that you are logged on to. If you want all tables that exist on the database server then you need to do the following:
SELECT owner,
table_name
FROM all_tables
WHERE OWNER <> 'SYS' AND
OWNER <> 'SYSTEM'
This will list all database tables on the database server except the system ones in SYS and SYSTEM.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.