Search found 42189 matches

by chulett
Wed Nov 19, 2008 11:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compilation error
Replies: 2
Views: 1101

Space, as in lack of? Permissions?
by chulett
Wed Nov 19, 2008 10:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing Delimited List of Values to StartLoop
Replies: 5
Views: 1839

A file should work fine. Build a routine to 'type' the file and send back the output, then call the routine in a UserVariables Activity stage. The Start Loop can then leverage the delimited list quite easily.
by chulett
Wed Nov 19, 2008 10:22 am
Forum: General
Topic: calling routine/job across proejcts
Replies: 10
Views: 2803

Would be nice, but no it doesn't work that way.

I do use the concept of a 'common project' for standard routines, the project where they are developed and tested but we still need to promote read-only copies to every project for people to be able to use them.
by chulett
Wed Nov 19, 2008 10:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can 7.5.2 Client connect to v7.5.1A Server
Replies: 3
Views: 1133

No, you would need to use it to switch between clients when appropriate. When you do, that's when it will prompt you will a list of all of the clients it can see.
by chulett
Wed Nov 19, 2008 10:02 am
Forum: General
Topic: calling routine/job across proejcts
Replies: 10
Views: 2803

Not sure about the routine, anything like a Routine Activity is going to be tied to the Project the Sequence is running in. However, jobs can be run 'cross project' if you leverage dsjob from the command line rather than using a Job Activity stage. In other words, use an Execute Command stage and a ...
by chulett
Wed Nov 19, 2008 8:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error with Script
Replies: 11
Views: 1783

From using syntax specific to one shell in another that doesn't support it.
by chulett
Wed Nov 19, 2008 8:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can 7.5.2 Client connect to v7.5.1A Server
Replies: 3
Views: 1133

Technically your answer is "yes" because there's only a minor difference in the versions but officially the answer is no. I've personally had strange issues doing what you are asking about. Best to install both clients to separate locations and use the MCM - the Multiple Client Manage - to switch fr...
by chulett
Wed Nov 19, 2008 8:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue in Reading xml data through DS PX
Replies: 4
Views: 1173

Post an example of the output you are seeing.
by chulett
Wed Nov 19, 2008 8:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: User defined SQL
Replies: 4
Views: 1826

Sequentially. Yes, check the documentation for the stage.
by chulett
Wed Nov 19, 2008 8:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Before/After Sub-routine showing password
Replies: 2
Views: 1266

For UNIX there is an "ExecSHSilent" option you'd use rather than "ExecSH". Do you not have an equivalent? If not you could write one that does not log the command line.
by chulett
Wed Nov 19, 2008 8:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Invalid Date issue bug
Replies: 8
Views: 2266

There is no "code" per se with a transform as they are an interlude to existing routines. Everything they are is in the "Definition" prompt of the Details tab and that's what you'd need to include.
by chulett
Wed Nov 19, 2008 8:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Director Logging
Replies: 10
Views: 2883

Ah... it doesn't recognize it as an "image" without a extension of the appropriate type - jpg, bmp, etc. For Picasaweb you'd need to use a URL tag.
by chulett
Wed Nov 19, 2008 8:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How does a user-defined query works?
Replies: 4
Views: 1727

Positional. First column mapped to first ?, etc, with adjustments made for Key versus non-Key columns.
by chulett
Wed Nov 19, 2008 8:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Invalid Date issue bug
Replies: 8
Views: 2266

No, transforms of any kind cannot be used in routines. You need to include their equivalent code into the routine itself.
by chulett
Wed Nov 19, 2008 8:10 am
Forum: General
Topic: Perl Script Not Running
Replies: 7
Views: 2029

Why don't you take a step back and do a better job job of explaining what exactly you are doing? Running any script 'after-job' can be done with ExecSH alone. From inside a routine or "job control" you use the DSExecute() function Ray notes. Either could be done from a Sequence job as well. So... w...