Search found 42189 matches

by chulett
Tue Feb 05, 2008 5:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FIX Protocol
Replies: 5
Views: 1080

You sure you were answering the right question here, Ray? :?
by chulett
Tue Feb 05, 2008 3:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Conversion of 32 bit hashed files to 64 bit using a routine
Replies: 7
Views: 1491

My wildcard? No, I simply use it to remove a single hashed file directory and the associated dictionary file at once, not do anything en masse. Just trying to turn two steps into one, still inside the loop.
by chulett
Tue Feb 05, 2008 1:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Tuning Solaris for Datstage 7.5.2
Replies: 8
Views: 2137

Or they had changed it in the old installation but failed to make the same changes in the new installation. Hmmm...
by chulett
Tue Feb 05, 2008 1:13 pm
Forum: General
Topic: Connecting Database using DS routine
Replies: 9
Views: 2492

Well, there you go... much smarter solution. :wink:

Time to mark your post as Resolved.
by chulett
Tue Feb 05, 2008 12:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can I have a job that checks to see if a job is running?
Replies: 9
Views: 3511

As to the 'gets stuck' part, have you had your DBA check to see what was going on when that happens? Some other process locking this one out, perhaps?
by chulett
Tue Feb 05, 2008 12:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can I have a job that checks to see if a job is running?
Replies: 9
Views: 3511

No, it won't actually launch the job - would I lead you astray? It will just query the job and dump all relevant 'info' about it to standard out.
by chulett
Tue Feb 05, 2008 12:30 pm
Forum: General
Topic: Connecting Database using DS routine
Replies: 9
Views: 2492

So... you 'resolved your issue', meaning you actually wrote a routine to connect to Oracle? Or did something else? :?

I would do something like this in a simple little Server job, if you felt it really needed to come from Oracle.
by chulett
Tue Feb 05, 2008 11:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can I have a job that checks to see if a job is running?
Replies: 9
Views: 3511

To answer the last question, script a call to dsjob with the -jobinfo option then grep out the Job Status and check for RUNNING.
by chulett
Tue Feb 05, 2008 9:39 am
Forum: General
Topic: Start Loop - infinite loop
Replies: 11
Views: 5501

StartLoopStageName.$Counter

Now, as to whether you can reset it or not inside the loop? [shrug] Never tried but go ahead and give it a shot.
by chulett
Tue Feb 05, 2008 8:57 am
Forum: General
Topic: Start Loop - infinite loop
Replies: 11
Views: 5501

No, not the wrong stage per se, it's just that it was built with a fixed end in mind. What you'd really want to build is an RTI job, but (I assume) with that not being a possibility... What you could do is hand code something similar to the Loop stages in a batch job but without the hard end point. ...
by chulett
Tue Feb 05, 2008 8:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Conversion of 32 bit hashed files to 64 bit using a routine
Replies: 7
Views: 1491

:lol: We'd never let that happen, now would we?
by chulett
Tue Feb 05, 2008 7:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Conversion of 32 bit hashed files to 64 bit using a routine
Replies: 7
Views: 1491

I typically stick a splat in front of the hashed file name and get both in one swell foop: Command = "rm -rf *" : HashFileName Call DSExecute("UNIX", Command, Output, ExitStatus) Now, I suppose there is a danger there of deleting more than expected, depending on your nami...
by chulett
Tue Feb 05, 2008 7:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORACLE BULK LOADER 8.1(dropping keys)
Replies: 1
Views: 674

No, there isn't. Assuming you have the grants to do this, you would need to script/code in their removal before the load and then reinstate them after the load.
by chulett
Tue Feb 05, 2008 7:40 am
Forum: General
Topic: Start Loop - infinite loop
Replies: 11
Views: 5501

Welcome. :D Define 'continuous' and 'infinite' in your case. The loop counter can be a rather large number (9 9s from what I recall) - are you saying that you would need to loop more than that number of times in a continous run? Perhaps an idea of what kind of problem you are trying to solve is in o...