Search found 53125 matches
- Thu Jun 09, 2011 5:12 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Archival of Table from ODS
- Replies: 5
- Views: 2087
- Thu Jun 09, 2011 5:09 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DB2 and Datastage Difference ?
- Replies: 1
- Views: 972
- Thu Jun 09, 2011 5:08 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Db2 CASE and Datastage transformer ...Which one is better??
- Replies: 1
- Views: 1087
- Thu Jun 09, 2011 5:07 am
- Forum: General
- Topic: Converting .XLS Format file to .csv
- Replies: 3
- Views: 954
- Wed Jun 08, 2011 8:23 pm
- Forum: General
- Topic: Recovering a deleted job
- Replies: 4
- Views: 1851
- Wed Jun 08, 2011 4:40 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Incorrect Data format when reading from a double datatype
- Replies: 7
- Views: 2482
- Wed Jun 08, 2011 4:39 pm
- Forum: General
- Topic: Universe database
- Replies: 8
- Views: 4084
That's a huge topic, one that could not easily be answered in a single reply. Why not Search DSXchange for examples? For instance, a search on CATEGORY will turn up answers to your second question.
- Wed Jun 08, 2011 4:37 pm
- Forum: General
- Topic: IBM Information server client install replace ODBC drivers.
- Replies: 4
- Views: 2498
- Wed Jun 08, 2011 4:36 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Double column data Issue
- Replies: 1
- Views: 1010
- Wed Jun 08, 2011 4:34 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Archival of Table from ODS
- Replies: 5
- Views: 2087
- Wed Jun 08, 2011 4:34 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to convert special character in Datastage Transformer
- Replies: 8
- Views: 11076
- Wed Jun 08, 2011 4:30 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Lookup not working as expected
- Replies: 5
- Views: 2667
- Wed Jun 08, 2011 4:29 pm
- Forum: General
- Topic: reporting on user access
- Replies: 2
- Views: 1005
- Wed Jun 08, 2011 4:28 pm
- Forum: General
- Topic: disconnect session from command prompt
- Replies: 3
- Views: 1011
- Wed Jun 08, 2011 3:55 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: question on padstring
- Replies: 7
- Views: 14154
Why necessarily with PadString() ? There is an easy way to left-pad with spaces. Create a string of that many spaces, concatenate the data, then extract the rightmost that many characters from the result.
Code: Select all
Right(Space(12):InLink.TheString),12)