|
Mario, this method assumes that you know how to deal with representation of packed number: DECIMAL(SUBSTRING(HEX(<oneMessyCharacterFieldWithPackedNumber), lowerLimit * 2 - 1, upperLimit * 2 - 1)) you should experiment a little with loverLimit and upperLimit values. They are positions of the first and the last character representing packed number within character string. HEX function will make string twice as long as original one (that's why there are "* 2 - 1"), then you have to make sure that last character ('F' or 'C', representing sign) is excluded. In case that you expect both positive and negative numbers, you have to use CASE function to check for the last character. Something like: CASE WHEN SUBSTRING(HEX(<oneMessyCharacterFieldWithPackedNumber), upperLimit * 2, 1) = 'F' THEN DECIMAL(SUBSTRING(HEX(<oneMessyCharacterFieldWithPackedNumber), lowerLimit * 2 - 1, upperLimit * 2 - 1)) WHEN SUBSTRING(HEX(<oneMessyCharacterFieldWithPackedNumber), upperLimit * 2, 1) = 'D' THEN DECIMAL(SUBSTRING(HEX(<oneMessyCharacterFieldWithPackedNumber), lowerLimit * 2 - 1, upperLimit * 2 - 1)) * (-1) ELSE 0 END As I said, you'll have to experiment a little with boundaries, as I'm writing this without any references. Looks confusing, but it's fun. Vanja Jovic, Canada Mario Cardinale wrote: > > Hi, > > using SQL i need to extract a Packed Numeric Data from a string. > > I've tried to use "CAST" function but it doesn't work with packed > information. > > Anyone can help me ? > > Mario > > +--- > | This is the RPG/400 Mailing List! > | To submit a new message, send your mail to RPG400-L@midrange.com. > | To subscribe to this list send email to RPG400-L-SUB@midrange.com. > | To unsubscribe from this list send email to RPG400-L-UNSUB@midrange.com. > | Questions should be directed to the list owner/operator: david@midrange.com > +--- +--- | This is the RPG/400 Mailing List! | To submit a new message, send your mail to RPG400-L@midrange.com. | To subscribe to this list send email to RPG400-L-SUB@midrange.com. | To unsubscribe from this list send email to RPG400-L-UNSUB@midrange.com. | Questions should be directed to the list owner/operator: david@midrange.com +---
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.