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 Name Format Length Picture
Date YYYYMMDD 5 S9(8) C-3
Time HHMMSS 4 S9(6) C-3
I have searched multiple sites and I still can't figure out how to convert a date/time into a packed decimal field. Any help would be greatly appreciated.
The following site http://www.simotime.com/datapk01.htm#TablePackedDecimal was provided for information about Packed fields. I understand how packed fields are used, but don't really understand how to pack a field. Thanks!
Derived Column Transformation. I've had nothing but pain with COMP-3 but I suspect that was more a factor of bad source data. Connect aScript Transformationto make those values into their binary equivalent and write to file. – billinkc Jan 23 at 16:17Row.DateandRow.TimeCommon question on SO and google Convert unpacked deicmal – billinkc Jan 23 at 17:51