How to drop a column

2013-09-04 Thread Alberto Carrascal
What is the alternative to the useful and well-known sentence: ALTER TABLE DROP in new versions of Cassandra? I'm using Cassandra 1.2.8 and cql 3 spec.

Re: How to drop a column family (Cassandra 6.1)

2010-05-31 Thread xavier manach
m_drop_column_family will drop the CF definition > > truncate (available from 0.7) will delete the data, which is equivalent to > the steps 1-4 above > > > On Mon, May 31, 2010 at 12:33 PM, xavier manach wrote: > >> Hi >> >> In the API I see : system_drop_colu

Re: How to drop a column family (Cassandra 6.1)

2010-05-31 Thread Ran Tavory
e the data, which is equivalent to the steps 1-4 above On Mon, May 31, 2010 at 12:33 PM, xavier manach wrote: > Hi > > In the API I see : system_drop_column_family *Requires Cassandra 0.7 > * > How to drop a column family with Cassandra 6.1 ? > * > Delete *the f

How to drop a column family (Cassandra 6.1)

2010-05-31 Thread xavier manach
Hi In the API I see : system_drop_column_family *Requires Cassandra 0.7 * How to drop a column family with Cassandra 6.1 ? * Delete *the files MYCOLUMNFAMILY-XXX-Data.db, MYCOLUMNFAMILY-XXX-Filter.db , MYCOLUMNFAMILY-XXX-Index.db is a good ways ? Can I recreate this columnfamily after this