FabTrex
FabTrex

Reputation: 97

CQL Error InvalidRequest: code=2200 [Invalid query] message="unconfigured table employess"

Very much new to CQL (Cassendra) . I get this error when inserting records,

InvalidRequest: code=2200 [Invalid query] message="unconfigured table employess"

These are the commands issued, Am i missing anything . (I am trying this Cassendra CQL shell)

CREATE KEYSPACE people WITH replication = {'class': 'SimpleStrategy', 'replication_factor': '3'}  AND durable_writes = true;

USE people;
CREATE Table employees(id uuid,name varchar,PRIMARY KEY(id, email));


cqlsh:people> insert into employess (id,name,email) values (now(),'Jon Don','[email protected]');

Upvotes: 3

Views: 21123

Answers (1)

adutra
adutra

Reputation: 4526

You have misspelled your table: it's employees, not employess.

Upvotes: 21

Related Questions