6

How to list all

materialized view tables

in Cassandra CQL

[cqlsh 5.0.1 | Cassandra 3.0.7.1158 | DSE 5.0.0 | CQL spec 3.4.0 | Native protocol v4]

Sk_
  • 1,051
  • 8
  • 18

1 Answers1

17

Probably the easiest way is from the views schema table with:

SELECT * FROM system_schema.views;
mikea
  • 6,537
  • 19
  • 36