Search found 6797 matches

by DSguru2B
Sun Jan 21, 2007 10:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job access by other and cant unlock
Replies: 24
Views: 4496

It was the darn typo on my end. Meant to say "Who locked it" but instead said, "who unlocked it" :oops:
by DSguru2B
Sun Jan 21, 2007 9:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job access by other and cant unlock
Replies: 24
Views: 4496

No. It wont tell who unlocked. Just tells you who initiated the thread.
by DSguru2B
Sun Jan 21, 2007 9:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job access by other and cant unlock
Replies: 24
Views: 4496

User Id tells you that.
by DSguru2B
Sun Jan 21, 2007 9:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator, Restricting count for individual group
Replies: 23
Views: 4062

Ok you got me. If the count starts from 0 then yes. Darn you Kumar :wink:
by DSguru2B
Sun Jan 21, 2007 9:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator, Restricting count for individual group
Replies: 23
Views: 4062

kumar_s wrote:contraint to avoid KeyChange < 100,

Someone forgot the '=' along with '<' :wink:
by DSguru2B
Sun Jan 21, 2007 9:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job access by other and cant unlock
Replies: 24
Views: 4496

Nice to know, I did not know we had a way to find out "Who unlocked the job". I dont have access to Datastage right now, need to look into that feature. And in the DataStage admin, you can type LIST.READU to pull up the same info. Even that will give you a list of all the live/locked threads along ...
by DSguru2B
Sun Jan 21, 2007 9:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job access by other and cant unlock
Replies: 24
Views: 4496

O yea, forgot to add that. Thanks kumar.
by DSguru2B
Sun Jan 21, 2007 8:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job access by other and cant unlock
Replies: 24
Views: 4496

If a job was locked under your id, someone else cannot get rid of it. Only you have to go in with your id and unlock it. "Who unlocked the job" can also be determined in the present versions by going into the cleanup resources and bringing up current active threads. It will tell you the id right the...
by DSguru2B
Sun Jan 21, 2007 8:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator, Restricting count for individual group
Replies: 23
Views: 4062

The OP wants only first 100 enteries per group. This would require a counter in a transformer to constraint the output to the first 100 per group. Then pass it through the aggregator to do the rollup.
That was my understanding.
by DSguru2B
Sun Jan 21, 2007 6:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator, Restricting count for individual group
Replies: 23
Views: 4062

Sorting is easy. Either an OS level or sort stage would do.
Do a group comparison of present row with previous row. If same start a counter.
In the transformer, restrict counter <= 1000. Then pass it through the aggregator and do your rollup.
by DSguru2B
Sun Jan 21, 2007 5:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence status
Replies: 4
Views: 1504

If you got your issue resolved, you can rate the answers accordingly and mark the post as resolved.
by DSguru2B
Sun Jan 21, 2007 1:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate Key using sequence ?
Replies: 34
Views: 13356

The output is in the form of a dynamic array with other contents in it. They are seperated by a field marker (@FM). We are only concerned with the contents of the first field. The first code in my previous post extracts everything before the first @FM. The second code extracts the contents of the fi...
by DSguru2B
Sun Jan 21, 2007 12:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate Key using sequence ?
Replies: 34
Views: 13356

Inside the jobactivity, where your specifying $CommandOutput, provide the following

Code: Select all

Field(Execute_Command_2.$CommandOutput,@FM,1)

OR simply

Code: Select all

Execute_Command_2.$CommandOutput<1>
by DSguru2B
Sun Jan 21, 2007 11:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate Key using sequence ?
Replies: 34
Views: 13356

What is the number in the file?
When you did 'type yourfilename' from the dos prompt, what did you see, did you see the contents of your file?
What have you set the parameter type in your second job? Is it set as string?