Page 1 of 1

Warning - Sort Stage

Posted: Thu Jul 05, 2007 5:26 am
by devidotcom
I have observed that in most of my parallel jobs which uses a sort stage I get this kind of warning mentioned below.
Could any one please elobrate and tell me why I get this warning.

Here in this sort stage 'Sort_Brck_Mrtr_Str_I' has the partitioning done on the column BRCK_MRTR_STR_I. I perform a hash partitioning on this key in the sort stage.

Sort_Brck_Mrtr_Str_I: When checking operator: Operator of type "APT_TSortOperator": will partition despite the
preserve-partitioning flag on the data set on input port 0.

Posted: Thu Jul 05, 2007 9:39 am
by ray.wurlod
Please post how this issue was resolved, to aid future searchers.

Re: Warning - Sort Stage

Posted: Wed Jul 11, 2007 1:27 am
by prashkvrk
In the sort stage, you are specifying the hash key and the partioning mode. But in the stage prior to the sort stage you must clear the partioning mode. The sorting and partioning mode prior to the sort stage is different and since you are changing it , you will be getting this warning.

so in order to avoid this warning try this:
in the stage prior to sort stage , go to stage tab and in that go to advanced tab, thr u will find the option of giving the partioning mode. give clear. so the partition will get cleared and you can avoid this warning.

Jus try this one !