List tables in Vertica database

Query below lists all tables in a Vertica database.

Query

select table_schema,
       table_name
from v_catalog.tables
order by table_schema
         table_name;

Columns

  • table_schema - schema name
  • table_name - table name

Rows

  • One row represents one table in the database
  • Scope of rows: all tables in the database
  • Ordered by schema and table name

Sample results

Comments are only visible when the visitor has consented to statistics cookies. To see and add comments please accept statistics cookies.
0
There are no comments. Click here to write the first comment.