Будут формироваться и выполняться блоки вида 01execute block as
02 declare "ID" BIGINT;
03 declare "P0" SMALLINT;
04 .....
05begin
06 for execute statement 'select "ID", .... from "...."'
07 on external data source '....' as user '...' password '....'
08 into :"ID",:"P0",..... do
09 insert into "...."("ID",....)
10 values (:"ID",:"P0",.....);
11end
|