Search found 9 matches

by ganesh.soundar
Thu May 14, 2009 11:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Load Parent and child table in a single job
Replies: 1
Views: 1341

Load Parent and child table in a single job

Hi, I have a requirement to load three target tables which have parent and child relationship. I tried loading these three tables in a single job. The parent table got loaded and job got aborted due to referential integertity constraint in child tables. Though i have ordered the output link using &q...
by ganesh.soundar
Thu May 07, 2009 6:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compare files taken from FTP
Replies: 5
Views: 2628

Compare files taken from FTP

Hi, I have a requirement to fetch two files from FTP server and then to perform checksum operation on those files. Need to identify those files are identical or different using the checksum value. I can perform column or record level checksum using Basic transformer. But no clue of how to do this co...
by ganesh.soundar
Thu May 07, 2009 6:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Download ZIP file from FTP server
Replies: 1
Views: 1197

Download ZIP file from FTP server

Hi,

Can anyone please tell me is there any possibility to download ZIP file from FTP server. I succeeded downloading a stand alone file (csv) from FTP server. Need to know any option available to download ZIP file.

Regards,
Raja
by ganesh.soundar
Sun Jul 27, 2008 11:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Metadata while lookup
Replies: 3
Views: 2130

Re: Problem with Metadata while lookup

Hope the Metadata of the hashed file might be changed and the changes is not reflected in the file that is created. It means the Hashed file will have the old metadata structure. Delete both the Hashed files and run the job as a fresh one.
by ganesh.soundar
Fri Apr 25, 2008 5:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stop the job from running when there is no i/p file
Replies: 14
Views: 8477

To prevent the execution of jobs that don't have data in its source file, you need to check the data availability of each input file using the shell script and call it will the help of Execute Command. But i feel you need to incorporate this before all the 100 Job activities that are available. My s...
by ganesh.soundar
Thu Apr 17, 2008 1:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: row merger
Replies: 9
Views: 4242

ray.wurlod wrote:What do you want to replace them with? Use a Convert() function. ...
Use the below code to remove the pipeline symbol

Convert('|','',<FieldName>)
by ganesh.soundar
Tue Apr 01, 2008 2:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to stop the sequence
Replies: 2
Views: 1577

Re: how to stop the sequence

Check the things that Arnd specified and to resolve this kill the process which is running in the background. Regards, Raja Soundararajan I am running a sequence and becuase of some errors it has aborted. When i am trying to compile the jobs present in the sequence the jobs are giving compile error ...
by ganesh.soundar
Fri Mar 28, 2008 11:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Deleting work (Hashed and Seq files) after job execution
Replies: 6
Views: 2871

Re: Deleting work (Hashed and Seq files) after job execution

Hope you are running in UNIX platform. If so use "rm" command with options available and place all the commands in a file. So the file will have the coding to remove all the files that are created. In Sequence you have an activity called Execute Command. Use that activity and make a call t...
by ganesh.soundar
Fri Mar 28, 2008 10:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequnce job failing
Replies: 4
Views: 2106

Re: Sequnce job failing

In the Job activity of a2 you have a option "Unconditional". Select that option so that though if a2 is getting aborted the following job activity a3 and a4 will be triggered. Regards, Raja Soundararajan Hi All In my project there is one master sequence job say A which calling other sub-se...