Search found 430 matches

by Kirtikumar
Tue Nov 28, 2006 10:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Input Stage
Replies: 1
Views: 1063

what the message means is you have define some fixed width datatype - may be as char and the data coming has variable length.

What is the datatype for id? If it is char make it varchar and see if it works.
by Kirtikumar
Tue Nov 28, 2006 10:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in XML input Stage
Replies: 1
Views: 1104

Here in your data you have data on which permutation and combination need to be executed. I guess it can not be done using XML stage. Using two XML stages you can separate out Action Value and Product value. Then create a lookup for Action value. In the lookup add a dummy column with value '1' and t...
by Kirtikumar
Tue Nov 28, 2006 10:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rejected records in merge stage
Replies: 2
Views: 1219

Or else you can have full outer join on the stage. Then after the join using null handling conditions on columns from left data and right data you can filter data.
by Kirtikumar
Sat Nov 18, 2006 1:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Switch v/s filter stage
Replies: 8
Views: 3761

but using the PX transformer just for filtering - will it be a good idea if performance is considered to use transformer
by Kirtikumar
Sat Nov 18, 2006 7:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Text file Record count using Wrapper
Replies: 2
Views: 1449

Never used a wrapper. But like server job transformer, is the unix sheel script run is possile do it from thr?
by Kirtikumar
Tue Nov 07, 2006 7:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Flat File with Header, Body And Footer
Replies: 9
Views: 7070

Mainframe systems produce 'normal' files, too. :wink: Are you trying to ask if it is EBCDIC or has packed fields in it? Ya I ment EBCDIC file. I am aware that mainframe can generate a normal file as well so should have mentioned as EBCDIC earlier. If coming file from mainframe is normal one then ju...
by Kirtikumar
Tue Nov 07, 2006 5:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date time stamp difference in time stamp
Replies: 10
Views: 13833

If you have to do it using basic code / routine you can use DSGetJobInfo(Handle, DSJ.JOBELAPSED) . It will return the total time taken by the job. If you want it in some format you can use Oconv function as OConv(JonTimeInSec, 'MTS') . The aforesaid function will give you the details for last run. I...
by Kirtikumar
Tue Nov 07, 2006 4:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to generate a unique Multiple Instance indentifier
Replies: 8
Views: 3369

If you remove the DSDetachJob line from the loop then also remove the following line:
hJob = DSAttachJob("MirsLoader_Test2":'.':Instance, DSJ.ERRNONE)
by Kirtikumar
Tue Nov 07, 2006 4:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sort Stage
Replies: 8
Views: 4095

Sort stage in server has performance and other issues when it is applied on large number of rows. You can find all of them if you do a search on this forum for sort stage in server. On Unix environment, normally instead of using the sort stage, it is better to use the Unix SORT utility (means sort c...
by Kirtikumar
Tue Nov 07, 2006 4:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job is aborting but It's updating data
Replies: 8
Views: 1653

If you could post the abort message and any warning related to this BAPI stage that would be helpful in understanding the problem!!
by Kirtikumar
Tue Nov 07, 2006 4:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Flat File with Header, Body And Footer
Replies: 9
Views: 7070

What type of file is this?

Is it a normal file that can be seen using cat command or vi editor? Or is getting generated from mainframe system.

CFF stage is used when the file is generated from MF system.
by Kirtikumar
Mon Oct 30, 2006 5:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Maximum No of jobs in a Project
Replies: 10
Views: 4811

In one of our project, the number of jobs where more than 1000 and the problem we faced was the turn around time when u open the job or see the logs or try to access the repository thro' DS manager was very high.
by Kirtikumar
Mon Oct 30, 2006 5:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job to compile jobs
Replies: 8
Views: 2160

I think a small code or script to clear the RT_STATUS files for the job could also be used. From the prev post, it seems it is RTI job and each time it is called, in status view of DS director it creates the multiple entries one for each instance. If you are able to have script for that, it will do ...
by Kirtikumar
Mon Oct 30, 2006 5:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading file and updating the previous row
Replies: 1
Views: 814

You can use the stage variables to preserve the value of the previous row. Define two stagevars - first is set to second stage var and second stage var set to direct mapping from column for which you want to preserve the prev value. Initialise them to empty. When this runs for the first time, in the...
by Kirtikumar
Fri Oct 27, 2006 4:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Wanted Comments on the expected run time.
Replies: 3
Views: 944

The expected time depends on ur hardware.

Why u want to know the expected time in advance?
Run the in development env and u will get the exact time rather than spending time to calc or guess expected time to run.