Search found 53125 matches

by ray.wurlod
Mon Oct 06, 2008 8:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SubString Comparision
Replies: 4
Views: 1099

There is no function out of the box. Depending on how different from each other the items in the delimited list are, you *may* be able to use the Index() function to perform a search.
by ray.wurlod
Mon Oct 06, 2008 8:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling Datastage Basic Routine Through Command Line
Replies: 8
Views: 4494

No, because it's not officially supported by DataStage. Even I don't use them (though I do know how, from my UniVerse expertise). If you must everything you need to know is in the DataStage BASIC manual, but you won't get any official support.
by ray.wurlod
Mon Oct 06, 2008 8:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sort stage problem
Replies: 1
Views: 1520

This is actually an error with the connection to Sybase. It is reported by the Sort stage because passive stages do not have processes and therefore can not report their own errors. Make sure that the columns defined in your job match those in the SQL query, both in number and in data type.
by ray.wurlod
Mon Oct 06, 2008 8:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding Encrypted Parameters
Replies: 5
Views: 1511

You can do what I suggested above - simply form the intersection of the sub-queries. If you want to attack it from the other end (that is, beginning with a particular parameter name) that's a fish of an entirely different colour, and a rather more complex query. Indeed, one that would take more time...
by ray.wurlod
Mon Oct 06, 2008 8:09 am
Forum: IBM QualityStage
Topic: Rule Sets in Quality Stage
Replies: 6
Views: 2332

It's a simple matter of sending money to IBM, presumably through your local vendor.
by ray.wurlod
Mon Oct 06, 2008 8:08 am
Forum: IBM QualityStage
Topic: Matching in Quality Stage
Replies: 5
Views: 2117

Not without you telling us what you're doing - what columns you're using for blocking, what other columns you are using for matching, why you chose these particular fields, and so on.
by ray.wurlod
Mon Oct 06, 2008 2:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding Encrypted Parameters
Replies: 5
Views: 1511

The answer is yes, but it's messy. Jobs With Encrypted Parameters You would need to unpack the CParameters collection in the ROOT record for the job in DS_JOBOBJECTS, and then decode the enumerated parameter type. Parameter types are in the multi-valued field #19 in this record. From JOBCONTROL.H yo...
by ray.wurlod
Mon Oct 06, 2008 1:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error calling subroutine
Replies: 9
Views: 2773

The reason I asked is that DSR_PROJECT is cataloged separately in each project. If the problem only occurs in one project, then it's probably the catalog entry for DSR_PROJECT (one of the helper subroutines in that project). If it's every project then the problem is more likely to be associated with...
by ray.wurlod
Sun Oct 05, 2008 11:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Nullable check in change capture
Replies: 1
Views: 640

Since NULL can not be compared to anything (even another NULL) I believe that what you are trying to do is not valid. Handle the nulls by converting to in-band null or dropping those rows upstream of the Change Capture stage.
by ray.wurlod
Sun Oct 05, 2008 11:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change Capture Stage Error
Replies: 2
Views: 846

Welcome aboard. You can often get an answer faster by using Search - this is an example of a question that HAS been asked before.
by ray.wurlod
Sun Oct 05, 2008 11:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error calling subroutine
Replies: 9
Views: 2773

I did not ask about other jobs, which was a given. I asked about other projects.
by ray.wurlod
Sun Oct 05, 2008 11:40 pm
Forum: General
Topic: export and import job on UNIX
Replies: 14
Views: 18599

dsjob has an -import option but it only imports job executables as far as I am aware.
by ray.wurlod
Sun Oct 05, 2008 9:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling Datastage Basic Routine Through Command Line
Replies: 8
Views: 4494

That hardly meets the requirement to "call routine through command line" though, does it?

You could write a main program too, if you knew how.
by ray.wurlod
Sun Oct 05, 2008 9:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error calling subroutine
Replies: 9
Views: 2773

What has changed on the system (not necessarily anything in DataStage - ANYWHERE on the system) since last Friday? Are other projects on the same server accessible? Has a connection been dropped? Have you tried re-booting the client to clear any crap - such as handles to disconnected sessions - from...
by ray.wurlod
Sun Oct 05, 2008 6:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling Datastage Basic Routine Through Command Line
Replies: 8
Views: 4494

No. In the same way and for the same reason that you can't invoke a C function from the command line. There is no argument-passing mechanism from the command line. Nor can you call DS routines from the TCL prompt. Your assertion that you can is wrong. If you disagree with that please provide an exam...