Search found 53125 matches

by ray.wurlod
Thu Feb 05, 2009 12:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: lookup fatal error
Replies: 1
Views: 928

But you do have at least one timestamp in the data stream?
by ray.wurlod
Thu Feb 05, 2009 12:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Failure - Not enough space/ Error finalizing
Replies: 3
Views: 2179

What you have NOW is irrelevant. What you have when the job is running is what's important. And the error message suggests that what you have now is insufficient for what you need then.
by ray.wurlod
Thu Feb 05, 2009 12:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not Null Columns of Dataset showing as Nullable
Replies: 4
Views: 2547

Check your work, double check, and have a colleague check it. I can't see how this could happen. What exact version of DataStage?

Maybe have the janitor look at it as well (old joke, but a good one).
by ray.wurlod
Thu Feb 05, 2009 12:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Memory requirement of a running job
Replies: 4
Views: 1358

One of the tools in the Designer toolbar is Resource Estimator. It will do all that and more. You can also set the environment variable that causes player processes to dump their PID into the job log at startup and monitor those processes' memory consumption.
by ray.wurlod
Thu Feb 05, 2009 12:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage 7.5.1 A Server Edition Sequence Problem
Replies: 1
Views: 1112

Get the syntax correct by selecting activity variables and DS Constants from the Expression Editor operand menu.

Code: Select all

JobActivity1.$JobStatus = DSJS.RUNOK Or JobActivity1.$JobStatus = DSJS.RUNWARN
by ray.wurlod
Thu Feb 05, 2009 12:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: i want datastagepx routine for the requirement-- its urgent
Replies: 2
Views: 1118

The easiest solution to this is to use DataStage BASIC's innate ability to treat a file as a record in a database table, where the table is the file's parent directory, the name of the file is the "record key" and the data in the file the "record contents". This is achieved simpl...
by ray.wurlod
Thu Feb 05, 2009 12:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: i want datastagepx routine for the requirement-- its urgent
Replies: 2
Views: 1118

Very urgent? We don't do "urgent". DSXchange is an all-volunteer forum whose members post as and when they can. If you want urgent help sign up for premium service from your official support provider, and learn just how much "urgent" costs. Meanwhile, have you attempted to write ...
by ray.wurlod
Thu Feb 05, 2009 12:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Variable for output value of server routine
Replies: 8
Views: 5184

You're thinking of Execute Command activity. One ought not to get line terminators in output of routines.
by ray.wurlod
Thu Feb 05, 2009 12:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: # symbol is causing problem when concatenating
Replies: 2
Views: 1042

Moderator: please move to parallel forum

Server jobs do not have a funnel stage.
by ray.wurlod
Thu Feb 05, 2009 12:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I put arguments in a dynamic array?
Replies: 8
Views: 2650

They do (post correctly) if you wrap them in Code tags! PARAMS = '' ; * this initializes the array variable ArgString = DSGetJobInfo(DSJ.ME, DSJ.PARAMLIST) for i=1 To NbArgument ; PARAMS<i> = Field(ArgString,",",i,1)) Next i Don't use the DIM function - read about Dynamic arrays Next you n...
by ray.wurlod
Thu Feb 05, 2009 12:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL Server 2005 usinng Bulk Loader
Replies: 1
Views: 1225

Welcome aboard. One of the things we can't deal with is "it doesn't work". You need to be more specific. For example, are any warnings/errors logged? Please report these fully and accurately. You ought not to need an alias, particularly if SQL Server is otherwise visible from your DataStag...
by ray.wurlod
Thu Feb 05, 2009 12:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: All of a sudden é is causing an issue in different servers
Replies: 0
Views: 972

Only that something, somewhere HAS changed, and you're going to have to track it down. Good detective work so far, you might also question anything "I'm told" and check.
by ray.wurlod
Thu Feb 05, 2009 12:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Remove Duplicates
Replies: 11
Views: 3358

If you're sorting using the sort command as a filter in the Sequential File stage, why not just add the "unique" (-u) option to that command?
by ray.wurlod
Thu Feb 05, 2009 12:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: parsing address informaiton
Replies: 5
Views: 1622

One of the upcoming Tips and Tricks papers at DSXchange Learning Center deals with pattern matching (including the MatchField() function) in DataStage.