Dear gnarly people,
I'm a new Perl Monk, having been programming Perl for several years.
I've come across a situation: reading fixed-length data from one long input string per record, and getting fixed-length chunks out of it for mass-loading a MS-SQL database. This would be a perfect use for the FORTRAN EQUIVALENCE Statement, where for example, columns 1-20 of the input record would map to columns 1-20 of ONE, for example, where the memory used for columns 1-20 of the input record, would be also the SAME memory used for all 20 columns of ONE.
Thanks!!