Search found 52 matches

by mjgmc
Fri Aug 18, 2006 9:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset with a different structure
Replies: 3
Views: 871

Dataset with a different structure

Hello, I have a job which is used to concat several Datasets into one to be loaded into an Oracle table. So, its design is Oracle Dataset_1 | .. --> Funnel --> Lookup --> Dataset Dataset_n Each input Dataset have the structure: Col1 Col2 (used for the lookup reference) Col3 Col4 And my Output Datase...
by mjgmc
Wed Aug 09, 2006 7:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORACLE Open Command
Replies: 15
Views: 8366

Hello,

I need to do exactly the same, and I get exactly the same error. Did anyone find the answer to this?

Thanks,

mjgmc
by mjgmc
Fri Jun 02, 2006 10:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting universe information about a Job
Replies: 11
Views: 4410

Thanks :) I've finally got what I needed. It's really bad documented this part of Datastage, right? This is my new code and it works fine. A bit slow, but it's ok, it's not part of the regular process: Ans = @FALSE RoutineName = "RtrGetSeqStages" Usage = RoutineName:'(JobName)' * ---------...
by mjgmc
Fri Jun 02, 2006 7:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting universe information about a Job
Replies: 11
Views: 4410

ArndW, As I'm not a Charter Member I don't have access to whole of your message. :( But I suppose you suggest me to run a quey with DSExecute, right? I've already tried it and whenever I run my routine (to test it), it never ends. Is it a normal behaviour? This is the code of my routine: Ans = @FALS...
by mjgmc
Fri Jun 02, 2006 3:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting universe information about a Job
Replies: 11
Views: 4410

I need another information: Each Activity and Link and its type from a Job Sequence. I know that information is in the table DS_JOBOBJECTS, and I can get it from the command line as: select DS_JOBOBJECTS.NAME, max(DS_JOBOBJECTS.OLETYPE) from DS_JOBS, DS_JOBOBJECTS where DS_JOBS.NAME='JsJob' and DS_J...
by mjgmc
Thu Jun 01, 2006 7:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting universe information about a Job
Replies: 11
Views: 4410

Thanks for the answer. In a matter of fact I realized that the field JOBTYPE from DS_JOBS has the following values: 0 for Job Server 2 for Job Sequence 3 for Job PX I think this can help. Even if I'm not abble distinguish a common Job Server from a Job Control. I'll keep looking inside these two tab...
by mjgmc
Thu Jun 01, 2006 3:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting universe information about a Job
Replies: 11
Views: 4410

Getting universe information about a Job

Hello, I hope I'm posting in the right place. If not, please tell me. I'm developping a Job Control which will verify some information about a Job which name will be passed as a parameter. I've found almost all the info I need, but I'd like to know if there's a way to find which type of job I'm look...