Search found 53125 matches

by ray.wurlod
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

Actually the Teradata Connector does not require the table to be empty for FastLoad. Whoever engineered it found a way to bypass that "requirement".
by ray.wurlod
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...
by ray.wurlod
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

5. I'm fairly sure that the Join stage has always supported multiple (more than two) inputs.
by ray.wurlod
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

Without knowing the property values with which you've programmed the FTP stage, we have no way of helping you.
by ray.wurlod
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

... unless, of course, you reset the sequence in Before/SQL. :wink:
by ray.wurlod
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

Is there a SEQUENCE that you can invoke in the INSERT statement?
by ray.wurlod
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: 2876

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...
by ray.wurlod
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

Welcome aboard. The formula using system variables is guaranteed to generate unique numbers irrespective of the number of nodes.

You could even add a job parameter with the starting value.
by ray.wurlod
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.
by ray.wurlod
Thu Feb 07, 2013 9:56 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: webservice response
Replies: 3
Views: 3790

How about you start with a bit more information about what you're trying to accomplish? If it's not too long, post the WSDL.
by ray.wurlod
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()?

Code: Select all

"EmployeeID = " : Quote(LogoLkp.EmployeeID) : ", EmployeeNo = " : Quote(LogoLkp.EmployeeNo)
Self-documenting, too. Bonus!
by ray.wurlod
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))
Or, if (when) you have the Data Rules stage (version 8.7 or later) you can test using a direct matches_regex rule.
by ray.wurlod
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

:(

Can you apply RAWTOHEX() function when extracting?
by ray.wurlod
Thu Feb 07, 2013 6:21 pm
Forum: General
Topic: Problem coping a project from one box to another
Replies: 3
Views: 907

You wouldn't have missed much of it, so I've un-premiumed it.
by ray.wurlod
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...