Search found 5168 matches

by kumar_s
Thu Jul 27, 2006 6:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: change code
Replies: 3
Views: 922

These codes or independent on Database you use, but the stage you use.
by kumar_s
Thu Jul 27, 2006 6:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to populate a char field
Replies: 12
Views: 4693

Reset the job, "From Previous run" log might give you more information.
by kumar_s
Thu Jul 27, 2006 2:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning on APT_ParallelSortMergeOperator
Replies: 8
Views: 11974

Somehow the most of data is rushing in to Partition 0. What type of key is specified in Removeduplicate. What type data is it? If the data (key) is of same kind, hash partition will force to flow the data in same partition. Or try to partition on the key which is required for the removedulicate, on ...
by kumar_s
Thu Jul 27, 2006 1:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help for datastage certification
Replies: 1
Views: 647

There is no such 'material' for Datastage certification as other do. But you have lot of information provided in this site as well as in others. Check in IBM websit for the more information. Vincent has posted lots of blogs reg certification. Visit this post "How do I get certification for DataStage...
by kumar_s
Thu Jul 27, 2006 1:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem when dealing with Date
Replies: 7
Views: 2855

Concatinate as you specified, and have this funciton in oracle load stage.
to_date('10-MAR-2000','DD-MON-YYYY')
by kumar_s
Thu Jul 27, 2006 1:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to join 2 flat files in server jobs
Replies: 2
Views: 762

Hi Mohan,
There are many option available. Lookup will also be one kind. It all depends on your requirement. But for your straigt forward question, Ray has answered.
You can let us the requirement if it is different from what you expected.
by kumar_s
Wed Jul 26, 2006 11:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Conversion in EE
Replies: 3
Views: 1076

By default you cannot have dd-mmm-yyyy as date format, unless specifed in the properties. So if input is 'Date' you can try the implicit conversion. Else you need to convert to a centrelised format and convert back to varchar with this format. Any how you will need to use these function.
by kumar_s
Wed Jul 26, 2006 10:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Parameter Limit
Replies: 4
Views: 1013

Try to have a lookup table in the job design with the static informations, to avoid fuzzy.
by kumar_s
Wed Jul 26, 2006 10:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: wcs in datawarehouse
Replies: 7
Views: 1569

I guess it should be something releated to your project (if at all you are working in), which might be discussed or told to you.
by kumar_s
Wed Jul 26, 2006 10:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: mainframe file issue
Replies: 2
Views: 448

Can you delete the other dulicate post create on the same topic by you, before any one reply to that.
by kumar_s
Wed Jul 26, 2006 10:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: mainframe file issue
Replies: 2
Views: 448

Since the file is in Ebcidic formate, you canot use unix command readily. Check whether you can count the number of lines of the file using wc -l command. If it succeed, it proves the file has the end of line as new line character. So you can wipe out the first and last in unix command in the filter...
by kumar_s
Wed Jul 26, 2006 10:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Retreving Multiple Records using Universe Stage
Replies: 13
Views: 4002

Add a unique synthetic key generated and have a combined key while loading in to Hash file.
As Craig suggested, use only the requried key on lookup.
by kumar_s
Wed Jul 26, 2006 7:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Retreving Multiple Records using Universe Stage
Replies: 13
Views: 4002

What about, selecting all the three column as key while creating the hash file. Or what about not mentioning any key at all.
by kumar_s
Wed Jul 26, 2006 7:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Index Query
Replies: 4
Views: 1007

Have DCount() function in the constraint to count and reject or allow the record based on the number of delimeter '*' found.
In derivation,

Code: Select all

If Link.InputCol[1,3] =  'LPG' Then 'NPG':Link.InputCol[4,Len(Link.InputCol)] Else Link.InputCol
by kumar_s
Wed Jul 26, 2006 7:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: environmental variable password?
Replies: 8
Views: 2337

It depends on how you configured the Sequence. If you had give the $PROJDEF in JobSequence, it gets the value from Project level setting. Since, JobSequence is the point where the whole parameter value is been passed, your assertion will be right. If by chance parameter doesnt match each other, the ...