I am working on a project which deals with conversion of COMP fields of COBOL to decimal, in SQL Server Integration Service (SSIS).

I am able to convert COMP-3 fields (Hexa-decimal representation) using the DLL provided by microsoft, called UnpackDecimal.dll.

But I am unable to convert the COMP field (binary representation) using the same DLL.

So please help me on this as i am in great need of it.

If some one could give me a DLL which can convert both COMP-3 and COMP, i would be very grateful to you.

Thanks,
Krishna Kumar

link|improve this question

67% accept rate
You say "I am unable to convert the COMP field", what error do you get or problem are you having? Some more information might help someone solve your problem. – Tony Nov 25 '10 at 20:19
Can you post an explanation highlighting the differences between COMP and COMP-3 encoding to a layman? – littlegreen Nov 25 '10 at 23:47
@littlegreen, COMP stores its data in the binary format. COMP-3 stores the data in hexa-decimal format. – Krishna Kumar Sharma Nov 27 '10 at 13:18
feedback

1 Answer

Google doesn't turn up any results on COMP conversion in SSIS, and nobody here has answered anything, so I think you are out of luck.

However, the UnpackDecimal package description seems to be a distribution with source code. There are even some open todo-items "Left as exercise to the student" - seemingly this is part of some online Microsoft course to teach people how to develop their own SSIS packages.

So why don't you take up Microsoft's challenge and adapt this package to handle the COMP format as well? :) Afterwards, you can post it on the net so other people can use it too.

link|improve this answer
I'm currently busy in doing that. I hope i'll post a DLL which can handle both COMP and COMP-3 fields, here and over the net, with in a week. – Krishna Kumar Sharma Nov 29 '10 at 10:53
Great! Good luck :) – littlegreen Nov 29 '10 at 11:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.