Partitioning Technique for Change Capture Stage

A forum for discussing DataStage<sup>®</sup> basics. If you're not sure where your question goes, start here.

Moderators: chulett, rschirm, roy

Post Reply
deepa_shenoy
Participant
Posts: 95
Joined: Thu Sep 24, 2009 12:15 am
Location: India

Partitioning Technique for Change Capture Stage

Post by deepa_shenoy »

Hi All,

I would like to know the best Partitioning Technique for Change Capture Stage.

The preceeding stage is a Sequential File and the target is an ODBC Enterprise stage.

Thanks in advance.

Regards,

Deepa
nani0907
Participant
Posts: 155
Joined: Wed Apr 18, 2007 10:30 am

Post by nani0907 »

it would be the hash partioning based on the keys .Try this
thanks n regards
nani
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

"Best" does not come into it. You need a key-based partitioning algorithm that causes key adjacency - that is, all records that have the same value in those columns that are identified as Change Key candidates must end up on the same partition.

If the Change Key is a single integer column, then Modulus is preferred, as it is slightly more efficient than Hash. Any other format of Change Keys and you need Hash.
Last edited by ray.wurlod on Tue Dec 29, 2009 12:21 am, edited 1 time in total.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
nani0907
Participant
Posts: 155
Joined: Wed Apr 18, 2007 10:30 am

Post by nani0907 »

it would be the hash partioning based on the keys .Try this
thanks n regards
nani
Post Reply