Search found 42189 matches

by chulett
Mon Dec 31, 2007 7:27 am
Forum: General
Topic: Row to column conversion
Replies: 1
Views: 1325

That's called a 'vertical pivot' - search the forums for discussions on the techniques needed to accomplish that.
by chulett
Sun Dec 30, 2007 8:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue on running sqlldr while using rsh
Replies: 5
Views: 1756

Welcome. :D sqlldr isn't in your path on the remote system, hence it cannot be found. And there's no log file because you never launched sqlldr... unless you mean whatever Func_Log_Writer is supposed to do. If so, don't see how anyone can comment on that with no source. So it seems you'll need to en...
by chulett
Sat Dec 29, 2007 10:46 am
Forum: General
Topic: Same sequential file as the source and the target
Replies: 10
Views: 3103

I don't know about anyone else, but man am I ever satisfied! [ahhhh]
by chulett
Sat Dec 29, 2007 9:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SCD stage compilation error
Replies: 5
Views: 1276

New in the 8.x release.
by chulett
Sat Dec 29, 2007 9:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading XML file.
Replies: 12
Views: 3365

Thanks for posting that, Ernie. Bookmarked your blog. :wink:
by chulett
Sat Dec 29, 2007 8:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing parameter to uvsh select query in shell script
Replies: 5
Views: 3597

Hard to tell from your description what exactly you are doing. Shell variable? Meaning, you've got this command in a shell script and have passed the parameter to the script? If that's the case, then use $1 (assuming the first parameter) rather than $catg_name. Environment variable? If that's what ...
by chulett
Fri Dec 28, 2007 1:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RowProcCompareWithPreviousValue Routine not working...
Replies: 14
Views: 2908

The comparison itself would be valid regardless of how the input is sorted, however you are correct in that most people would use it with sorted input.
by chulett
Fri Dec 28, 2007 9:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: concadinate one string with numaric
Replies: 11
Views: 2189

:? How? 'PART1' is neither numeric nor a number but rather alphanumeric and thus a string it must be.
by chulett
Fri Dec 28, 2007 7:58 am
Forum: General
Topic: Multiple Instances of a server Job.
Replies: 9
Views: 3364

But that particular handle has been released, so how can the code that follows actually run the job again? :?

Unless there's some magic snippage in there, critical pieces of code that we are missing...
by chulett
Fri Dec 28, 2007 7:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading XML file.
Replies: 12
Views: 3365

The XML Input stage needs an input link. Since there is no PX folder stage, the Sequential File stage will have to take its place and luckily it supports wildcard pattern matching so it can 'read' multiple files much like the folder stage. It can also be set to capture and pass just the filename, wh...
by chulett
Fri Dec 28, 2007 7:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sub sequence aborted but the main sequence didn't
Replies: 7
Views: 3046

That's because the 'subsequence' didn't abort, I'd wager. That must happen first, then depending on the main Sequence design it could abort as well and all be restartable.
by chulett
Fri Dec 28, 2007 7:15 am
Forum: General
Topic: Multiple Instances of a server Job.
Replies: 9
Views: 3364

No, there's nothing automatic about invocations. You will need to control that, probably simplest by incrementing a number each time.
by chulett
Fri Dec 28, 2007 7:13 am
Forum: General
Topic: Multiple Instances of a server Job.
Replies: 9
Views: 3364

Specifically, when you attach to the job: hJob1 = DSAttachJob(JobName.InvocationID, DSJ.ERRWARN) I'm somewhat surprised that the next chunk of code actually works, that you could attach using the old handle again and not the job name: * Release the handle for the Job ErrCode = DSDetachJob...
by chulett
Thu Dec 27, 2007 8:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple instance invocation from a shell script
Replies: 9
Views: 2505

Really? Scroll back up to the top, to the first post you made. Should be obvious.
by chulett
Thu Dec 27, 2007 5:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple instance invocation from a shell script
Replies: 9
Views: 2505

Hmmm... assumed that was what you were already doing and the issue lay elsewhere. :?