RE: [EXTERNAL] n00b q re UPDATE v. INSERT in CQL

2019-10-25 Thread Durity, Sean R
ndra.apache.org Subject: [EXTERNAL] n00b q re UPDATE v. INSERT in CQL Hi folks, I'm working on a clean-up task for some bad data in a cassandra db. The bad data in this case are values with mixed case that will need to be lowercased. In some tables the value that needs to be changed is a p

n00b q re UPDATE v. INSERT in CQL

2019-10-25 Thread James A. Robinson
Hi folks, I'm working on a clean-up task for some bad data in a cassandra db. The bad data in this case are values with mixed case that will need to be lowercased. In some tables the value that needs to be changed is a primary key, in other cases it is not. >From the reading I've done, the situa

Re: insert in cql

2012-04-11 Thread puneet loya
thank you :) On Wed, Apr 11, 2012 at 8:55 PM, Eric Evans wrote: > On Wed, Apr 11, 2012 at 5:20 AM, puneet loya wrote: > > insert into users (KEY) values (512313); > > > > users is my column family and key is its only attribute.. > > > > It is giving an error > > bad request : line 1:24 required

Re: insert in cql

2012-04-11 Thread Eric Evans
On Wed, Apr 11, 2012 at 5:20 AM, puneet loya wrote: > insert into users (KEY) values (512313); > > users is my column family and key is its only attribute.. > > It is giving an error > bad request : line 1:24 required (...)+ loop did not match anything at input > ')' > > do you find any error here

insert in cql

2012-04-11 Thread puneet loya
insert into users (KEY) values (512313); users is my column family and key is its only attribute.. It is giving an error bad request : line 1:24 required (...)+ loop did not match anything at input ')' do you find any error here?