Sk_
Sk_

Reputation: 1191

How to list all materialized view tables in Cassandra CQL

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]

Upvotes: 6

Views: 5488

Answers (1)

mikea
mikea

Reputation: 6667

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

SELECT * FROM system_schema.views;

Upvotes: 18

Related Questions