Search found 4 matches

by chenyuan
Fri Dec 14, 2007 3:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue:Pass the record value to job parameter
Replies: 7
Views: 3713

Re: Issue:Pass the record value to job parameter

I do believe that is external before/after job runtine. Unfortunatly, there is the limitation in priviliage of accessing datastage sever. External funtions are not allowed except shell script, and also the sever doesn't have Libray for C++ as well. I have recently posted a parallel routine which exa...
by chenyuan
Thu Dec 13, 2007 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue:Pass the record value to job parameter
Replies: 7
Views: 3713

The problem is job parameter can't either change in "run time" or set as a "function".The Utility function's return value still can't pass to parameter by itself or in run time. The only feasible solution so far is to use shell script to read each record sequently and pass the va...
by chenyuan
Mon Dec 10, 2007 1:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue:Pass the record value to job parameter
Replies: 7
Views: 3713

the UtilityRunJob function only returns job summary status, not the value form record. Following is the copy from the routine description. -------------------------------------------------------------------------------------- The routine runs a job. Job parameters may be supplied. The result is a dy...
by chenyuan
Fri Dec 07, 2007 5:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue:Pass the record value to job parameter
Replies: 7
Views: 3713

Issue:Pass the record value to job parameter

Base on the record, each client_Id has to output its records to a new file.
By using job parameter can output with different file name. But the issue is DataStage can't pass the record's value to job parameter sequentially like for loop.