select * from table in CQLSH

2014-08-13 Thread Tim Dunphy
Hello, I am trying to figure out how to do a select * from a table that's stored in a cassandra database. [root@beta-new:/home/tiezinteractive/www/cassandra] #cqlsh Connected to Jokefire Cluster at beta-new.jokefire.com:9160. [cqlsh 4.1.0 | Cassandra 2.0.6 | CQL spec 3.0.0 | Thrift protocol

Re: select * from table in CQLSH

2014-08-13 Thread Adam Holmberg
I think you just need to quote the Users identifier. Without quotes, identifiers are treated as case-insensitive. https://cassandra.apache.org/doc/cql3/CQL.html#identifiers Adam On Wed, Aug 13, 2014 at 9:27 AM, Tim Dunphy bluethu...@gmail.com wrote: Hello, I am trying to figure out how to

Re: select * from table in CQLSH

2014-08-13 Thread Tim Dunphy
I think you just need to quote the Users identifier. Without quotes, identifiers are treated as case-insensitive. https://cassandra.apache.org/doc/cql3/CQL.html#identifiers Hi Adam! Yes that was it. It's working now. cqlsh:demo select * from Users; key