Search found 53125 matches
- Thu Feb 01, 2007 3:50 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: SAP idoc error
- Replies: 1
- Views: 1126
- Thu Feb 01, 2007 3:47 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error in assignment. SQLSTATE=22005
- Replies: 4
- Views: 15058
Are you saying that there was a French character in the source file that was passed to either key1 or key2? DataStage should have no trouble with this! However SQL Server may require NVarChar rather than VarChar (or NChar rather than Char) and this may have engendered the data type mismatch error fr...
- Thu Feb 01, 2007 3:44 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: '##' Parameter
- Replies: 6
- Views: 1703
It is not clear in your logic where you are trying to USE this job parameter. What is the name of the parameter? Is it ID? Is it SrcFilter? What I'd be looking for in such an expression, to use a comma-delimited list in a single job parameter is an IN operator (which is actually not valid). To proce...
- Thu Feb 01, 2007 3:39 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: send a file with $ 0.00 amount to bank
- Replies: 2
- Views: 893
If the lookup fails, that is there is no payment, simply replace the null payment amount with zero. Use the NullToZero Transform. Or derive as something like:
Code: Select all
If IsNull(RefInput.pymt) Then 0.00 Else RefInput.pymt- Thu Feb 01, 2007 3:36 pm
- Forum: General
- Topic: Folder stage and network folder
- Replies: 18
- Views: 5619
- Wed Jan 31, 2007 11:32 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Looking for Parallel Extender Developer PDF Guide
- Replies: 26
- Views: 7360
- Wed Jan 31, 2007 11:27 pm
- Forum: IBM QualityStage
- Topic: Regarding Dynamic blocking in Quality Stage
- Replies: 2
- Views: 1747
Welcome aboard. :D There's no such thing as dynamic blocking in QualityStage. You select one or more blocking fields in each match pass. For records even to be considered for matching, the blocking field values must be the same. Running multiple match passes with different blocking fields can help t...
- Wed Jan 31, 2007 11:21 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Load unmatched data
- Replies: 11
- Views: 2341
- Wed Jan 31, 2007 11:19 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to implement this in DataStage
- Replies: 5
- Views: 1281
- Wed Jan 31, 2007 11:14 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to implement this in DataStage
- Replies: 5
- Views: 1281
To paraphrase, do you want the overhead of selecting the (same) max value for every row you process? If so, you can do it in one job. A more efficient approach would be to select the max value in a prior job, park it somewhere (for example the prior job's user status area), then feed this value into...
- Wed Jan 31, 2007 11:12 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Invoking DS Jobs
- Replies: 8
- Views: 1971
- Wed Jan 31, 2007 11:10 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Reading file with variable record length
- Replies: 13
- Views: 4561
- Wed Jan 31, 2007 11:09 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Version Control: How do you do at your place
- Replies: 18
- Views: 4068
- Wed Jan 31, 2007 11:07 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Looking for Parallel Extender Developer PDF Guide
- Replies: 26
- Views: 7360
Your best chance for an online site is IBM but, as far as I am aware, they have not posted the manuals for download. It might be worth contacting your local IBM office to request copies of manuals; most IBM offices are usually prepared to help in these matters. But learn to be patient - nothing happ...
- Wed Jan 31, 2007 11:05 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Regarding JOBTYPE AND JOBTYPEIND columns in DS_JOBS table
- Replies: 3
- Views: 1463
JOBTYPE is the actual stored value. It is "" for a server job. JOBTYPEIND is a virtual field that replaces "" with 0. JobType = 0 for server job JobType = 1 for mainframe job JobType = 2 is Job Sequence JobType = 3 for parallel job <trivium> This is the chronological order that the job types became ...