List views in Vertica database

Query below lists all views in Vertica database

Query

select table_schema as view_schema,
       table_name as view_name,
       create_time
from v_catalog.views
order by table_schema,
         table_name;

Columns

  • view_schema - schema name
  • view_name - view name
  • create_time - view creation datetime

Rows

  • One row represents one view
  • Scope of rows: all views in Vertica database
  • Ordered by view schema, view 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.