Search found 118 matches

by amsh76
Wed Jun 29, 2005 5:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job aborts after 754K recs with Aggregator: %s
Replies: 20
Views: 8685

I have encountered this problem in past when I didn't have my data sorted before aggregation.. Larry, sorting data is always efficient before aggregation, and there is column available in Aggregator Stage where you specify how the data is sorted.. Now geeting back to the problem, as you tried sortin...
by amsh76
Wed Jun 22, 2005 5:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Setting No in Nullable Column
Replies: 7
Views: 3606

But amitava, first you need to read the file before you apply any NullHandling function.
by amsh76
Fri Jun 17, 2005 3:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Invalid Character
Replies: 6
Views: 3292

Is it a user defined query ? If so pls make sure your metadata match with the column order in your select query.
by amsh76
Thu Jun 16, 2005 5:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: A,B,C ---> a b c
Replies: 10
Views: 2767

What are you trying to achieve, One column to many columns ??

Or One column to many rows ???

And Pivot is used in Server...
by amsh76
Thu Jun 16, 2005 5:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: A,B,C ---> a b c
Replies: 10
Views: 2767

Wait a sec...do you mean three rows ???? and not columns :roll:

If thats the case then look at Pivot Stage....

Sorry, if I misinterpreted your question.
by amsh76
Thu Jun 16, 2005 5:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: A,B,C ---> a b c
Replies: 10
Views: 2767

Look at Field function provided there is a delimiter (, in your example) as you shown in the example.

Col 1 Col 1 2 3
A,B,C A B C
by amsh76
Thu Jun 16, 2005 5:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to avoid warnings?
Replies: 15
Views: 3679

If you rejects those records in transformer then you can avoid these warnings. Stop them from going to the DB stage.
by amsh76
Wed Jun 15, 2005 4:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential FIle Problem
Replies: 12
Views: 3989

Hi Yaminids,

Its the other way round. The number of columns in the file is less that columns defined in stage.

Just look at that record and you should get the answer to your question.
by amsh76
Wed Jun 15, 2005 4:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: LongVarChar source and DS job fails to recognize it!!!
Replies: 15
Views: 6758

Someone in operation should know the Max length possible..there has to be a limit. Why don't you ask them ?
by amsh76
Wed Jun 15, 2005 4:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Improving the performance of OCI 9i Stage
Replies: 6
Views: 1560

Please look into the documents..its explained there.
by amsh76
Wed Jun 15, 2005 7:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting Null When Trying to Populate ''(empty string)
Replies: 7
Views: 2392

Even I have noticed that starnge behaviour in past, not sure what the reason is. But from what I was able to conclude is that, it happens when you move that data between trasformers somehow that empty string is treated as null. Try running nulltoempty routine, in the last xformer....and you will see...
by amsh76
Tue Jun 14, 2005 4:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: temp delimited files that contains the delimited character
Replies: 7
Views: 2942

In the Sequential File Stage, within the column properties....you can specify whether that column contains the line terminator.

Once you read the file successfully..you can use the convert function to convert the line terminator into space or some other character.
by amsh76
Fri Jun 10, 2005 3:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Change the Column after that particular row is processed
Replies: 3
Views: 2514

You can use that as a parameter, and assign the value through a afterjob routine.
This afterjob routine will check the status of your job, and based on the status it will set the value of that parameter to p or e.

HTH
by amsh76
Thu Jun 02, 2005 12:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Counting No Of Lines
Replies: 10
Views: 3633

Hi Sainath,

What i meant by head and tail is to move the data (w/o empty records) to another file..provided he knows the position of empty records.
by amsh76
Thu Jun 02, 2005 11:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Counting No Of Lines
Replies: 10
Views: 3633

Where are these empty lines..you can use head, tail or sed commands in unix...for removing those extra records.