|
In the following SQL, I've assumed that file QSYS/QADBIFLD has more than
99999 records and have also used the INCR function (see
http://www.itjungle.com/fhg/fhg121405-story01.html): -
with
alpha as
(select 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' alpha from qsqptabl),
seq as
(select incr(0) as seq
from qsys/qadbifld fetch first 99999 rows only),
char1 as
(select substr(alpha,seq,1) as char
from alpha, seq fetch first 26 rows only),
char2 as
(select substr(alpha,seq,1) as char
from alpha, seq fetch first 26 rows only),
allcat as
(select a.char concat b.char
concat digits(cast(seq as dec(5))) as cat
from char1 a, char2 b, seq)
select * from allcat
where not exists
(select 1 from yourcataloguefile where cat=yourcataloguefield)
You will also need to add your own selection criteria (numbers available
between etc.).
Regards,
Sean McGovern
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 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.