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



I have a column in a particular file that I need to keep unique. I also
need to add a batch of records to that file. In testing, I currently
read into a host variable the current max(index)+1 to get the next
available one and then use that in my subsequent insert statement.
Naturally, when I do I get the same index # for each record. How can I
do one insert statement and guarantee a different index for each?

I thought of doing a (select max(index)+1) as part of the insert
statement itself, but was concerned that it would only evaluate that
once and not for each record. There is no commitment control in use.

Here's my code:
...
exec sql
select max(vfindex) + 1,
into :index
from mylib/mylf;
...
exec sql
insert into mylib/mypf(vfindex,
vfpnbr,
vfmodel,
vfgroupset)
select :index,
subpart,
modl,
:grouppart
from mylib/mylf join mylf2 on subpart = part
where part = :grouppart and atyp='F_LVL';
...

Thanks!



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:

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.