Search found 42189 matches

by chulett
Fri Dec 28, 2012 4:38 pm
Forum: General
Topic: Failed to open project status code 73
Replies: 3
Views: 1912

Details, please! How are you running the jobs, from the command line using dsjob? If so, show us your syntax.
by chulett
Fri Dec 28, 2012 3:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TimeStamp
Replies: 11
Views: 3575

Of course, just trying to point out that it may go beyond that.
by chulett
Fri Dec 28, 2012 7:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TimeStamp
Replies: 11
Views: 3575

Just to point out the obvious: "May 9 201 12:00AM" is a perfectly valid date/time, it's just... old. So your validation will need to be more than just a simple validation check but will need business value range checks, it would seem.
by chulett
Thu Dec 27, 2012 5:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 Connector View Data Error
Replies: 6
Views: 2904

... I figured that would have to be all correct seeing as how the job actually runs fine, the only issue is with the View Data option. Switching those around may actually cause the job to no longer run.
by chulett
Thu Dec 27, 2012 5:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCI Update - Failures not logged
Replies: 5
Views: 1701

I'm not sure I'd want each and every update that "failed" captured to the log like that, but if it works for you that's great. Yes, ODBC has different rules on things than native Oracle would, even if using an Oracle driver. Makes it behave more like other databases, from what I've seen.
by chulett
Thu Dec 27, 2012 5:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Column name in Pivot Stage
Replies: 11
Views: 8442

:idea: This post is 8 years old and from the 5.x version of DataStage, plus I'm not even sure what the "this" and "it" is that you are having an issue with. Always best to start your own post and provide the details of your issue and data examples, then we'll take it from there.
by chulett
Thu Dec 27, 2012 2:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Call SP
Replies: 13
Views: 4104

He didn't, as I'm sure you'll see shortly. :wink:
by chulett
Thu Dec 27, 2012 1:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 Connector View Data Error
Replies: 6
Views: 2904

Rely is one thing, work is another. It should work even if what it shows you may not be reliable. :wink:

Sounds like you may need to contact your official support provider about a patch / fixpack as that smells a little buggy to me.
by chulett
Thu Dec 27, 2012 1:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCI Update - Failures not logged
Replies: 5
Views: 1701

As noted, there's no warning to log as nothing has failed. I'd suggest you look into a pre- or post-process to compare the keys in your source to the target and log anything that exists in the source but not the target. You could do all of that in your source SQL and then stream the problems to an a...
by chulett
Thu Dec 27, 2012 12:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCI Update - Failures not logged
Replies: 5
Views: 1701

That's standard Oracle behaviour. It will happily update or delete zero rows, it does not consider that any kind of a failure. That's why it is pretty standard to "pre-qualify" your updates by doing an existence check and only issuing the updates for existing rows. Tell us, what exactly do...
by chulett
Thu Dec 27, 2012 9:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TimeStamp
Replies: 11
Views: 3575

So this "timestamp" source column (QT_Travel) is it actually a string? Not sure how else one would not get "proper timestamp value". If so, can you show us some of these bad timestamps?
by chulett
Thu Dec 27, 2012 9:21 am
Forum: General
Topic: Routine DSX.UTILITYHASHLOOKUP did not finish OK, return code
Replies: 2
Views: 1015

Welcome. As noted, the "Log warnings after activities that finish with status other than OK" option considers anything that does not return a zero to have failed, so it's doing exactly what you've told it to do. You'll need to explicitly handle the failure via triggers to shut down the che...
by chulett
Thu Dec 27, 2012 9:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer as Source
Replies: 4
Views: 1350

Yup, that was a "trick" that is very specific to Server jobs. :wink:
by chulett
Wed Dec 26, 2012 11:27 pm
Forum: General
Topic: Job run automatic without any schedule
Replies: 4
Views: 1604

True. Silly assumption on my part. :wink:
by chulett
Wed Dec 26, 2012 11:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Call SP
Replies: 13
Views: 4104

Transformers aren't meant to be used as a source but found that you can do so provided you A) include a stage variable and B) constrain the output so it doesn't spit out records forever. I don't recall the gory details, but the job will not compile without the stage variable, I forget the error it t...