Search found 53125 matches
- Wed Aug 08, 2012 2:55 pm
- Forum: IBM QualityStage
- Topic: Is it possible to standardize the international persons
- Replies: 3
- Views: 2931
- Wed Aug 08, 2012 2:51 pm
- Forum: IBM QualityStage
- Topic: Indian Rule Sets
- Replies: 3
- Views: 2461
- Tue Aug 07, 2012 11:53 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Trillium and Datastage Connectivity Issue
- Replies: 6
- Views: 1933
Not really, because I'm not that familiar with the Trillium API. Assuming that it's like the ODBC and DB2 APIs, your code may need to do some or all of the following when reading from Trillium: establish connection environment establish connection set connection properties (eg. transaction isolation...
- Tue Aug 07, 2012 11:48 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: ODBC Connector _Before SQL section:Insert issue
- Replies: 2
- Views: 1174
- Tue Aug 07, 2012 11:47 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Remove duplicate issue
- Replies: 2
- Views: 1803
- Tue Aug 07, 2012 11:44 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Partital Data Load
- Replies: 11
- Views: 5522
- Tue Aug 07, 2012 11:41 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Extract substring
- Replies: 10
- Views: 5121
- Tue Aug 07, 2012 11:38 pm
- Forum: General
- Topic: Need New Zealand IBM software support number to raise a PMR
- Replies: 13
- Views: 3996
- Tue Aug 07, 2012 5:47 pm
- Forum: General
- Topic: I need to reformat string to date in job parameters
- Replies: 7
- Views: 2528
My preference would be:
Code: Select all
Oconv(Iconv(jpStringDate, "D"), "DYMD[4,2,2]" : @VM : "MCN")- Tue Aug 07, 2012 5:42 pm
- Forum: General
- Topic: getting execute command stage output
- Replies: 13
- Views: 17511
- Tue Aug 07, 2012 5:34 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: SQL query or explicit stage
- Replies: 4
- Views: 1560
- Tue Aug 07, 2012 5:32 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Remove Leading Zeros for Decimal field
- Replies: 3
- Views: 4063
- Tue Aug 07, 2012 5:29 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how to find minimum value in a column using transformer?
- Replies: 11
- Views: 4336
- Tue Aug 07, 2012 3:59 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how to find minimum value in a column using transformer?
- Replies: 11
- Views: 4336
Initialize stage variable to a very large value. As each row is processed compare the column to the stage variable. If the value in the column is less than the value in the stage variable, replace the stage variable's value with that value. Once the last row has been processed the stage variable (an...