Search found 5168 matches

by kumar_s
Thu Aug 03, 2006 7:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: non delimiter file
Replies: 13
Views: 4688

head -40 should give you first 40lines, tail -40 should give your last 40 lines, apart from this, may I know what difference made your job to run fine?
by kumar_s
Thu Aug 03, 2006 7:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Row count always correct?
Replies: 6
Views: 2146

Still you cannot completly rely on the this performance staticts. The Environmental varialbe Setting in DS Administrator might change this character.
by kumar_s
Thu Aug 03, 2006 7:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to preventing the join stage from sorting the records
Replies: 18
Views: 5206

Ok after going through the Operators Guide, though it is given in osh terms, upto my understanding, the auto insertion of partiton and sort happens only if we have auto partition (Datastage). And tsort and psort are the two integrated options of the available Sort stages(Operators). The auto inserti...
by kumar_s
Thu Aug 03, 2006 7:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error While running multiple instances
Replies: 30
Views: 11242

Though you dont have any stages that used the temp area aggresively, the parallel execution of the jobs might be the source of you issue.
by kumar_s
Thu Aug 03, 2006 7:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 EE stage - rows getting rejected
Replies: 11
Views: 2490

Kirtikumar wrote:Thanks Vincent!!!

The article is a great help to handle the rejects. In server we used to handle the errors and warnings using link variables.
In PX it is a more time consuming process.

Just wait for few days, you can find another blog for this from the blog-man. :wink:
by kumar_s
Thu Aug 03, 2006 1:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Timeout parameter
Replies: 6
Views: 6370

What is the purpose of inactivity timeout parameter that is available in datastage administrator? Does it enforce only on the timeouts only between datastage client and datastage server.

Yes.
by kumar_s
Thu Aug 03, 2006 1:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compilation Error when Transformer is used
Replies: 5
Views: 2336

Set the value of PWD to your project folder which will be like c:\Ascential\Datastage\Projects\projectname. or just '.' for current directory. Last I can recall, Windows XP is not supported for parallel jobs. Might want to check with the vendor. Not the Home edition but proffesional edition works.
by kumar_s
Thu Aug 03, 2006 1:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to preventing the join stage from sorting the records
Replies: 18
Views: 5206

The data sets input to the Join stage must be key partitioned and sorted. is the recomendation given by Ascential, for the best results. Threre is auto insertion of tsort and psort if the data is found not in sorted order. And this can be controlled by the parameter available in DS Admnistrator. Tu...
by kumar_s
Thu Aug 03, 2006 1:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Error Failed to match node
Replies: 5
Views: 2366

Check whether the file is been written under each node pool.
Try to recreate with another set of config file and try to do a lookup.
by kumar_s
Thu Aug 03, 2006 1:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Record count in Data Stage Seq file
Replies: 26
Views: 16158

What is the error you obtained? Parameters are not enclosed with # in routines. For the same reason, I asked you to check whether the value fo parameter is reflected in side routine. Call DsLogInfo("",param_FilePath); If this gives you output value, you can assum parameters can be used inside the ro...
by kumar_s
Wed Aug 02, 2006 11:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Error Failed to match node
Replies: 5
Views: 2366

What is the partition used while creating the lookup fileset and what is used while doing a lookup?
by kumar_s
Wed Aug 02, 2006 10:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 EE stage - rows getting rejected
Replies: 11
Views: 2490

You can get these tricks if you go through the blog released by vincent on "Unplesent discharge".
Perhaps what Om Prakash would have suggested you is to check the log file generated by DB2 in its server. That would give more information on teh reason of reject.
by kumar_s
Wed Aug 02, 2006 10:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to preventing the join stage from sorting the records
Replies: 18
Views: 5206

It might the obvious myth that gets in to mind that, Partion makes the data sorted. No.
by kumar_s
Wed Aug 02, 2006 10:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job failed : Output file full, and no more output files
Replies: 5
Views: 12043

The 100 records in the right will be buffered. Which might not have have crossed you default buffering limit that has been set in DS Admistrator client. Records in the left link will has to be read and should be buffered till it get a first match in the left link. It actually didnt found any match t...