Search found 53125 matches

by ray.wurlod
Wed Nov 19, 2008 1:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using parameters in ExecCommand command
Replies: 4
Views: 1512

One thing you could do is to preset the PATH environment variable and use an unqualified command name. Another thing you could do is to invoke a shell script that is passed the pathname of the command (including the resolved job parameter) and which invokes the command in question. Show us what you'...
by ray.wurlod
Wed Nov 19, 2008 1:45 pm
Forum: General
Topic: calling routine/job across proejcts
Replies: 10
Views: 2803

It's also possible for server routines using global cataloging, but I don't want to go there. It's a maintenance nightmare.
by ray.wurlod
Wed Nov 19, 2008 1:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: fetching first few records
Replies: 9
Views: 1870

If you are going to use the suggested approach then, yes, you would need as many Head stages as there are departments. If you are going to use a Transformer stage it doesn't change - you would need as many output links as there are departments (each constrained on the output row number).
by ray.wurlod
Wed Nov 19, 2008 1:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to identify a data file contains level and arrays.
Replies: 5
Views: 1795

And if, as you subject line suggests, there are different levels and there are repeating groups (arrays) then you MUST get information about these. A COBOL file definition is the easiest way - they can email it to you and you can import the table definition (record schema definition) from the COBOL ...
by ray.wurlod
Wed Nov 19, 2008 1:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error Security in W IIS 8.01
Replies: 9
Views: 3248

Check whether the password of the owner of the XMETA database (a user that is created by the installation process) has expired. The install script does not create this user with a "password never expires" setting, so it does expire after whatever expiry setting you are using in Windows user profiles.
by ray.wurlod
Wed Nov 19, 2008 1:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warnings using Change Capture Stage
Replies: 4
Views: 2463

Please explain the logic behind this suggestion, and why you believe that doing what you suggest will eliminate the particular warning.
by ray.wurlod
Wed Nov 19, 2008 1:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to get server transformer stage in parallel jobs?
Replies: 13
Views: 4117

Not true. The BASIC Transformer stage can run in parallel, though every node on which it executes must be on the (a) machine where the DataStage server engine is installed. You can also include server shared containers in parallel jobs, subject to certain restrictions that are documented in Chapter ...
by ray.wurlod
Wed Nov 19, 2008 1:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: User defined SQL
Replies: 4
Views: 1826

"Consecutively" may be a better word here. They execute consecutively on each node in which the stage's operator is executing. ("Sequentially" implies a loss of parallelism.)
by ray.wurlod
Wed Nov 19, 2008 1:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capture Rejected rows along with its description in rej file
Replies: 5
Views: 1185

Your reject link needs to have sqlcode on it, then you need to look this up against a table of error codes. This could be a sparse lookup back to the DB2 error codes table (for example).
by ray.wurlod
Wed Nov 19, 2008 1:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RT_ERRORS with a twist.
Replies: 6
Views: 1648

Re: RT_ERRORS with a twist.

BIuser wrote:I am logging a case with HAL, and will let you know if we get anywhere with this.

:lol:
by ray.wurlod
Wed Nov 19, 2008 1:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Refresh TEST environment with PROD one
Replies: 5
Views: 1345

Why not create a suite of DataStage jobs to synchronize the contents of the hashed files? Are the TEST and PROD environments on the same server? Whether you can successfully use operating system commands to move hashed files depends on how they were created. However, simply copying the PROD project ...
by ray.wurlod
Wed Nov 19, 2008 1:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing Delimited List of Values to StartLoop
Replies: 5
Views: 1839

In one of the forthcoming training DVDs from DSXchange Learning Center this technique is shown.
by ray.wurlod
Wed Nov 19, 2008 1:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: French char. are not converted correctly for M/F binary file
Replies: 3
Views: 1763

Yes, you will need to install CA-FRENCH. This is done via the Administrator client or via the NLS.ADMIN menu in the UV account on the server.
by ray.wurlod
Wed Nov 19, 2008 1:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sever Job: Not able to read (') in data
Replies: 10
Views: 3387

What are the format properties in the Sequential File stage - in particular the Quote Character property?
by ray.wurlod
Wed Nov 19, 2008 1:11 pm
Forum: General
Topic: Truncate decimal digits
Replies: 7
Views: 1406

I don't know why Fix() isn't doing what it's supposed to. You can use

Code: Select all

Field(InLink.TheNumber,".",1,1) : "." :  Left(Field(InLink.TheNumber,".",2,1),6)