Search found 53125 matches

by ray.wurlod
Thu Mar 19, 2009 3:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema file.
Replies: 1
Views: 1074

You can not read them with a schema file; you can only describe them with a schema file. I presume you are using a Sequential File stage. Is the format fixed-width fields (which you don't actually have) or delimited? Or is there only one field. Try reading the field as a VarChar data type (string[ma...
by ray.wurlod
Thu Mar 19, 2009 3:14 pm
Forum: General
Topic: Best practice to test BASIC code?
Replies: 5
Views: 1929

I use conditional compilation (that is, $DEFINE, $IFDEF and $ENDIF) in routines to allow me to include DSLogInfo() calls and also to test things that can't be done ordinarily, such as whether null is properly handled.
by ray.wurlod
Thu Mar 19, 2009 3:12 pm
Forum: IBM QualityStage
Topic: How to increase the disagreement weight in matching
Replies: 1
Views: 1325

Weight overrides supersede the agreement/disagreement weights calculated using m-prob and u-prob. (That's why they're called overrides.) "Not coming as expected" is singularly unhelpful to diagnosis. You will need to be much more specific, particularly in regard to precisely how you set th...
by ray.wurlod
Thu Mar 19, 2009 3:09 pm
Forum: Site/Forum
Topic: Video Tech Tip Series - FEEDBACK
Replies: 49
Views: 73523

That's a really tough one to do generically. Sure you can cover what's available in the toolset, but actual examples have this horrible characteristic of being highly specific.

Even so, it's a good suggestion.
Would you like to volunteer to script it?
by ray.wurlod
Thu Mar 19, 2009 3:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: List NLS project-defaults
Replies: 4
Views: 1644

Not easily. You could do it with a routine, or a shell script. You need to read the control record \\NLS from the DS_JOBS hashed file in each project. Field #6 contains the default NLS map settings (server then parallel), field #7 contains the five default locale settings (server then parallel for e...
by ray.wurlod
Thu Mar 19, 2009 3:36 am
Forum: General
Topic: Appending leading Zeros and writting to excel file
Replies: 3
Views: 2294

Format the cells in the worksheet so that leading zeroes are displayed.
by ray.wurlod
Thu Mar 19, 2009 2:15 am
Forum: Site/Forum
Topic: Premium Membership
Replies: 17
Views: 15191

Then maybe webmaster@dsxchange.com is who you should contact. That the logo is there suggests that membershipdirector believes that you have a valid premium membership.
by ray.wurlod
Thu Mar 19, 2009 2:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Aborts even if warnings are allowed
Replies: 3
Views: 1582

What's the bug, and what's the fix?

Can you please replace the Quote tags in your earlier post with Code tags?
by ray.wurlod
Thu Mar 19, 2009 2:09 am
Forum: General
Topic: Error in stagevariable
Replies: 3
Views: 1156

There is no problem - they are the same. In server jobs there are no data types. So a comparison tests each operand to determine whether or not they are numeric. If they are, a numeric comparison is performed - if not, a string comparison is performed. To force a string (or numeric) comparison use t...
by ray.wurlod
Thu Mar 19, 2009 2:06 am
Forum: General
Topic: User variable activity stage
Replies: 2
Views: 3143

Like any other activity, the properties of a User Variables activity are available only downstream of that activity.
by ray.wurlod
Thu Mar 19, 2009 2:05 am
Forum: General
Topic: Best practice to test BASIC code?
Replies: 5
Views: 1929

I would prefer small routines, one for each test, maybe in a category called Test. More modular. Transforms can not be called from DataStage BASIC. SDK and supplied routines are not cataloged with a "DSU." prefix - they are cataloged with "DSX." prefix and wholly upper-case names.
by ray.wurlod
Thu Mar 19, 2009 2:02 am
Forum: Site/Forum
Topic: Premium Membership
Replies: 17
Views: 15191

Looks like it's fixed already - the Premium Member logo appears beside your post.
by ray.wurlod
Wed Mar 18, 2009 7:59 pm
Forum: General
Topic: IBM in talks to buy Sun Microsystems
Replies: 4
Views: 1256

IBM in talks to buy Sun Microsystems

Just read about it here - the 800lb gorilla seems set to put on some weight!
by ray.wurlod
Wed Mar 18, 2009 5:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Project Creation date/time
Replies: 14
Views: 4837

Inspect something whose status is not likely to have changed since the project was created. ls -lc EXAMPLE1.SOURCE is a good candidate.
by ray.wurlod
Wed Mar 18, 2009 5:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generate Sequential Number using Parallel Transformer
Replies: 9
Views: 8517

Initialize svCount to @PARTITIONNUM

Derive svCount as svCount + @NUMPARTITIONS

Derive column (or svRow) as svCount