Cassandra Crud Operation
Cassandra Crud Operation
QUERIES:
1.CREATE KEYSPACES:
cqlsh> CREATE KEYSPACE viims1 WITH
replication={'class':'SimpleStrategy','replication_factor':2};
2.DESCRIBE KEYSPACES:
cqlsh> describe keyspaces;
3.USE KEYSPACE:
cqlsh> use viims1;
(5 rows)
(4 rows)
(4 rows)
(1 rows)
(4 rows)
RESULT:
Thus the above program has been executed successfully.