Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
3k views

Unpacking EBCDIC Packed Decimals (COMP-3) in an ASCII Conversion

I am using Jon Skeet's EBCDIC implementation in .NET to read a VSAM file downloaded in binary mode with FTP from a mainframe system. It works very well for reading/writing in this encoding, but it ...
2
votes
5answers
11k views

Interpreting COMP-3 Packed Decimal Fields into numeric values

I am creating an SSIS package to read in unpacked data from a series of copybook files. I am unsure of the correct interpretation of the following field definitions and was hoping someone would know: ...
1
vote
1answer
91 views

SQL How to get COMP-3 Packed Decimal?

I am creating an ASCII output file contain some information and two of my fields require the date and time to be in packed decimal fields (COMP-3). I am using SQL and SSIS to generate my file. Field ...
1
vote
1answer
113 views

Is there an existing gem or script that converts comp-3/packed decimal format to number?

I'm starting a new adventure to convert COBOL program to a Ruby program, I have to convert a a comp-3/packed decimal format to number. From another previous post, there is code that would convert ...
1
vote
1answer
194 views

Is there an existing gem or script that converts numbers to comp-3/packed decimal format?

Continuing with my adventure to convert COBOL to a Ruby program, I have to convert a decimal digit to a comp-3/packed decimal format. Anyone know of a simple Ruby script or gem that does this? Berns
1
vote
3answers
1k views

How do I convert VB's Double to COBOL's COMP-3?

Does anyone here know how to convert a VB Double to Cobol S9(15)V99 Comp-3 data type. Any help would be appreciated.
0
votes
1answer
999 views

Converting unpacked Packed Decimal Comp-3 data into doubles

I have a fixed width text file, which has been unpacked from Comp-3 data into fixed width strings. I need to know how to interpret the following fields: FIELD-NAME-1 PIC S9(15)V9(3) COMP-3. ...