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



Douglas Handy wrote:

However, in this case I'm not sure why a lookahead would be any better than
just reading the file and detecting when the record just read is not the
next consecutive integer after the previous read.

Doug:

I'm not sure either. It was an obscure possibility that was only _potentially_ useful without me being clear on what the real requirements were. For only smallest available, its use is pretty much nil. For detecting a range of missing numbers, it might mostly just help automate the task of storing the previous key for the comparison.

I'm with Joe here -- if there is a pre-existing index on the field that
needs to be tested, a HLL program loop seems like a better tool for the job
than SQL. Given a number range, you just SETLL to the start of the range.
If it is not in use, you already have the smallest missing number. Then you
just read the file by key, and the the first (or each) time the value is not
one higher than the previous read, you found another gap. Then you either
quit if you only needed the smallest number, or continue until you have
reached EOF or the high end of the number range requested.

Yeah, I agree. I'd maybe add that an actual READ op-code apparently isn't really needed as part of the execution, just to emphasize the key-checks are all that's needed. Given a known key structure that has a form [TX00001 to TX99999] where it can be numerically incremented in the digits portion, just the SETLL in a loop should be sufficient. When it doesn't get an exact match (not %found()), an empty slot was hit.

Beyond that, having a second table that lists all valid keys brings the opportunity for exceptions in a clear fashion in SQL.

Tom Liotta


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.