× 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.



On Wed, Sep 16, 2009 at 5:13 AM, David FOXWELL <David.FOXWELL@xxxxxxxxx> wrote:
This has turned into a brilliant thread and I thank all the contributers.

I have been living in complete ignorance and did not know anything about how such data would be stored in a PF.

After having read up, I have a couple of questions. If you don't care about space saving, can't you just code the maximum and
allocated length as the same?

Yes. In that case, you're simply using varying for the string
handling benefits.

How is space saved? I mean, if the allocated length is 0 and all the rows are in the overflow space, where is this space?

--Basically--
The data is still in the *FILE object, the difference is that it is in
the overflow space of the object instead of the regular data space.
The regular data space is fixed format. The overflow space is not.

Examples:
Fld1 10a
Fld2 200a
data space per record: 210 overflowspace per record: 0

Fld1 10a
Fld2 200a varying(0)
data space per record: 10 + some overhead overflowspace per record: 0-200

Fld1 10a
Fld2 200a varying(50)
data space per record: 60 + some overhead overflowspace per record: 0-150

Make sense?

Charles Wilt

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

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.