Search found 42189 matches

by chulett
Tue Jan 27, 2009 11:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to delete folder from director
Replies: 16
Views: 4170

While you can delete individual jobs from the Director, you cannot delete folders from there. That needs to happen in the Manager or Designer.
by chulett
Tue Jan 27, 2009 11:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting list of Jobs in Windows environment
Replies: 19
Views: 5355

Still, same advice applies. Think of $DSHOME as "where DataStage is installed" and make sure the full "bin" directory is in your PATH. Or try the other two ways noted.
by chulett
Tue Jan 27, 2009 10:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: convert strings
Replies: 6
Views: 1298

No, that would convert individual characters not strings.
by chulett
Tue Jan 27, 2009 10:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to delete folder from director
Replies: 16
Views: 4170

I would say "Delete it from the Manager" but from what I understand that's gone in 8.x, so... "Delete it from the Designer Repository window".
by chulett
Tue Jan 27, 2009 10:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting list of Jobs in Windows environment
Replies: 19
Views: 5355

So... a path problem. You'd either need to ensure $DSHOME is in your $PATH statement or fully path the command or cd to where it lives and execute it from there. Normal command line stuff.
by chulett
Tue Jan 27, 2009 10:41 am
Forum: General
Topic: email notification
Replies: 1
Views: 907

If all the main sequence does is chain together lower level sequence jobs, then I'd agree that you could do it that way. You could also have the main sequence do all of the notification, success or failure, if you like. Not sure if either way is "better" than the other.
by chulett
Tue Jan 27, 2009 10:36 am
Forum: General
Topic: How to find the Sequence for the particular job
Replies: 13
Views: 3401

From what I recall it is the order they were added to the Sequence, which more than likely is the order they run in but may not be.
by chulett
Tue Jan 27, 2009 10:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting list of Jobs in Windows environment
Replies: 19
Views: 5355

It's an operating system command, not an internal DataStage command. Run it from a command prompt.
by chulett
Tue Jan 27, 2009 9:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: can I transform this process in job?
Replies: 3
Views: 1234

Three DB stages chained together by transformers is most of it. You'd need to explain what to do with the last "select *" information, though.
by chulett
Tue Jan 27, 2009 9:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is Wait for file activity Stage used only for static file?
Replies: 3
Views: 1238

Correct, it does not support wildcards.
by chulett
Tue Jan 27, 2009 9:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting list of Jobs in Windows environment
Replies: 19
Views: 5355

:? Come on, you waited what... 20 minutes before pushing? Relax, people will answer when they can.

Code: Select all

dsjob -ljobs <project>
From the command line.
by chulett
Tue Jan 27, 2009 8:52 am
Forum: General
Topic: How to find the Sequence for the particular job
Replies: 13
Views: 3401

Or there's always the front door. Open the Sequence job / Job Properties / Dependencies tab for a list of all the jobs the Sequence runs.
by chulett
Mon Jan 26, 2009 12:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: convert strings
Replies: 6
Views: 1298

What you need is a PX version of the Server EReplace() function. And, what do you know...

viewtopic.php?t=106358
by chulett
Mon Jan 26, 2009 11:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: clean up memory for datasets which is deleted manually
Replies: 12
Views: 10581

Once you start down the "manual deletion" path (and thus destroyed any automated mechanism) it seems you'll have to walk that manual path to its end. At this point you would just use rm to "clear the memory", I assume.
by chulett
Mon Jan 26, 2009 11:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting list of jobs in UNIX
Replies: 1
Views: 856

There's a dsjob option that will get a list of the jobs in any given project: -ljobs off the top of my head. You could redirect that output to a file for processing or just pipe it thru "wc -l" to get a count.