Search found 7 matches

by RajaUsa75
Thu Jan 18, 2007 4:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to unpack a packed decimal in Parallel job
Replies: 2
Views: 1457

Re: How to unpack a packed decimal in Parallel job

Searching for "packed decimal" in the forum will fetch the required information. Following is one such thread:

viewtopic.php?t=104742&highlight=packed+decimal
by RajaUsa75
Tue Nov 14, 2006 12:40 pm
Forum: General
Topic: How do you call a file that has SQL scripts
Replies: 8
Views: 7534

Re: How do you call a file that has SQL scripts

Mun... You didn't mention what database you are working with. You need to use command line database command to execute the SQLs kept in the file. For example in UDB, you can use a shell script (say loadtbl.sh) as follows: db2 connect to dbname user userid using password db2 -tvf ASSETupd.sql > ASSET...
by RajaUsa75
Thu Nov 09, 2006 12:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Hashed File
Replies: 11
Views: 6752

It is highly irresponsible to post such replies in a porfessional forum like DSXCHANGE. Mods, please remove these replies from the thread to maintain the high standards of our Forum. Hi Prashant & Jothy, I understand you have a keyboard with you. It is not that you can just blindly type somethin...
by RajaUsa75
Thu Sep 07, 2006 9:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: look up failed
Replies: 6
Views: 2976

Hope you are using Lookup stage in Parallel job. Lookup stage process is RAM based and you may use it only for smaller lookup tables. For larger lookup tables, consider using DISK based stages such as JOIN. One problem with Join stage is that you can't have more than one lookup table. Good Luck!
by RajaUsa75
Thu Dec 01, 2005 10:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Infinite looping of a Datastage Sequence (using waitforfile)
Replies: 2
Views: 4204

Thanks vmcburney. It works!!!

Raj.
by RajaUsa75
Wed Nov 30, 2005 2:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Infinite looping of a Datastage Sequence (using waitforfile)
Replies: 2
Views: 4204

Infinite looping of a Datastage Sequence (using waitforfile)

My requirement is as follows: 1. The sequencer job need to wait for a file (say, salesdata.txt) to appear in a particular directory in unix box. 2. Once the processing is done, the file is deleted from the directory. 3. The job should go into loop and wait for a new file with the SAME name to appear...
by RajaUsa75
Tue Nov 29, 2005 1:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Start Loop End Loop
Replies: 21
Views: 14023

Loop indefinitely for a fixed duration

My requirement is as follows: 1. The sequencer job need to wait for a file (say, salesdata.txt) to appear in a particular directory in unix box. 2. Once the processing is done, the file is deleted from the directory. 3. The job should go into loop and wait for a new file with the SAME name to appear...