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

2019-10-25 Thread Durity, Sean R
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 primary key

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

Re: Insert via CQL

2012-11-03 Thread Sylvain Lebresne
On Sat, Nov 3, 2012 at 1:40 AM, Eric Evans eev...@acunu.com wrote: On Fri, Nov 2, 2012 at 8:09 PM, Vivek Mishra mishra.v...@gmail.com wrote: any idea, how to insert into a column family for a column of type blob via cql query? Yes, most of them involve binary data that is hex-encoded ascii.

Insert via CQL

2012-11-02 Thread Vivek Mishra
Hi, any idea, how to insert into a column family for a column of type blob via cql query? -Vivek

Re: Insert via CQL

2012-11-02 Thread Eric Evans
On Fri, Nov 2, 2012 at 8:09 PM, Vivek Mishra mishra.v...@gmail.com wrote: any idea, how to insert into a column family for a column of type blob via cql query? Yes, most of them involve binary data that is hex-encoded ascii. :) -- Eric Evans Acunu | http://www.acunu.com | @acunu

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?

Re: insert in cql

2012-04-11 Thread Eric Evans
On Wed, Apr 11, 2012 at 5:20 AM, puneet loya puneetl...@gmail.com 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

Re: insert in cql

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