What Mike said.
There's no great issue using two Transformers. Chances are that they'll be combined into the one process anyway (operator combination).
Search found 53125 matches
- Wed Feb 17, 2016 4:26 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Generating Surrogate Key in one Transformer
- Replies: 3
- Views: 2143
- Wed Feb 17, 2016 4:24 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Fetch XML CLOB data through Oracle Connector faster
- Replies: 9
- Views: 4507
- Wed Feb 17, 2016 4:22 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: CurrentDate() Year extract
- Replies: 4
- Views: 4225
Datastage default CurrentDate() format is %yyyy-%mm-%dd This is not necessarily true. For starters, the return value is of type Date, which is a binary number. Secondly, the default format when converting to a string depends on the locale, and the default set using the Project Properties in the Adm...
- Wed Feb 17, 2016 4:16 pm
- Forum: General
- Topic: Writing Job log into UNIX file
- Replies: 6
- Views: 2773
The easiest is to use the Director client. From the Project menu choose Print then, in the common print dialog, check the Print to File check box. This writes to a file on your client machine. To write to a file on your engine machine, prefer a routine that uses the DataStage API DSGetLog,.. functio...
- Wed Feb 17, 2016 4:14 pm
- Forum: IBM QualityStage
- Topic: USNAME clarification
- Replies: 20
- Views: 12403
- Tue Feb 16, 2016 4:20 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Fetch XML CLOB data through Oracle Connector faster
- Replies: 9
- Views: 4507
- Tue Feb 16, 2016 4:18 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Randomly Caught exception from runLocally()
- Replies: 1
- Views: 1485
Total memory seems to be being exhausted. Monitor real and virtual memory using Windows Performance Monitor while this is running. Ultimately you may need to schedule fewer jobs to run at the same time, so that total demand for memory is reduced. Or increase physical memory or pagefile size or both.
- Mon Feb 15, 2016 4:39 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Webservice Client Stage - Data issue
- Replies: 12
- Views: 4231
SOAP header (as you seem to have worked out) is empty
Code: Select all
<soapenv:Header/>- Mon Feb 15, 2016 4:32 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: stringtodecimal function clarification
- Replies: 9
- Views: 6698
- Mon Feb 15, 2016 4:26 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: lookup with LIKE and not with EQUAL
- Replies: 9
- Views: 4199
- Mon Feb 15, 2016 4:13 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Logic required for If / then / else in tranformer
- Replies: 8
- Views: 4068
- Mon Feb 15, 2016 4:06 pm
- Forum: General
- Topic: Can we create separate log for Multiple instance jobs?
- Replies: 7
- Views: 2446
- Mon Feb 15, 2016 4:05 pm
- Forum: Site/Forum
- Topic: Enhance "OS" dropdown.
- Replies: 3
- Views: 7706
- Sun Feb 14, 2016 9:08 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Logic required for If / then / else in tranformer
- Replies: 8
- Views: 4068
Most of your ELSE expressions won't be evaluated because they include the same IF test as was processed in the THEN clause.
All you need is:
All you need is:
Code: Select all
If IsNotNull(InLink.ACCT_NUM) Then Left(InLink.ACCT_NUM,2) : "XXXXX" : Right(InLink.ACCT_NUM,12) Else InLink.ACCT_NUM- Sun Feb 14, 2016 2:41 am
- Forum: General
- Topic: Can we create separate log for Multiple instance jobs?
- Replies: 7
- Views: 2446