Search found 53125 matches

by ray.wurlod
Wed Oct 31, 2007 7:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File with multiple headers
Replies: 5
Views: 1588

You need other stage variables for the other columns. Please try to generalize my example.
by ray.wurlod
Wed Oct 31, 2007 6:57 am
Forum: General
Topic: Regarding Fatal warning in the transfomer.
Replies: 12
Views: 4437

Parallel transformer functions are also intolerant of null values in other arguments. That's why I asked (twice) about the input columns.

Incidentally, "" and NULL are not the same thing.
by ray.wurlod
Wed Oct 31, 2007 6:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Row Count
Replies: 25
Views: 10279

The Input Value field contains MyJobName MyStageName MyLinkName Within the after-job (or after-stage) subroutine you use Field() functions to parse these out from the single string. JobName = Field(InputArg, " ", 1) StageName = Field(InputArg, " ", 2) LinkName = F...
by ray.wurlod
Wed Oct 31, 2007 6:47 am
Forum: General
Topic: Regarding Fatal warning in the transfomer.
Replies: 12
Views: 4437

Can either of the input columns ever be NULL?
by ray.wurlod
Wed Oct 31, 2007 6:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column Name as Parameter
Replies: 16
Views: 5238

I don't think you can do that either, but you CAN pass an entire SQL statement as a job parameter, so that may be a viable workaround for you.
by ray.wurlod
Wed Oct 31, 2007 6:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error calling subroutine:DSR_SCHEDULE (Action=3);
Replies: 6
Views: 3031

What happens when you open a cmd shell and type the AT command?
by ray.wurlod
Wed Oct 31, 2007 3:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: merge the two files
Replies: 10
Views: 3680

Use a Column Generator stage to generate sequential integer keys on each link (outputs from the source files), and use that as the join key.
by ray.wurlod
Wed Oct 31, 2007 3:06 am
Forum: General
Topic: Regarding Fatal warning in the transfomer.
Replies: 12
Views: 4437

Can either of the input columns ever be NULL?
by ray.wurlod
Wed Oct 31, 2007 12:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to delete job from a project under command line
Replies: 21
Views: 13744

It is much faster to delete a project using the Administrator client. There are too many different things to delete if you try to delete from the command line.
by ray.wurlod
Wed Oct 31, 2007 12:50 am
Forum: General
Topic: Error selecting from log file RT_LOG496
Replies: 0
Views: 1468

Check that the disk is not full where your project is installed. Check, also, that your log file has not reached 2GB. Either of these situations will cause the corruption that you see. If you don't need the log contents, you can clear the log table using a CLEAR.FILE command (search the Forum for de...
by ray.wurlod
Tue Oct 30, 2007 10:17 pm
Forum: General
Topic: Using Regular Expression in Transformer Stage Constraint
Replies: 8
Views: 10686

The BEGIN and END tags are characteristic of DSX export files. Can you please try downloading it again? Others have had success with it. You need to Import DataStage Components to get the routine into your project.
by ray.wurlod
Tue Oct 30, 2007 8:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column Name as Parameter
Replies: 16
Views: 5238

The answer, definitely, is NO.
by ray.wurlod
Tue Oct 30, 2007 8:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: change capture with special characters
Replies: 6
Views: 2545

To what values were your NLS_LANG and LANG_C environment variables set?
by ray.wurlod
Tue Oct 30, 2007 8:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cluster key change in AGGR stage
Replies: 1
Views: 1086

It's in the Sort stage.
by ray.wurlod
Tue Oct 30, 2007 8:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to create 2 headers , detail , trailor
Replies: 2
Views: 932

Another way, particularly if the headers and trailers have static text, is before/after subroutines. In the before-job subroutine you echo the two header lines into the file. echo Header1 > #filename# echo Header2 >> #filename# In the job itself you append to #filename# In the after-job subroutine y...