You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
QueryarchiveQuery = entityManager.createNativeQuery("update notification set archive_date=now() where id in (select id from notification where archived_date is null and date_created < :createdBefore)");
233
+
QueryarchiveQuery = entityManager.createNativeQuery("update notification set archived_date=now() where id in (select id from notification where archived_date is null and date_created < :createdBefore limit :batchSize)");
QueryarchiveQuery = entityManager.createNativeQuery("delete notification where id in (select id from notification where date_created < :createdBefore)");
0 commit comments