Search found 194 matches

by thurmy34
Wed Sep 27, 2006 7:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing parameter values dynamically
Replies: 10
Views: 3590

Hi Ray
Your solution is as always interesting but i can't find the start/end loop activity in the designer.
by thurmy34
Wed Sep 27, 2006 12:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing parameter values dynamically
Replies: 10
Views: 3590

Hi, Here is my own "seek a parameter" routine. Arg1 is the name of the parameter we want. * Open The File OpenSeq ParamFile to paramtemp Else Ans = "Not Found ":ParamFile * Read the File loop while ReadSeq param from paramtemp varParameter = upcase(field(param,'=',1)) varName = u...
by thurmy34
Wed Sep 27, 2006 12:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing parameter values dynamically
Replies: 10
Views: 3590

Hi,
I don't understand the randomly thing.
For the rest you can read your file,seek for your parameter and use the DSSetParam function.
by thurmy34
Wed Sep 20, 2006 12:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: New KgdGenHtml zip posted
Replies: 13
Views: 6426

Hi,

I tried to find the code of the jobreport routine but my search failed.
I'm afraid that we lose it.

:cry:
by thurmy34
Mon Sep 18, 2006 3:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: New KgdGenHtml zip posted
Replies: 13
Views: 6426

Hi

I tried to contact Tony Curcio by email but the one i have it's not valid anymore.
I'm looking for the code of the jobreport routine.

Thank you.


Do i have to do a new post ?
by thurmy34
Fri Sep 15, 2006 12:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: New KgdGenHtml zip posted
Replies: 13
Views: 6426

Hi

Thank you for the post and for the zip.
Sorry about the message.
by thurmy34
Mon Sep 11, 2006 8:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: -------Rows missing in tha Hash File--------
Replies: 13
Views: 4357

I think that you can't do that without lose or separate the Skey. I think a transformer with an aggregator will do what you want but again a key is a key if it's unique. Agg1(Sum(amount) on Skey,EID,Aeskey) ---> Transformer (Skey,NewAmount) ---> Agg2 (Max(amount) on Skey) ---> hash_file (Key?) I don...
by thurmy34
Mon Sep 11, 2006 7:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: -------Rows missing in tha Hash File--------
Replies: 13
Views: 4357

Hi I don't understand your last post. If you sum your amount on Skey you will have only one row in the aggregator ouput. Skey Amount 1 100 2 200 1 100 2 200 3 300 with this data the result will be Skey NewAmount 1 200 2 400 3 300 And now the hash_file with don't override any records.
by thurmy34
Mon Sep 11, 2006 6:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: -------Rows missing in tha Hash File--------
Replies: 13
Views: 4357

Hi

I would say your key is not a key because it's not unique.
What are the traitements include in your next job ?
How is working your lookup ?
Maybe you can add a column which will become the hash_file key.

Hope This Help.
by thurmy34
Mon Sep 11, 2006 5:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: -------Rows missing in tha Hash File--------
Replies: 13
Views: 4357

Hi,

You must have a key in a hash_file stage but maybe you don't need this stage.

You can use the ouput of the sort stage directly.

FILE --> SORT ---> TRANSFORMER

Hope This Help
by thurmy34
Mon Sep 11, 2006 5:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: -------Rows missing in tha Hash File--------
Replies: 13
Views: 4357

Hi
Do you have keys in your hash files ?
Is so maybe some records are override.

Hope this help
by thurmy34
Mon Sep 11, 2006 5:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: split file
Replies: 12
Views: 4538

Hi I am agree with changming except for the loop because we are in windows. But you can write a job control who call your job x times with the value to proceed in parameter. You should include this parameter in all the stage to name the file. * Setup SplitJOB, run it, wait for it to finish, and test...
by thurmy34
Mon Sep 11, 2006 2:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Last Record
Replies: 11
Views: 3152

Hi

With a transformer you can assign what you want to the last record.
by thurmy34
Fri Sep 01, 2006 7:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Macro
Replies: 11
Views: 2724

I have all my answers.
Thank you all
by thurmy34
Fri Sep 01, 2006 7:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Macro
Replies: 11
Views: 2724

I will do that.
Do you do the same in the jobcontrol or do you use dsjobname ?
Thank you all.