warning in lookup stage

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

Post Reply
nair
Participant
Posts: 11
Joined: Fri Oct 14, 2005 12:44 pm

warning in lookup stage

Post by nair »

Hello Everybody,
I'm getting the following warnings, I'm using lookup stage in the job

Lookup_4: When checking operator: Operator of type "APT_LUTCreateOp": will

partition despite the
preserve-partitioning flag on the data set on input port 0.


Lookup_4: When checking operator: Dropping component "market_vle"

because of a prior component with the same name.

Anybody please suggest me how to eliminate the above warnings

Thanks and Regards
Nair
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

The first message stems from a partitioning requirement of the data - there is not enough information in your post to determine why one might exist - such as your job design. Remove the preserve-partitioning flag; set partitioning to Auto unless you have some reason for doing something different.

The second message stems from the fact that you can not have duplicate column names on an output link. To eliminate this message design the job so that it does not try to force market_vle onto the output from more than one source.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
phanee_k
Charter Member
Charter Member
Posts: 68
Joined: Thu Nov 20, 2003 11:02 pm

Post by phanee_k »

HI ,
I am also getting the same error and not getting cleared if I set the preserve partitioning as clear.

Job design as below.

DataSet
|
|
|
Dataset -------->LookupStage ----------> Transformer -----------> DataSet

I am getting the same error if the source is a sequential file .

How can we resolve this.

Thanks,
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Exactly the same error?

What are your partitioning settings on both inputs to the Lookup stage?
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
phanee_k
Charter Member
Charter Member
Posts: 68
Joined: Thu Nov 20, 2003 11:02 pm

Post by phanee_k »

Hi Ray,
Partitioning is set to Auto .
It tried with hash partitioning on the reference link and Auto on Primary link.
Tried with setting the preserve partioning to clear.

But no luck.
kumar_s
Charter Member
Charter Member
Posts: 5245
Joined: Thu Jun 16, 2005 11:00 pm

Post by kumar_s »

Hi,

Try the reference dataset as entire partiton and the main dataset sequence as hash partiton.
If the key in which the dataset is partitoned is different from the lookup key, then you may need to clear the partiton of the dataset and maintain another to lookup.
Also post the warning message you get.

-Kumar
balajisr
Charter Member
Charter Member
Posts: 785
Joined: Thu Jul 28, 2005 8:58 am

Post by balajisr »

Hi

Try this.

Set partioning to Auto for source and reference dataset and preserve partition flag to Auto i.e Let datastage decide about the partitioning and preserve partition flag and verify whether it works.

--Balaji S.R
Post Reply