У меня есть сценарий sql 500 000 строк.
update users set region_id = 9814746 where id = 101 and region_id is null;
update users set region_id = 9814731 where id = 102 and region_id is null;
update users set region_id = 3470676 where id = 103 and region_id is null;
...
....
Мне нужно иметь возможность сгенерировать скрипт с помощью команды begin ... commit каждые 50 строк.
Как мне это сделать?
Я буду запускать это в pg-admin.
Спасибо,
Sharadov