Search found 53125 matches
- Mon Feb 28, 2011 5:13 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Implemention of aggregate funtion SUM
- Replies: 6
- Views: 2013
- Mon Feb 28, 2011 5:12 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Oracle EE to oracle connector
- Replies: 9
- Views: 5813
- Sat Feb 26, 2011 10:59 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Could not find input field
- Replies: 4
- Views: 17103
- Sat Feb 26, 2011 10:55 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: diff between .isx and .dsx
- Replies: 4
- Views: 10984
- Sat Feb 26, 2011 7:56 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: diff between .isx and .dsx
- Replies: 4
- Views: 10984
- Sat Feb 26, 2011 7:55 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: initializeFromArgs - Filter Stage
- Replies: 1
- Views: 3018
- Sat Feb 26, 2011 4:25 pm
- Forum: General
- Topic: I WANT TO SEND SYSDATE AS PARAMETER,SO WHAT COMMAND I SHOULD
- Replies: 3
- Views: 7534
- Sat Feb 26, 2011 3:57 pm
- Forum: General
- Topic: I WANT TO SEND SYSDATE AS PARAMETER,SO WHAT COMMAND I SHOULD
- Replies: 3
- Views: 7534
Three admonishments: 1. Always post in the correct forum. The one you chose is to suggest ideas for formal FAQ articles. If this is a DataStage question, post either in the Server job forum or the Enterprise Edition (parallel job) forum or, if you are not sure of the job type, in the General forum....
- Sat Feb 26, 2011 5:26 am
- Forum: General
- Topic: DS Job hagging when called an After Job routine
- Replies: 2
- Views: 5039
- Fri Feb 25, 2011 11:19 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to make a record for each comma separated field
- Replies: 25
- Views: 7645
When the field delimiter is something else.
Code: Select all
42~DENT~Arthur~BA,BSc,FAISSA,HH2G~1998-10-21~V- Fri Feb 25, 2011 2:11 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to make a record for each comma separated field
- Replies: 25
- Views: 7645
- Fri Feb 25, 2011 2:07 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: EXTRACT Numbers only
- Replies: 8
- Views: 3541
- Fri Feb 25, 2011 2:06 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to create empty XML file?
- Replies: 3
- Views: 1868
- Fri Feb 25, 2011 2:03 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Internal Error: (start <= end): surrkey/keystate.
- Replies: 1
- Views: 3238
- Fri Feb 25, 2011 2:00 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Month from Date YYYY-MM-DD
- Replies: 4
- Views: 1747
If you're reading a string containing a timestamp, just use substring technique. InLink.TheString[6,2] If you want to remove leading zero, just use this in an arithmetic expression. InLink.TheString[6,2] + 0 Since server edition does not have an internal timestamp representation that's all the discu...