Search found 57 matches

by rohithmuthyala
Sun Apr 11, 2010 11:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sorting in Change Capture stage.
Replies: 3
Views: 2849

Change capture stage will not sort the data by default on key column. One needs to sort the data and hash partition the data on key column(s) explicitly in sort stage or in the same stage.
by rohithmuthyala
Wed Mar 31, 2010 5:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Export DataStage jobs from Command line without executables
Replies: 16
Views: 21033

dsexport.exe /U=Username /P=Password /H=Server /JOB=Jobname <PROJECT> <LOCATION>

I've used this to export the job dsx....it came without the Job executables.
by rohithmuthyala
Wed Mar 31, 2010 5:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Type Conversion
Replies: 8
Views: 2999

Can you provide more details about the column...? What is the datatype in the source Database....!!
by rohithmuthyala
Mon Mar 29, 2010 12:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Box Characters while reading CSV files
Replies: 10
Views: 6238

Thank you Craig ... It worked...!! :D
by rohithmuthyala
Fri Mar 26, 2010 6:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Box Characters while reading CSV files
Replies: 10
Views: 6238

I'm using Ipswitch S/W to transfer the file,by changing the mode of transfer the box character won't appear. But if you observe I've asked if there is any way these characters can be handled in Datastage?
by rohithmuthyala
Fri Mar 26, 2010 3:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Box Characters while reading CSV files
Replies: 10
Views: 6238

Yes..... this column is the last one in my file.
Record level final delimiter is end.
by rohithmuthyala
Fri Mar 26, 2010 3:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Box Characters while reading CSV files
Replies: 10
Views: 6238

Box Characters while reading CSV files

Hi All, Iam moving a CSV file from Windows to UNIX, then reading the CSV file in one of my job and when trying to view data in dataset i'm able to see a box character appended to the value of a column which has a datatype of VARCHAR(8). The box character is not appended for the values if the string ...
by rohithmuthyala
Fri Mar 26, 2010 12:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to clear the Warning on preserve partitiong
Replies: 1
Views: 1558

Clear the partitioning in the Transformer stage in stage properties, which is before the Sequential file stage.
by rohithmuthyala
Tue Mar 23, 2010 1:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: trim the data leading zero
Replies: 11
Views: 7778

Convert the source data from string to decimal...automatically the zero's will be stripped off. If you still want the source data to be string then convert it back from decimal to string..!
by rohithmuthyala
Mon Mar 22, 2010 3:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how can i generate a sequence number in parallel jobs
Replies: 4
Views: 2622

Make the execution mode in transformer as Sequential in stage properties.....keep a counter which adds one for every record..!!
by rohithmuthyala
Mon Mar 22, 2010 2:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job failing with warnings
Replies: 3
Views: 1482

Read the column in the source table as "decimal[28,0]" and convert the column's datatype in the transformer stage to the datatype of the target table.
by rohithmuthyala
Thu Mar 18, 2010 5:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: StringToDate Error
Replies: 2
Views: 1624

If you observe the error message there is a space coming in front of the string,trimming the string before the conversion can help.
by rohithmuthyala
Thu Mar 18, 2010 5:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with ABS and MOD Function in Parallel Extender Job
Replies: 17
Views: 15509

Multiplying with 100 will help only if the number has two decimal places.
by rohithmuthyala
Thu Mar 18, 2010 3:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with ABS and MOD Function in Parallel Extender Job
Replies: 17
Views: 15509

Divide 12.90 with the value 7.47 and store the result as an integer. Then multiply this integer value with 7.47 and subtract this result from 12.90.
by rohithmuthyala
Thu Mar 18, 2010 2:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Route one of Duplicates based on condition
Replies: 9
Views: 5695

In transformer itself, one can compare the code value with that of the previous code value using stage variables. If same then you can directly drop it, else send the record to the link.