Search found 53125 matches
- Sun Feb 10, 2013 1:04 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Loading special characters in Teradata - Bulk mode
- Replies: 3
- Views: 3275
- Sun Feb 10, 2013 1:01 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Complex Flat File stage with Variable Length rows
- Replies: 14
- Views: 9061
I assume that PIX(5) actually means PIC X(5). Because there is no OCCURS DEPENDING ON clause Phone_Grp will always occur exactly three times. Presumably the unused fields are blank-filled. Since the data type is string, DataStage will happily read those strings; you can filter them out (replace with...
- Sun Feb 10, 2013 12:58 pm
- Forum: General
- Topic: What is the major difference between datastage 7.5 and 8.5 ?
- Replies: 6
- Views: 11923
- Sat Feb 09, 2013 11:11 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: FTP Error - Authentication Failed
- Replies: 1
- Views: 1175
- Sat Feb 09, 2013 11:10 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Sequence number generation issue in target database
- Replies: 18
- Views: 8458
- Sat Feb 09, 2013 4:02 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Sequence number generation issue in target database
- Replies: 18
- Views: 8458
- Sat Feb 09, 2013 4:01 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: ora-12899: value too large for column
- Replies: 7
- Views: 2875
1. Don't try to shoehorn 40 characters into a 9-character space. Your approach of excising the first nine characters is the solution here, but loses data. 2. Re-define (have the DBA re-define) the target column data type. If 40 characters is the maximum you'll ever process, that's the size needed fo...
- Sat Feb 09, 2013 3:56 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: change current date + different second for each row
- Replies: 19
- Views: 5106
- Thu Feb 07, 2013 10:43 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Fixed width ASCII file - Chinese Chars
- Replies: 6
- Views: 2195
All specifications should be in CHARACTERS. So the number of bytes per character is not an issue.
Do your data contain any double-width Chinese characters (that is, characters that take up two display positions, such as "double happy")? If so that might be affecting your file format.
Do your data contain any double-width Chinese characters (that is, characters that take up two display positions, such as "double happy")? If so that might be affecting your file format.
- Thu Feb 07, 2013 9:56 pm
- Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
- Topic: webservice response
- Replies: 3
- Views: 3790
- Thu Feb 07, 2013 9:54 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Stage variable derivation problem
- Replies: 4
- Views: 1478
Why not use the quoting functions Quote(), SQuote() and/or DQuote()?
Self-documenting, too. Bonus!
Code: Select all
"EmployeeID = " : Quote(LogoLkp.EmployeeID) : ", EmployeeNo = " : Quote(LogoLkp.EmployeeNo)- Thu Feb 07, 2013 6:29 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Logic Help
- Replies: 1
- Views: 962
Code: Select all
(Len(InLink.String) = 4) And (Left(InLInk.String,1) = "S") And IsValid("integer",Right(InLink.String,3))- Thu Feb 07, 2013 6:22 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Converting from Binary(40) to Varchar 255
- Replies: 4
- Views: 1900
- Thu Feb 07, 2013 6:21 pm
- Forum: General
- Topic: Problem coping a project from one box to another
- Replies: 3
- Views: 907
- Thu Feb 07, 2013 4:00 pm
- Forum: General
- Topic: how much space required to create a ds project
- Replies: 1
- Views: 802
Creating a DataStage project doesn't require a lot of space, but be aware that the project directory will grow over time as you create more and more DataStage objects that have to be stored there. WebSphere Application Server is located wherever whoever installed it specified. You might try /opt/IBM...