Search found 53125 matches

by ray.wurlod
Tue Nov 27, 2012 3:35 pm
Forum: General
Topic: Sequence loop issue
Replies: 9
Views: 3305

Why not just use DIR /B *.CSV to get a list of the file names? Then convert the line terminators to commas (maybe in a User Variables activity) and make sure that no empty lines occur. I suspect that the empty value (the last line, which has no file name) is the culprit.
by ray.wurlod
Tue Nov 27, 2012 3:32 pm
Forum: General
Topic: Unable to view job in Folder in Datastage after restart
Replies: 4
Views: 1348

Sounds like the indexing may be corrupt. Search DSXchange for usage of the DS.REINDEX ALL command.
by ray.wurlod
Mon Nov 26, 2012 11:06 pm
Forum: General
Topic: Compare Datastage jobs by comparing their html reports ?
Replies: 2
Views: 2044

Still very ugly and messy.

Upgrade to version 8.x or even 9.1 and get a "proper" comparison tool right there in Designer.
by ray.wurlod
Mon Nov 26, 2012 3:42 pm
Forum: General
Topic: routine Warning
Replies: 1
Views: 980

It means you're modifying an input argument in your code. Arguments are passed to DataStage BASIC routines by reference, which means that any change wrought in the routine will also be available in the caller. If you want this to happen, tolerate the alert message. If you don't want it to happen cop...
by ray.wurlod
Mon Nov 26, 2012 3:40 pm
Forum: General
Topic: Comment in DS routine?
Replies: 2
Views: 1105

There are two other styles of comment, that cause the comment to be incorporated into the compiled code. These are the compiler directives
  • $*
    $COPYRIGHT
Again, these can be found in the DataStage BASIC manual.
by ray.wurlod
Mon Nov 26, 2012 3:38 pm
Forum: General
Topic: Comment in DS routine?
Replies: 2
Views: 1105

This is in the DataStage BASIC manual. There are three comments; each ends at the end of the line it is on (that is, there are no block comments). A comment statement begins with one of: * ! REM and must contain at least one space character. A comment can be the final statement on a multi-statement ...
by ray.wurlod
Mon Nov 26, 2012 3:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading tab delimated file, encountering problem
Replies: 4
Views: 1060

Is there any reason you're not using TAB as the field delimiter character in the Sequential File stage?
by ray.wurlod
Mon Nov 26, 2012 3:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ANOMALIES IN PRODUCTION WITH DATASTAGE PX
Replies: 6
Views: 1802

More power? (whatever that means)
by ray.wurlod
Mon Nov 26, 2012 3:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove new line character from modify stage
Replies: 7
Views: 2709

So you didn't really need to send me a PM asking me to look at this.
:x

I do not spend 24/7 logged in to DSXchange. Indeed, I probably only devote about 1 hour per day, maybe less on weekends.
by ray.wurlod
Mon Nov 26, 2012 3:31 pm
Forum: General
Topic: DSCC command line compilation using Authfile
Replies: 1
Views: 1135

What exact version of DataStage are you running? What have you tried (for example have you tried using encrypt.bat)?
by ray.wurlod
Sun Nov 25, 2012 12:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Does Vertical Pivot can restrict rows
Replies: 2
Views: 999

Pivot stage does not ignore rows.
by ray.wurlod
Sun Nov 25, 2012 12:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Counter value in Grid Partition
Replies: 9
Views: 1978

Unless you change the default settings, the Peek stage will capture 10 rows per node.
by ray.wurlod
Sat Nov 24, 2012 3:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Counter value in Grid Partition
Replies: 9
Views: 1978

The fact that it's on a grid is immaterial. Counters are computed per node. Constraint expressions are evaluated per node. So, with four nodes, counter <= 50 should generate approximately 200 rows.
by ray.wurlod
Fri Nov 23, 2012 1:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: implicit conversion warning
Replies: 7
Views: 2501

Count does not permit preservation of type. The result of Count is a Double (dfloat).
by ray.wurlod
Thu Nov 22, 2012 9:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job with SCD stage behaving strange. Any ideas?
Replies: 18
Views: 4553

Re-run with same data with run ID/timestamp changed.