Is there a way to issue a commit during a delete. Trying to delete 150000 rows from a table using dbaccess and it not only uses all locks, but it takes forever(6 hours before lock problem). Is there a way that I can issue a commit after deleting say 10000 rows? When I break the deletes down to multiple jobs I deleted all rows in 25 minutes.
table_a
group_id serial
delete from table_a where group_id < 1350000;
table_a
group_id serial
delete from table_a where group_id < 1350000;