Search found 3329 matches
- Wed May 20, 2009 2:48 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: split record
- Replies: 2
- Views: 1291
- Tue May 19, 2009 8:33 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: sequence does not compile
- Replies: 9
- Views: 3462
- Tue May 19, 2009 8:33 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: sequence does not compile
- Replies: 9
- Views: 3462
- Tue May 19, 2009 8:31 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Range lookup issue
- Replies: 18
- Views: 5126
- Tue May 19, 2009 5:42 am
- Forum: General
- Topic: User-defined SQL Query File and Parameters
- Replies: 3
- Views: 1309
- Mon May 18, 2009 5:48 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Null handling for 200 / 300 columns at one go.
- Replies: 14
- Views: 4159
- Mon May 18, 2009 5:24 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DataStage Job run from Unix Command Line
- Replies: 13
- Views: 19376
- Mon May 18, 2009 5:04 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Range lookup issue
- Replies: 18
- Views: 5126
- Fri May 15, 2009 3:51 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Text file read aborts - Short read encountered
- Replies: 8
- Views: 4168
- Thu May 14, 2009 9:48 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: job id & sequence id
- Replies: 5
- Views: 1440
- Thu May 14, 2009 2:40 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Data Pivoting/Spliting
- Replies: 11
- Views: 2999
==== Input: ==== colX colY 1 Bill,Brain,Greagory 2 Sam, Bopel 3 4 Toby Here the max occurance = 3 (for row 1). Step1: So generate 3 rows from rowgen. ===== rowgen: ===== colDummy colIndex 1 1 1 2 1 3 Step2: Add dummy column to input colDummy colX colY 1 1 Bill,Brain,Greagory 1 2 Sam, Bopel 1 3 1 4 T...
- Wed May 13, 2009 10:19 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Import CFD File layout
- Replies: 8
- Views: 2060
- Wed May 13, 2009 8:19 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DataStage Job run from Unix Command Line
- Replies: 13
- Views: 19376
- Wed May 13, 2009 4:00 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Data Pivoting/Spliting
- Replies: 11
- Views: 2999
- Wed May 13, 2009 3:57 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Data Pivoting/Spliting
- Replies: 11
- Views: 2999
Row generator will produce 2 columns which are 1.) a dummy column (say constant 1) 2.) sequence from 1 to n (n = max possible list of values in the column you wish to split) Add the same dummy column to your input row. Join them, use the sequence column to field() and add necessary constraints. You ...