Search found 602 matches

by abc123
Thu Dec 28, 2006 1:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Simulating restartability
Replies: 13
Views: 4305

Thanks gentlemen, for your responses. ray, by "duff" data you mean some bad data, right?
by abc123
Wed Dec 27, 2006 8:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Simulating restartability
Replies: 13
Views: 4305

Simulating restartability

I have a job sequence and I am trying to reproduce an error to check my restartability logic. I have a loop at the beginning within which a job is called. There is another loop later in the job sequence where there is another job. I tried stopping the job and restarting but Datastage asks me to rese...
by abc123
Tue Dec 26, 2006 3:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Populating user activity variable in a sequencer
Replies: 14
Views: 5674

Ok. So here is the interesting part. My server job has: Oracle stage----> Transformer ----> SeqFile However, the SeqFile stage is completely unnecessary but I am forced to use it as I don't have the output side without it. In the derivation of the output column, I execute the routine which sets the ...
by abc123
Tue Dec 26, 2006 2:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Populating user activity variable in a sequencer
Replies: 14
Views: 5674

This is the routine:

FUNCTION UpdateUserStatus(intRowCnt)
Call DSSetUserStatus(intRowCnt)
Ans = intRowCnt
RETURN(Ans)

I can create a server job if needed as I am just doing a SELECT COUNT. However, I don't understand where in the job I need to call it. I guess I need a tranformer.
by abc123
Tue Dec 26, 2006 2:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Populating user activity variable in a sequencer
Replies: 14
Views: 5674

I wrote a small routine called GetRowCount. How do I get the output of JobActivity1 so that I can set the UserStatus for this job activity? I would assume that there would some posts similar to this.
by abc123
Tue Dec 26, 2006 12:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Populating user activity variable in a sequencer
Replies: 14
Views: 5674

Populating user activity variable in a sequencer

I have a job in a sequencer where I need to read the number of rows in a table and based on that populate an user activity variable in the sequencer. I am using the job to read the number of rows and put it in a sequential file. I am then using an Execute Command stage to read the value from the seq...
by abc123
Fri Dec 22, 2006 1:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Restartability within the StartLoop and Endloop stages
Replies: 3
Views: 1617

Restartability within the StartLoop and Endloop stages

How does restartability happen within the StartLoop and Endloop stages of a a sequencer? Let's say we have 5 stages within the StartLoop and EndLoop stages. If the job fails on the second stage, would during restart,
the loop counter be preserve? Has anybody done something like this?
by abc123
Thu Dec 21, 2006 11:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Moving columns from input tab to output tab
Replies: 10
Views: 6805

Well. After the modify stage, I have a sequential file stage. The input of this stage has no columns because the output of the modify stage has no columns. The job will not compile. I had to do this manually. Took a lot of time.
by abc123
Thu Dec 21, 2006 10:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Moving columns from input tab to output tab
Replies: 10
Views: 6805

No, it doesn't work. I enabled RCP across the project, job and stage. I still see the Output tab as empty. There is no way to drag the columns from the input tab to the output tab.
by abc123
Thu Dec 21, 2006 9:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Moving columns from input tab to output tab
Replies: 10
Views: 6805

Actually, I wanted the columns from input tab moved to the output tab at design time. It doesn't happen. How do I get the columns moved at design time without manually typing them?
by abc123
Thu Dec 21, 2006 9:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Moving columns from input tab to output tab
Replies: 10
Views: 6805

ray, thank you for your response. I know about the KEEP specification. That requires that I specify every column that I need to keep. I have over 100 columns. I was wondering if there was another way or some other technique to get around it and apprently there isn't.

Thanks.
by abc123
Wed Dec 20, 2006 4:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Moving columns from input tab to output tab
Replies: 10
Views: 6805

Moving columns from input tab to output tab

I have a modify stage in my job. All input column are populated. However, the output columns are empty. I want to move all input columns automatically to output columns without having to import it from somewhere. How do I do it?
by abc123
Thu Dec 14, 2006 1:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting ExecuteCommand CommandOutput value in a sequencer
Replies: 14
Views: 6591

Thanks ray. Can you tell me where I can read up more about @FM? I looked in to PX Jobs Developers Guide and Advanced Guide but couldn't find any details.
by abc123
Wed Dec 13, 2006 8:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting ExecuteCommand CommandOutput value in a sequencer
Replies: 14
Views: 6591

craig that did it. ExecCommand.$CommandOutput<1> + 1 worked. I am using version 7.5.1A. Can anyone explain why it worked? What does the <> work? It seems like an array element.

Thanks.
by abc123
Wed Dec 13, 2006 8:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting ExecuteCommand CommandOutput value in a sequencer
Replies: 14
Views: 6591

I tried ExecutCommand.$CommandOutput without the addition. This completely errors the job out.