Drop Keyspace in Cassandra
Cassandra Drop Keyspace We can drop keyspaces in Cassandra with all the data, column families, user-defined types and indexes, using the “DROP Keyspace” command. Before dropping the keyspace, a snapshot of the keyspace is taken if the keyspace exists; otherwise, an error will be returned. Syntax: DROP keyspace Keyspace_Name; Example: DROP keyspace durable_example;DROP keyspace durable_example; … Read more