The issue you are having here, is that you are using docs to explore Cassandra that are for version 2.0 and 2.1. My guess is that you are probably using Cassandra 3.0. In that case, you will need to query the system_schema keyspace for the "keyspaces" table:
cassandra@cqlsh:system_schema> SELECT * FROM system_schema.keyspaces;
Comments
Post a Comment