Search found 42189 matches

by chulett
Thu Feb 22, 2007 11:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The Precompilation failed - no other information provided!..
Replies: 14
Views: 10375

(hint, hint) what? Re-read what you posted. There was no hidden 'suggestion' from Ray because you did not indicate you were having any kind of problem. I had to get the transformer from a previous version of the job and then it was fine. Even your followup post only seemed informational. There were...
by chulett
Thu Feb 22, 2007 10:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Execute Command Stage
Replies: 11
Views: 7446

Post the 'command' you are executing. If it is a batch file or script, post that as well. NOTE: You've marked your OS as 'Windows' but mention using the 'cat' command which is typically UNIX. Which is it? :?
by chulett
Thu Feb 22, 2007 6:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with oracle stage
Replies: 8
Views: 1737

Then stick with the hashed file reference lookup. There is no 'datastage' problem here, but a problem with your job design specific to how you setup the OCI reference lookup. To get that working correctly, you'd need proper sql to constrain your query based on key values in your input stream - like ...
by chulett
Thu Feb 22, 2007 5:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSU.ClearHashFile is not cataloged
Replies: 7
Views: 1867

Nagin wrote:
narasimha wrote:Re-compile your routine ClearHashFile and try if it works.

I tried re-compiling the job I am still getting the same error

He did not ask you to recompile a job but to recompile the ClearHashFile routine. Is that what you did?
by chulett
Thu Feb 22, 2007 5:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to Datestamp challenges
Replies: 11
Views: 4255

You don't have any kind of Julian date. Why is that particular error being reported? :?
by chulett
Thu Feb 22, 2007 5:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error viewing oracle stage
Replies: 8
Views: 1960

If you log in with the second address, you can directly copy the web address and post as the Url link. But if you have logged in using the first address you will need to put in the the www. before dsxchange.com while giving reference to the URL links. We've had this conversation before, but it's al...
by chulett
Thu Feb 22, 2007 4:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to Datestamp challenges
Replies: 11
Views: 4255

No, as that's a perfectly valid timestamp. He posted the issue: "Trans_Date_Dim_datatypes,0: Conversion error calling conversion routine timestamp_from_string data may have been lost" I assume that's because you are going from a 100 character string down to a 19 character one. I'm assuming you need ...
by chulett
Thu Feb 22, 2007 4:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Ececute Command - Parameter
Replies: 3
Views: 1085

DSguru2B wrote:Its the second box in execute command stage.

Yep - and (oddly enough) it's labelled Parameters. :wink:
by chulett
Thu Feb 22, 2007 4:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with oracle stage
Replies: 8
Views: 1737

my user defined query is below SELECT DIM_ZIP_CODE.ZIP_CODE_KEY,DIM_ZIP_CODE.ZIP_CODE FROM perform_owner.DIM_ZIP_CODE WHERE rownum < 200 So... for every record through the job, you are going to select the exact same set of 199 records and then return only one of them? Over and over. You sure that's...
by chulett
Thu Feb 22, 2007 2:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with oracle stage
Replies: 8
Views: 1737

Your user-defined sql is invalid. Specifically, the bind variables don't match up to the columns in the stage. Why not let the stage generate the sql?
by chulett
Thu Feb 22, 2007 1:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: routine not working as expected
Replies: 9
Views: 1584

You'll never get 'SUB' from that routine because the second if-then-else stands completely separate from the first. So, all you'll get is 'UNSUB' or 'NULL'.
by chulett
Thu Feb 22, 2007 12:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Accessing CSV files on local drive
Replies: 13
Views: 3119

Your UNIX-based DataStage server needs to be able to 'see' your local drive in order to access files on it. You'd need to arrange an NFS mount or use something like Samba to enable that.
by chulett
Thu Feb 22, 2007 11:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Get 'Rows Per Transaction' of OCI output link from MetaData
Replies: 4
Views: 978

Only thing to add is the value is set to 0 'after job' with a successful run. Or you can just nuke the checkpoint source.
by chulett
Thu Feb 22, 2007 10:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Get 'Rows Per Transaction' of OCI output link from MetaData
Replies: 4
Views: 978

I take a different approach and write out 'commit point' row numbers during the course of a run. Last value is used to constrain during restart.
by chulett
Thu Feb 22, 2007 10:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fact Load Performance
Replies: 10
Views: 1818

Yes, you shouldn't 'need' to, but I always do - seen too many times where 'odd' behaviour was corrected by the explicit inclusion of a transformer stage.