Hi,
I would to know if CQL can extract all column families from a given keyspace ?
I supposed i need to query the system keyspaces ...
Thanks a lot
Mickael
Hi,
I would to know if CQL can extract all column families from a given keyspace ?
I supposed i need to query the system keyspaces ...
Thanks a lot
Mickael
On the CQLsh command line you can use the DESCRIBE command to output a list of CQL commands that could be used to recreate the given table, as described in http://www.datastax.com/docs/1.2/cql_cli/cql/DESCRIBE#cqlsh-describe.
Hi,
Thanks a lot. I preferred use a query on schema_columnfamilies like this
SELECT columnfamily_name FROM schema_columnfamilies WHERE keyspace_name = 'cassandrademocql';
Mickael