vote up 1 vote down star

What is the recommended way to truncate a table using hibernate/hql?

I've tried this:

 Query query = session.createQuery("truncate table MyTable");
 query.executeUpdate();

But it didn't work (truncate doesn't seem do be documented anywhere in hql...)

flag

80% accept rate
Truncate is not a standard DML or DDL command, therefore is normal that it's not supported. – Lluis Martinez Dec 8 at 17:47

2 Answers

vote up 1 vote down check

I guess an horrible way of doing it would be deleting all.

public int hqlTruncate(String myTable){
    String hql = String.format("delete from %s",myTable);
    Query query = session.createQuery(hql)
    return query.executeUpdate();
}
link|flag
I ended up using this since I usually only have twenty or so records to delete at a time... Thanks! – unknown (google) Aug 12 at 16:14
vote up 3 vote down

You can use session.createSQLQuery() instead:

session.createSQLQuery("truncate table MyTable").executeUpdate();

Needless to say, this is not ideal in terms of portability. It's probably a good idea to define this query in mapping and retrieve it in code as named query.

link|flag
Then please write createSQLQuery and not createQuery in the example! – pihentagy Nov 25 at 16:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.