Search found 5168 matches

by kumar_s
Wed May 31, 2006 10:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Jobs suddenly become un-runable
Replies: 9
Views: 2391

Ray - Any special care should be taken while clearing &PH&.
by kumar_s
Wed May 31, 2006 10:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data type from varchar2 to decimal
Replies: 7
Views: 2299

There should be a field level mapping give to you. Or look into the given buisness rules. There might be some code change involved. Somting like 1--> True; 0 --> False. Use transformer to acheive this.
And dont try acheive somting new by fiting charecters into decimal field.
by kumar_s
Wed May 31, 2006 10:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dealing with Unique Index after abort
Replies: 7
Views: 1687

So should also need to have a track of commit interval.
by kumar_s
Wed May 31, 2006 10:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I do a dynamic select?
Replies: 13
Views: 7306

If needed the dataset can be 'Dump'ed into a sequential file in the same script.
by kumar_s
Wed May 31, 2006 10:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dealing with Unique Index after abort
Replies: 7
Views: 1687

Are you generating your own surrogate keys or the database is generating the keys? If the answer is yes then you could have the max(key) saved in a hashed file and then in the transformer, you could have the constraint in.key > max.key Or take a similar approach, but use @INROWNUM in the constraint...
by kumar_s
Wed May 31, 2006 10:05 pm
Forum: Site/Forum
Topic: Its time again!!!!
Replies: 5
Views: 2389

kduke wrote:He is not human. :wink:

Perhaps humane :wink:
by kumar_s
Wed May 31, 2006 10:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Merge Stage yeilding 'holes' in the output data
Replies: 8
Views: 1793

Yes you can check in DUMP SCORE. But if select the hash partition on the key on which you merge to the all of the links it should work. By selecting Auto it is not gaurented the right partition is selected. You can find some complaints in some earliar versions. And in most cases Roundrobin wont help...
by kumar_s
Wed May 31, 2006 7:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Where exaclty i have to use IPC in my job?
Replies: 3
Views: 1183

IPC stage usually goes between two active stages to run them as two seperate processes. If you have multiple cpu's, then you will be benefited with the use of IPC stage. Try this post. Its relating to your issue. DSguru2B - I guess the link has some ...t=... thing in it which redirects back to logi...
by kumar_s
Wed May 31, 2006 6:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle datatype warning
Replies: 1
Views: 835

You can find one of the recent post with the same issue. It is found that integer without precision is taken as decimal(38,10) as default. Try to edit the medata manully from DS manager and use it.
by kumar_s
Wed May 31, 2006 6:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hashed file
Replies: 2
Views: 977

Are you looking out for a performance tuning steps for these 10 records :wink:
by kumar_s
Wed May 31, 2006 6:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SDC with single stage
Replies: 19
Views: 4263

As mentioned earliar, if you are doing lookup it is not needed to use change capture stage. The function of ChangeCapture stage is to do a lookup internallya and do change detection and give you the result with a ChangeCode. So based on the chagne code using transformer, you can acheive the logic of...
by kumar_s
Wed May 31, 2006 6:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: data stage shudular
Replies: 2
Views: 793

That was just to let you know that, dsjob externalize the job call. And hence you can use the command to call the job and schedule the same in your 3rd party scheduler.
by kumar_s
Wed May 31, 2006 6:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Failed to open job
Replies: 4
Views: 1419

Are you sure the value of $DSJOBNAME is getting passed properly.
by kumar_s
Wed May 31, 2006 6:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Ds repository tables in Basic routines
Replies: 8
Views: 2050

You can use DSExecute to execute UV commands. But its is also possible to retrive the informations like DSJobStartDate, DSJobStartTime... through DsMacro from JobSequencer itself.
by kumar_s
Tue May 30, 2006 11:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Non Nullable to Nullable using Modify stage
Replies: 8
Views: 3442

What is the output stage. If it is sequential file stage, try to play with "Nullable field value" and "Default value", I guess you can acheive your need, using these option. And can avoid Modify stage as well. I dont have access right now, will let you now later.