Search found 5168 matches

by kumar_s
Fri Sep 15, 2006 8:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while converting date format
Replies: 4
Views: 1560

Try this

Code: Select all

StringToDate(((b)[6, 2]:(b)[9,2]:(b)[1,4]),'%mm%dd%yyyy') 
by kumar_s
Fri Sep 15, 2006 8:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unix Error
Replies: 23
Views: 4175

You can find some routine posted, for periodic clean up of project directory. You can make use of it.
by kumar_s
Fri Sep 15, 2006 8:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: need max value without sort stage
Replies: 5
Views: 937

You tell us, why you need the sort stage to store the data in the file. If your requirement is to find the max of the group, and that too, if you already found using the 2nd aggregator, I dont find a need to sort stage. If you give some example of what you expect, and what you get if sort stage is b...
by kumar_s
Fri Sep 15, 2006 8:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating/updating an unique number for each call of the sequ
Replies: 13
Views: 4457

We have such one but not exactly the same. We maintain a count in a table. A .SQL file been called each time, which will update the table, by fetching the max of the count and add 1 and update the same.
by kumar_s
Wed Sep 13, 2006 7:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Viewing/Writing Contents of a DataSet from a OS
Replies: 10
Views: 4647

orchadmin -dump should be more appropriate for your requirment.
by kumar_s
Wed Sep 13, 2006 7:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading or writing the last record to a Sequential File
Replies: 7
Views: 2488

@OUTROWNUM can be used only if the number of records are predefined. Tail stage can be possible used based on your requirement.
by kumar_s
Wed Sep 13, 2006 7:27 pm
Forum: Site/Forum
Topic: Ray on 14000!
Replies: 13
Views: 5848

I may be wrong but i think ray is busy these days and gets lesser time to spend with us. thanx a lot anyways Ray for the effort and support you have given to us. His rate is still 9-10 post per day. Some time I find him posting more than 50 post per day. You cannot expect him to work more harder. :D
by kumar_s
Wed Sep 13, 2006 7:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: replacing a string
Replies: 17
Views: 6988

Or Index() in transformer to find the and replace with the given string. If not sure about the number of occurance, you can make use of Dcount().
by kumar_s
Wed Sep 13, 2006 7:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Integrity Constant
Replies: 3
Views: 1568

ALTER TABLE and DROP CONSTRAINT in the before sql and ADD CONSTRIANT in After sql.
by kumar_s
Wed Sep 13, 2006 7:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Method used to convert server jobs to parallel jobs ?
Replies: 6
Views: 2523

1) As already mentioned, the hashed file which is used for lookup, can be replaced by either a lookup file if the data can fit into memory else other stages on Sparse lookup. There is not hashed file in PX. You need to recreate it in any of the available format. 2) If you want to collect back all st...
by kumar_s
Wed Sep 13, 2006 6:57 pm
Forum: General
Topic: Install Summary. Issues with compiling transformer stage.
Replies: 4
Views: 3685

So what is the error that's been thrown out?
by kumar_s
Tue Sep 12, 2006 10:55 pm
Forum: Site/Forum
Topic: Ray on 14000!
Replies: 13
Views: 5848

Ray on 14000!

Congratz Ray!!!

Roy- I guess you have missed this. :wink:
by kumar_s
Tue Sep 12, 2006 10:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Range Lookups
Replies: 10
Views: 4341

It is actually populating the records with the intermediate values between the to and from range. But again it will chalange the performace for the 1million row lookup. But is has advantage of equality predicate.
by kumar_s
Tue Sep 12, 2006 10:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer between Dataset and Multiload
Replies: 2
Views: 634

However, If need to have a reject handling based on the given business logic even in future, you can add a transformer. If there is no functionality required, its better to remove, because it will always consume its own resource.
by kumar_s
Tue Sep 12, 2006 10:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to capture the warnings
Replies: 4
Views: 1361

You can capture the database errors like SQL CODE and SQL ERROR from the job by extendending the reject link with these column enabled using RPC.
If you need to load the logs available from datastage, you can use dsjob -logsum/-logdetail/-lognewest functionality.