× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Steve

There is nothing i know of that can do this directly in SQL. It is a great case for a user-defined function, since you can easily enough do this in RPG - using a data structure - you probably know the techniques here.

Such a function might need to handle different lengths in a generalized world - a little more complex - might want to pass digits and decimals, as well, as 2 extra parameters.

HTH
Vern

-------------- Original message --------------
From: "Steve Richter" <stephenrichter@xxxxxxxxx>

I have a packed(3,0) value embedded in an located at position 140 of a
256 char field. I am creating an sql view to crack all the values out
of that 256 char field. The char and zoned decimal values I can
isolate using sql substr.

The packed decimal values are another story. I am using HEX to give
me the data in hex external form. Then use substr to extract the
digit characters of the HEX output, excluding the final sign
character. Last step is use the DECIMAL to convert the HEX digits back
to a decimal value:
dec(substr(
hex(substr(a.cp960mstrp,140,2))
,1,3),3,0) ChgOff,

If there was a negative value in the original packed decimal value I
suppose CASE can be used on the final char of the HEX return value to
handle that.

Is there a more direct way in SQL of extracting packed decimal values
from character strings?
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/midrange-l.

As an Amazon Associate we earn from qualifying purchases.

This thread ...


Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

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.