Search found 5168 matches
- Thu Jul 27, 2006 6:52 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: change code
- Replies: 3
- Views: 922
- Thu Jul 27, 2006 6:49 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unable to populate a char field
- Replies: 12
- Views: 4693
- Thu Jul 27, 2006 2:38 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Warning on APT_ParallelSortMergeOperator
- Replies: 8
- Views: 11974
Somehow the most of data is rushing in to Partition 0. What type of key is specified in Removeduplicate. What type data is it? If the data (key) is of same kind, hash partition will force to flow the data in same partition. Or try to partition on the key which is required for the removedulicate, on ...
- Thu Jul 27, 2006 1:47 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Help for datastage certification
- Replies: 1
- Views: 647
There is no such 'material' for Datastage certification as other do. But you have lot of information provided in this site as well as in others. Check in IBM websit for the more information. Vincent has posted lots of blogs reg certification. Visit this post "How do I get certification for DataStage...
- Thu Jul 27, 2006 1:44 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problem when dealing with Date
- Replies: 7
- Views: 2855
- Thu Jul 27, 2006 1:33 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to join 2 flat files in server jobs
- Replies: 2
- Views: 762
- Wed Jul 26, 2006 11:21 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Date Conversion in EE
- Replies: 3
- Views: 1076
- Wed Jul 26, 2006 10:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Parameter Limit
- Replies: 4
- Views: 1013
- Wed Jul 26, 2006 10:27 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: wcs in datawarehouse
- Replies: 7
- Views: 1569
- Wed Jul 26, 2006 10:19 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: mainframe file issue
- Replies: 2
- Views: 448
- Wed Jul 26, 2006 10:17 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: mainframe file issue
- Replies: 2
- Views: 448
Since the file is in Ebcidic formate, you canot use unix command readily. Check whether you can count the number of lines of the file using wc -l command. If it succeed, it proves the file has the end of line as new line character. So you can wipe out the first and last in unix command in the filter...
- Wed Jul 26, 2006 10:09 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Retreving Multiple Records using Universe Stage
- Replies: 13
- Views: 4002
- Wed Jul 26, 2006 7:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Retreving Multiple Records using Universe Stage
- Replies: 13
- Views: 4002
- Wed Jul 26, 2006 7:21 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Index Query
- Replies: 4
- Views: 1007
Have DCount() function in the constraint to count and reject or allow the record based on the number of delimeter '*' found.
In derivation,
In derivation,
Code: Select all
If Link.InputCol[1,3] = 'LPG' Then 'NPG':Link.InputCol[4,Len(Link.InputCol)] Else Link.InputCol- Wed Jul 26, 2006 7:12 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: environmental variable password?
- Replies: 8
- Views: 2337
It depends on how you configured the Sequence. If you had give the $PROJDEF in JobSequence, it gets the value from Project level setting. Since, JobSequence is the point where the whole parameter value is been passed, your assertion will be right. If by chance parameter doesnt match each other, the ...