Hi to all,
if you create a transformation job like this:
INSERT INTO _CEL_P2P_ACTIVITIES () SELECT * FROM Sorting = 10
;
INSERT INTO _CEL_P2P_ACTIVITIES () SELECT * FROM Sorting = 20
;
INSERT INTO _CEL_P2P_ACTIVITIES () SELECT * FROM Sorting = 30
;
INSERT INTO _CEL_P2P_ACTIVITIES () SELECT * FROM Sorting = 100
;
The table _ CEL_P2P _ACTIVITIES will only be inserted completely AFTER FINISHING the whole transforming job.
There is no way to measure the progress during the running transforming job, e.g. by
select _SORTING,count(*) from _CEL_P2P_ACTIVITIES group by _SORTING;
If you are not going to seperate the transforming job into several single transforming steps, is this behaviour correct?
Is there no way to commit every single step ?
Thank you in advance