I am new to cassandra and I am using cassandra version 2.1.17 which supports cassandra-cli . I created a keyspace using the following command
create keyspace employee with placement_strategy='org.apache.cassandra.locator.SimpleStrategy' and strategy_options = {replication_factor:1};
However when I use the command
use employee;
I get the following error
unconfigured table schema_columnfamilies
I am unable to understand what is the issue. Can someone help me resolve this issue. Thanks in advance.