Search found 15603 matches
- Tue Sep 15, 2009 8:24 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to do length validation of datatypes
- Replies: 1
- Views: 614
- Tue Sep 15, 2009 8:18 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: double quotes inside data
- Replies: 7
- Views: 2125
- Tue Sep 15, 2009 7:54 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: CPU resource utilization
- Replies: 7
- Views: 3228
- Tue Sep 15, 2009 6:43 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: double quotes inside data
- Replies: 7
- Views: 2125
[
is a WFF.
The server job is tolerant of this incorrect data format.
Code: Select all
1,"company name ""super company""","company1"The server job is tolerant of this incorrect data format.
- Tue Sep 15, 2009 6:03 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: double quotes inside data
- Replies: 7
- Views: 2125
DST - this is not a bug.
Embedded quotes must be doubled.
Code: Select all
"I am not " a well-formed sentence. But ""I"" am."- Tue Sep 15, 2009 3:31 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Is there any way in DS to Encrypt the Data in a column?
- Replies: 7
- Views: 1831
- Tue Sep 15, 2009 3:28 am
- Forum: General
- Topic: fatal error
- Replies: 1
- Views: 676
- Tue Sep 15, 2009 3:27 am
- Forum: General
- Topic: Email- Error sending Mail
- Replies: 6
- Views: 2159
- Tue Sep 15, 2009 3:06 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: double quotes inside data
- Replies: 7
- Views: 2125
dnat - your source file is badly formed, the correct thing to do is to correct the file. If that is not possible then another option would work if you are certain that your column separator, the '|' symbol, does not occur in the data. In that case, don't use a quote character at all and read in the ...
- Mon Sep 14, 2009 11:27 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Not able to see the datastage logs from Director.
- Replies: 10
- Views: 4564
- Mon Sep 14, 2009 11:21 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Transformer error
- Replies: 1
- Views: 1459
- Mon Sep 14, 2009 10:53 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Reading zoned decimals in DB2
- Replies: 3
- Views: 1521
- Mon Sep 14, 2009 10:49 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Problem with special character in joining
- Replies: 1
- Views: 552
- Mon Sep 14, 2009 9:43 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Auto partitioning in join/merge stages
- Replies: 10
- Views: 4794
- Mon Sep 14, 2009 9:41 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Pad with Zeros
- Replies: 3
- Views: 1056
You will need to convert the number to a string. A simple way would be to declare a VarChar(8) field and the derivatio of
Code: Select all
Right('00000000':In.StageVar,8)