Search found 53125 matches

by ray.wurlod
Fri Mar 14, 2008 12:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding CSV type files
Replies: 10
Views: 1664

Or tab-delimited. Tabs in data are fairly rare, since tab in Windows applications moves one to the next field.
by ray.wurlod
Thu Mar 13, 2008 9:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how can we suppress the warnings in sequence
Replies: 10
Views: 2447

A simple check for existence (no timeout) can be effected with an Execute Command activity. Windows: DIR /B pathname UNIX: ls -1 pathname where pathname is the pathname of the file whose existence is to be checked for. Create an OK trigger and an Otherwise trigger on the Execute Command activity, an...
by ray.wurlod
Thu Mar 13, 2008 8:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: modify Vs transformer
Replies: 8
Views: 1996

Less effort once.
Then you'd probably complain about the relative "performance".

The secret of the Modify stage's speed is its simplicity. By getting you to do the work (fairly low-level specification), it needs no particular overheads.
by ray.wurlod
Thu Mar 13, 2008 6:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Row Commit
Replies: 6
Views: 1180

To reiterate, you must design whatever restart capability is desired.

In a job sequence you can certainly design to run a job over and over till its exit status is "Success" but there's a danger of that being an infinite loop.
by ray.wurlod
Thu Mar 13, 2008 6:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Comparing Jobs
Replies: 6
Views: 1791

You're on version 8. My current client isn't. You research it and post your findings.
by ray.wurlod
Thu Mar 13, 2008 5:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Comparing Jobs
Replies: 6
Views: 1791

Yes. If you right click on the job name you will get a menu from which you can choose a Compare tool and compare against another job.

This is new functionality in version 8.
by ray.wurlod
Thu Mar 13, 2008 5:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Row Commit
Replies: 6
Views: 1180

What will happen is whatever you designed to happen. If you want restart from a particular point you have to design that in. If you want to keep records of how far the job got, you have to design that in. If you want to check the target to see how many rows were committed by the previous run, you ha...
by ray.wurlod
Thu Mar 13, 2008 5:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: modify Vs transformer
Replies: 8
Views: 1996

string_from_date() function
by ray.wurlod
Thu Mar 13, 2008 5:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Relaction job with defunct process in AIX
Replies: 4
Views: 1959

No. That's what "defunct" means. They are not connected to anything any more.

You could browse through your job logs and status detail views trying to match the process IDs but the benefit would not be worth the cost.
by ray.wurlod
Thu Mar 13, 2008 5:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal Error: An ORCHESTRATE program must be started on a nod
Replies: 3
Views: 4835

Check that the APT_ORCHHOME environment variable is set to the pathname of the PXEngine directory in DataStage.
by ray.wurlod
Thu Mar 13, 2008 5:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: query data from netezza
Replies: 7
Views: 1831

In particular what stage type are you using?
by ray.wurlod
Thu Mar 13, 2008 5:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: query data from netezza
Replies: 7
Views: 1831

In particular what stage type are you using?
by ray.wurlod
Thu Mar 13, 2008 5:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job Category
Replies: 11
Views: 2415

The query given by DSGuru2B can be run from the Administrator client Command window. Note that all the identifiers are upper case and the terminating ";" character is required. Job name is case sensitive.
by ray.wurlod
Thu Mar 13, 2008 5:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IN / NOT IN functions
Replies: 5
Views: 1375

Locate is a statement in DataStage BASIC, not a function that can be used in a parallel Transformer stage. Modify stage has a useful lookup_int16_from_string() function if the list of values is fixed, which yours appears to be. It can be constructed to set a default value if the lookup fails. Otherw...
by ray.wurlod
Thu Mar 13, 2008 5:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: any way to find which user is using which job
Replies: 16
Views: 3382

Why did you not clear the lock in Director?