I have used hibernate 3.0 bulk delete as follows and it works fine.
int deletedAttachments = session.createQuery(
"delete Attachment where fkFrmTrackingId= :trackingId and filename= :filename").
setLong("trackingId", trackingId).
setString("filename", filename).
executeUpdate();