Parellel Updates

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
vss
Participant
Posts: 10
Joined: Mon Oct 10, 2005 12:31 am

Parellel Updates

Post by vss »

Hi,

Can anyone provide me the pointers to run updates on a single table with multiple node config and avoid deadlock at the same time.

Many thanks in advance,
Vishal
anntaylor
Participant
Posts: 24
Joined: Tue May 10, 2005 5:17 pm

Post by anntaylor »

Try partitioning on the primary keys. You could also remove duplicates (keep last sorted by date) to update with the most recent update.
keshav0307
Premium Member
Premium Member
Posts: 783
Joined: Mon Jan 16, 2006 10:17 pm
Location: Sydney, Australia

Post by keshav0307 »

Hash partition on the primay key ( you must have used in the update where clause), and set prpoer row commit size.
Post Reply