How to design job

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
Vengadeshwaran v.j
Participant
Posts: 5
Joined: Thu Feb 21, 2008 4:55 am

How to design job

Post by Vengadeshwaran v.j »

Multiple files containing customer data comes from 10 countries. Each file contains exactly the same format. The same customer may exist in each file. But target should have only one record. The files may come any time. So it is possible that two files need to be processed simultaneously

1.In This Situation What are the job designs issues that you need to consider
2. How you would handle the flow of jobs
keshav0307
Premium Member
Premium Member
Posts: 783
Joined: Mon Jan 16, 2006 10:17 pm
Location: Sydney, Australia

Post by keshav0307 »

you can design a single job and run it on multiple instances.

i had similar requirement where 120 different applications sending data file, but in same format.

on target you can use upsert method to load.
also you can find many way to to it, if you search in this forum.
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

Can you not read all the files together and merge/sort them in your job?
keshav0307
Premium Member
Premium Member
Posts: 783
Joined: Mon Jan 16, 2006 10:17 pm
Location: Sydney, Australia

Post by keshav0307 »

oops forgot to mention that i had requirement to validate each file individually. but still we manage to design the jobs to process multiple files in a single job/sequence in single run.
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

Process the files inidividually and write the data into a DataSet using "append", then process the DataSet in a final job.
Post Reply