Search found 53125 matches

by ray.wurlod
Mon May 22, 2006 11:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing Server job variable value from sequence job
Replies: 7
Views: 1892

Probably using

Code: Select all

DSGetParamInfo(hJob, ParamName, DSJ.PARAMVALUE) 
by ray.wurlod
Mon May 22, 2006 6:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Complex flat file - more than 1 Depending Occurs
Replies: 5
Views: 1803

I think you can only do this with fixed OCCURS, not with OCCURS DEPENDING ON.
by ray.wurlod
Mon May 22, 2006 6:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server to Enterprise Edition Transition Lab!
Replies: 7
Views: 1987

You wish.

Actually, the Courtyard by Marriott chain seems now to be putting food, rather than booze, in the minibars, but either way that will be a personal expense.
by ray.wurlod
Mon May 22, 2006 6:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: syntax for key matching
Replies: 6
Views: 1488

Is the requirement to look up all detail records for a particular order number? If so, you can not do this with a hashed file stage unless you have some mechanism for generating the line numbers before you get to do the lookup. Your alternative is to use a UV stage, or ODBC stage, with the multiple ...
by ray.wurlod
Mon May 22, 2006 4:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: phantom in routine
Replies: 17
Views: 7073

Then don't! Or test for an argument in an unassigned state and do something about it.
by ray.wurlod
Mon May 22, 2006 2:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in opening job
Replies: 3
Views: 1084

Is it "display" information or "design" information? This will radically affect the answer.
by ray.wurlod
Mon May 22, 2006 2:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Before SQL in Oracle Stage
Replies: 2
Views: 1375

Can you try it with CALL ?
by ray.wurlod
Mon May 22, 2006 2:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: phantom in routine
Replies: 17
Views: 7073

Is "default" in the Nvl function a hard coded value or a variable? If it's a variable, does it have a value assigned on every possible path through the code? Check out the Assigned() or Unassigned() function - I always build one of these into routines that someone else may call, so as to check for a...
by ray.wurlod
Mon May 22, 2006 2:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: why the datastage may occur running 1 record / second
Replies: 8
Views: 2642

Possibly this is running on the MVS (mine's very slow) edition? :lol:
by ray.wurlod
Mon May 22, 2006 2:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data Extraction
Replies: 1
Views: 678

Does your particular SQL support a CASE construct?
by ray.wurlod
Mon May 22, 2006 2:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Extra column
Replies: 6
Views: 1212

Another possibility is a Column Generator stage.
by ray.wurlod
Mon May 22, 2006 2:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: User Variable acitivity
Replies: 4
Views: 1273

Or even this post which is one of three in which you ask the same question and where an answer has been given.
by ray.wurlod
Mon May 22, 2006 2:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling parameters from table
Replies: 1
Views: 684

Duplicate post

Please refer to this post
by ray.wurlod
Mon May 22, 2006 2:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sequencer
Replies: 6
Views: 1769

There is nothing within a job sequence that allows you to access a table. A job sequence processes no data whatsoever; it prescribes the flow of control. Probably your best solution is to construct a job (a server job would do) to retrieve the values then use something like that job's user status ar...
by ray.wurlod
Sun May 21, 2006 8:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: function
Replies: 6
Views: 1201

How do you expect to compare with the next row when you haven't even read the next row yet???

The best you can do is to store the previous row's value and compare when POST comes through. You need your data sorted for this to work properly, of course.