//Does not support batch delete or update
//Following is my specification
Query query = session.createQuery("delete from BosTableData”);
query .setBatchSize(30);
query .executeBatch(); //since full delete or update has time out constraints. Also depends on columns of table.
|
|