Search found 71 matches

by kogads
Wed Nov 30, 2011 4:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading Multiple Record Types (Record Id)using CFF stage
Replies: 5
Views: 11791

Thanks for your response. I made the settings under decimal as Packed = Yes in the sequential file. So I thought the Sequential file has the capability to convert packed decimals. I could extract the data successfully when I have used the same setting to read another file in the past which has one r...
by kogads
Tue Nov 29, 2011 4:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading Multiple Record Types (Record Id)using CFF stage
Replies: 5
Views: 11791

As you mentioned, the problem might be with the conversion of Packed and Binary data in the sequential file as I have taken the column with VARCHAR datatype. I tried using CFF stage becuase of this conversion of Packed and Binary data but there are issues with the record ID constraint with that stag...
by kogads
Tue Nov 29, 2011 3:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading Multiple Record Types (Record Id)using CFF stage
Replies: 5
Views: 11791

Thanks for the information FranklinE.
I have tried with the settings you have mentioned above including the Record Type and no delimiter but still I am getting unreadable characters in the output.
by kogads
Wed Nov 23, 2011 8:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Releasing Section Leaders and jobs struck
Replies: 5
Views: 3564

I am deploying the jobs in another Environment to see if the problem is with the jobs or with the Environment before i put the blame on Oracle..Will update once i get some results. Thanks for replies
by kogads
Tue Nov 22, 2011 11:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Releasing Section Leaders and jobs struck
Replies: 5
Views: 3564

Seqfile Stage-->>Transformer-->>Lookup (reference as Oracle table)-->>Transformer-->>output(Oracle enterprise stage) reading an input fixed width field and trimming all of them about 20 columns and then do a lookup with a oracle table and then applying some transformations and then to get loaded to ...
by kogads
Tue Nov 22, 2011 10:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Releasing Section Leaders and jobs struck
Replies: 5
Views: 3564

Releasing Section Leaders and jobs struck

Hello , I have problem running jobs on my DEV server which runs on UNIX, so i have enabled reporting ENV variables to know the issue. The jobs start normally and after that they hung up and will be on RUNNING state forever. In the job log i can see main_program: Starting Players. main_program: Waiti...
by kogads
Tue Nov 22, 2011 5:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date
Replies: 11
Views: 6529

StringtoDate function expects the second argument as how the input date format is arriving and not how you want the output to look like.
by kogads
Tue Nov 22, 2011 5:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion of string to Timestamp
Replies: 5
Views: 9237

So, instead of if Column='' then SetNull() else StringToTimestamp(Column:'00:00:00',"%yyyy%mm%dd %hh:%nn:%ss") I need to specify if Column='' then SetNull() else StringToTimestamp(Column:' ': '00:00:00',"%yyyy%mm%dd %hh:%nn:%ss") Tried the above but the job aborted with Fatal err...
by kogads
Tue Nov 22, 2011 4:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion of string to Timestamp
Replies: 5
Views: 9237

I just tweeked with a peek stage and i have seen that the column is generating ******************* value. I have seen the input file and no value for that column has any such records
by kogads
Tue Nov 22, 2011 3:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data conversion
Replies: 13
Views: 5303

Can you please give your i/p and o/p formats..The question is not clear
by kogads
Tue Nov 22, 2011 3:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: EBCDIC File with COMP-4 data
Replies: 3
Views: 3051

See the below link
viewtopic.php?t=143297

It might help you to some extent
by kogads
Tue Nov 22, 2011 3:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion of string to Timestamp
Replies: 5
Views: 9237

Conversion of string to Timestamp

Hello there, I have a fixed width file coming with one of the field( Char(8) ) having a date format eg:20111122 and it has some empty values too.I have to load it to Oracle table as Timestamp which is NULLABLE and when i imported the table definitions to datastage it is imported as Timestamp with sc...
by kogads
Tue Nov 22, 2011 2:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: EBCDIC(Binary) to ASCII using CFF stage
Replies: 3
Views: 7385

Thank you so much for the help James....
by kogads
Tue Nov 22, 2011 11:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: EBCDIC(Binary) to ASCII using CFF stage
Replies: 3
Views: 7385

Thanks for your help Mike, That setting helped me to get the expected result. But in the output file, I could see a Decimal point ( . ) after the packed filed (Comp-3) in the result. The result looks like below for the last field (Packed filed) 1111115 . Can anyone help me to know the reason for thi...
by kogads
Thu Nov 10, 2011 1:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: StringToTimestamp conversion in Transformer
Replies: 11
Views: 4187

StringtoDate would not work as that field is defined as Timestamp in the metadata for Oracle table. If you put StringtoDate and define the field as Timestamp it would not take it.And, if you define the datatype as Date...down the line again you need to convert the Date format to Timestamp format. I ...