rm -rf myfolder It deletes all files and folders contained in the myfolder directory. Add sudo at the beginning of
Continue readingCategory: how to
How do I delete all data in a Cassandra column family ?
We can truncate all rows from cassandra tables using truncate Example: cqlsh: test > TRUNCATE test.users ;
Continue readingHow to Convert Java Timestamp to MySQL timestamp vice versa
How to Insert java time in mysql timestamp java.util.Date date = new Date(); Timestamp timestamp = new Timestamp(date.getTime()); preparedStatement.setTimestamp(1,
Continue reading