Blog

Everything about Databases with dbsnoop

Tag: sql

List Tables in Any Database

Oracle To list all tables: SELECT tablespace_name, table_name, owner FROM dba_tables; To list all tables for the current user: SELECT tablespace_name, table_name, owner FROM user_tables; To list all tables the user has access to (whether the user is the owner or not):

Read more >>
en_US