Search found 5168 matches

by kumar_s
Wed Jul 26, 2006 2:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loosing The Microseconds in Stage variable
Replies: 4
Views: 1775

Where you see the loosing information?
If it is in output, it should atlest show you .000000.
Use Peak stage to get the values showed in Director.
by kumar_s
Wed Jul 26, 2006 2:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error on subtraction of two decimal(19,3) number
Replies: 9
Views: 3390

May I know what is the values for APT_DECIMAL_INTERM_SCALE and
APT_DECIMAL_INTERM_PRECISION?
Have you changed it, if so what is the new value?
Have you tried to set APT_DECIMAL_INTERM_ROUND_MODE to "Discard any unrepresentable fractional digits"
by kumar_s
Wed Jul 26, 2006 1:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: row too big for inter stage rowbuffer
Replies: 17
Views: 6438

Hi Murali,
There is a section called "Setting Up Properties for the XML Input Stage" in XMLPACK pdf. You might get more info reg this.
by kumar_s
Tue Jul 25, 2006 7:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: What is the equivalent of Join Stage of PX in server.
Replies: 3
Views: 2334

If you lookup data is too huge, you can opt for sparse lookup. Where you have have your query in the in the database stage (if the lookup table is DB2)
by kumar_s
Tue Jul 25, 2006 7:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need help How to Concatenate Data from two flat files .
Replies: 8
Views: 3185

Ray have given you the solution.
cat file2 >> file1

Or
Cat file1 file2 > <NewFileName>
Or
Read the two file in the sequential file stage and write to a single sequential file stage with Append option enabled.
by kumar_s
Tue Jul 25, 2006 6:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Concatenating Fields in DataSets
Replies: 9
Views: 2010

...[1,len(SF1)]:..

This wouldn't require if you mark all the column as Varchar.
by kumar_s
Tue Jul 25, 2006 6:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Empty Date field Export to Seq File
Replies: 10
Views: 3824

The point is '' is not Null. You made the date column as Nullable but not ''ble :wink: . So you will be only null in date field in this scenario.
by kumar_s
Tue Jul 25, 2006 6:46 pm
Forum: Site/Forum
Topic: Laziness!
Replies: 18
Views: 8952

Can there be an option to track the user history. If the user entered in the wrong forum, keep a track of it. If he does the same mistake again minus 10 points or something like that Most new posters will have negative points in their score board. Very few have access to post directly in FAQ forum....
by kumar_s
Tue Jul 25, 2006 3:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need help How to Concatenate Data from two flat files .
Replies: 8
Views: 3185

Concatenation or Join?
by kumar_s
Tue Jul 25, 2006 2:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Key points for PX development
Replies: 7
Views: 1551

4th point given by Kenneth should be noted.
Adding up of consicutive active stages wouldnt affect the performace much in Server job, the same wont work in PX. People might happily add more stages which will directly affect the performace, even the combinalble are enabled.
by kumar_s
Mon Jul 24, 2006 10:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SCRATCH SPACE
Replies: 2
Views: 695

If jobs are made to run in parallel, find the accumulated max usage for memory for the given data. Add some buffer to it.
Calculate the value for the production, with the production data using this factor.
by kumar_s
Mon Jul 24, 2006 10:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trim in FILTER stage
Replies: 7
Views: 6618

alphac wrote:if you set a = b, engine will truncate b to varchar(2) first and then compare with a.

if you set b = a, engine will not perform type conversion.

.....


This is a nice study over filter stage on your first post alphac. :D
by kumar_s
Mon Jul 24, 2006 10:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Concatenating Fields in DataSets
Replies: 9
Views: 2010

Check out the Display option, it might have hidden the rest of the field's information.
by kumar_s
Mon Jul 24, 2006 9:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trim in FILTER stage
Replies: 7
Views: 6618

But you can try with the frist 2 character of the Varcahr(6) field to compare with.
by kumar_s
Mon Jul 24, 2006 4:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to count records in unix
Replies: 8
Views: 3854

Why only in unix and not in datastage?