Search found 53125 matches
- Thu Sep 20, 2012 3:30 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Generate xml with 3 records within the tags
- Replies: 3
- Views: 1421
- Thu Sep 20, 2012 3:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Can not open the file that contains the SQL statement
- Replies: 14
- Views: 6911
- Thu Sep 20, 2012 3:25 pm
- Forum: General
- Topic: JOB ID In datastage
- Replies: 7
- Views: 6345
- Thu Sep 20, 2012 3:22 pm
- Forum: General
- Topic: DataStage project creation error
- Replies: 23
- Views: 7285
- Thu Sep 20, 2012 5:45 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: string to timestamp conversion
- Replies: 3
- Views: 1895
- Thu Sep 20, 2012 5:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to pass current date as filename in datastage server
- Replies: 7
- Views: 13668
- Tue Sep 18, 2012 9:43 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: need a logic for selection
- Replies: 3
- Views: 884
- Tue Sep 18, 2012 9:41 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: configration file, paging standards?
- Replies: 14
- Views: 2828
- Tue Sep 18, 2012 9:40 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: using long var char job failed, nvar job was successful
- Replies: 3
- Views: 940
- Tue Sep 18, 2012 8:36 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: need a logic for selection
- Replies: 3
- Views: 884
So that I understand your requirement correctly, can you please confirm that you're trying to achieve the equivalent of this SQL? SELECT * FROM tablename T1 WHERE T1.seq_no = (SELECT MIN(T2.seq_no) FROM tablename T2 WHERE T1.customer_ID = T2.customer_ID AND T2.orig_Ind = 'N') The solution is likely ...
- Tue Sep 18, 2012 8:32 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: using long var char job failed, nvar job was successful
- Replies: 3
- Views: 940
It's from neither point of view; it's from a METADATA perspective that you have this issue. VARCHAR is your traditional, variable-length character string containing, typically, ASCII characters. NVARCHAR is one way of specifying that the contained data are encoded using something other than a single...
- Tue Sep 18, 2012 8:28 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Sequential File Layout to datastage table def's
- Replies: 4
- Views: 2172
You did not state that in your original questions. I can only read minds at short range. While creating table definitions in the DS_METADATA table is possible, it is not for the faint-hearted. There are 156 columns in this table, but the file dictionary only specifies the first five. The remainder o...
- Tue Sep 18, 2012 8:25 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: configration file, paging standards?
- Replies: 14
- Views: 2828
1) There are no standards for paging. What determines how much data goes to each node is the partitioning algorithm. Your scenario (populating only two nodes out of three) might be seen if the data were partitioned using a key-based partitioning algorithm based on a two-valued field, what is classed...
- Tue Sep 18, 2012 3:31 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Sequential File Layout to datastage table def's
- Replies: 4
- Views: 2172
- Tue Sep 18, 2012 3:27 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to handle Chinese characters
- Replies: 2
- Views: 1420
If you have NLS enabled, then 延, 安, 东, 路, 5 and 号 are all printable characters. Perhaps you can use a server job, or a server Transformer stage in a server shared container, or a BASIC Transformer stage, with a routine that checks the result of the UniSeq() function applied to each character in turn...