Search found 26 matches

by paultechm
Tue Nov 13, 2012 4:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help with Lookup Logic
Replies: 4
Views: 3481

Re: Help with Lookup Logic

Concatenate columns 1 to 10 in both source and lookup then perform the lookup based on the concatenated column
by paultechm
Sat Sep 29, 2012 12:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_ORACLE_PRESERVE_BLANKS
Replies: 12
Views: 6844

Re: APT_ORACLE_PRESERVE_BLANKS

Recently I have had the same issue ie after adding APT_ORACLE_PRESERVE_BLANKS all the character columns have been padded with space. I have found a workaround for this, just updating the old thread which may help others. Workaround Removed length values in the metadata for all the columns in the loa...
by paultechm
Wed Dec 07, 2011 12:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: capture the reject record based on column length
Replies: 20
Views: 10601

Re: capture the reject record based on column length

Read it as a single varchar column with out any lenght.In transformer put a constraint like length(column)>(take the total metadata length sum) then reject it


-Paul
by paultechm
Mon Nov 28, 2011 8:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problems with UNICODE-characters from Oracle-database
Replies: 10
Views: 21183

Use DRS satge to read the data as varchar in transformer convert using the function and change datatype as nvarchar .
by paultechm
Mon Nov 28, 2011 7:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problems with UNICODE-characters from Oracle-database
Replies: 10
Views: 21183

Whats your source and datatype used for reading? Are you checking in view data or table?
by paultechm
Mon Nov 28, 2011 5:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problems with UNICODE-characters from Oracle-database
Replies: 10
Views: 21183

whats the value looks like in the table after applying this funcation .

Make sure that datatype is in nvarchar
by paultechm
Mon Nov 28, 2011 2:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hash Partition to lookup stages
Replies: 4
Views: 4065

Split the job as two separate jobs ,after join write into a dataset
by paultechm
Sun Nov 27, 2011 11:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Character set conversion in DataStage job
Replies: 3
Views: 6753

Use stringtoUstring(colunname,'UTF-8') with column datatype as nvarchar

Regards,
Paul Joseph
by paultechm
Sat Nov 26, 2011 3:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Scenario needs to be solved
Replies: 6
Views: 3560

Sorry , I haven't noticed your comments , I know that the post doesn't have much explanation of the requirements .
by paultechm
Fri Nov 25, 2011 4:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problems with UNICODE-characters from Oracle-database
Replies: 10
Views: 21183

Apply stringtoUstring(columnvalue,'UTF-8') and make column datatype as nvarchar

View data wont give the correct result ,please check the final out put (file or table)


Thanks
Paul Joseph
by paultechm
Fri Nov 25, 2011 4:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel routines and Unicode
Replies: 4
Views: 2952

Can you try to pass it as stringtoUstring(columnvalue,'UTF-8')
by paultechm
Fri Nov 25, 2011 4:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Scenario needs to be solved
Replies: 6
Views: 3560

Create a column called Productive_time in transformer with value as Out_time-IN_Time Emp_id IN_Time Out_time Productive_time 1234 09:30 10:30 1 1234 11:00 14:00 3 1234 15:00 17:00 2 1234 17:30 18:30 1 pass this to an aggregator stage group with Emp_id and calculate min(in_time),max(out_time),sum(Pro...
by paultechm
Wed Nov 23, 2011 12:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: EBCDIC File with COMP-4 data
Replies: 3
Views: 3051

Thanks craig for reply . We are using datastage 7.5.2 ,see the below complex falt file settings Charcter Set -EBCDIC Byte Order -Native-endian Data Format-Binary Record type -Variable. The file is in variable format also conatins an array STATUS OCCURS 1 TO 82 TIMES DEPENDING ON STATUS-COUNT. how ca...
by paultechm
Tue Nov 22, 2011 3:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: EBCDIC File with COMP-4 data
Replies: 3
Views: 3051

EBCDIC File with COMP-4 data

We are facing issue with reading EBCDIC file using complex flat file stage. We have received the file with both ASCII and binary format .ASCII file is readable other than few lines because of one of the COMP-4 field contains binary data 10(decimal 10, hex value 0A) and in UNIX it converted as line f...
by paultechm
Fri May 27, 2011 3:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: unable to read from a space delimited sequential file
Replies: 9
Views: 7811

Re: unable to read from a space delimited sequential file

Read as a single varchar column, use convert function to replace 'space' into 'comma'(or any other) ,use column import to parse this into multiple columns


-Paul