Performance issue in Server job

Post questions here relative to DataStage Server Edition for such areas as Server job design, DS Basic, Routines, Job Sequences, etc.

Moderators: chulett, rschirm, roy

Post Reply
justicevb
Participant
Posts: 10
Joined: Thu Jul 03, 2008 6:07 am

Performance issue in Server job

Post by justicevb »

Hi,

here in my scenario we are facing the performance problem because of Universe tables are used as look up tables.

In my scenario only we are using Transformer, look up Hash files, look up tables and sequential files.

Now it was loading the data with 20 rows/sec

need to load 900000 records..

Could some one help us..


Thanks,
vv
xxx
basu.ds
Participant
Posts: 118
Joined: Tue Feb 06, 2007 12:59 am
Location: Bangalore

Post by basu.ds »

Change array size and transaction size while extracting and loading also it will give better performance and create index on target tables
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

What makes you think the lookups are the problem? And are they really "Universe" lookups or are they Hashed File lookups?
-craig

"You can never have too many knives" -- Logan Nine Fingers
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Any SQL-based lookup will be slower than hashed file lookup.

Greater speed can be had if the columns mentioned in the WHERE clause are indexed; without that you are potentially performing a full table scan for each row processed.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
Post Reply