|
ive learned to do the following instead of cpyf (but my issue lies with the
lurking WRITE within rpg pgms)
ive learned to do the following instead of cpyf (but my issue lies with the
lurking WRITE within rpg pgms)
(why they refer to the id column as "user" value, I have no idea)
insert into targetTable overriding user value
(select * from sourceTable)
Jay
On Fri, May 24, 2019 at 11:48 AM Craig Richards <craig@xxxxxxxxxxxxxxxx>
wrote:
tablewack.
I can't answer the question of why an identity column may get out of
I never trusted them in the first place.
I certainly was close to falling out with ID columns before I figured out
what was going on, but they've worked very well for me since.
Admittedly I'm working at a small site at the moment and our biggest
using auto-gen IDs has a little under half a million rows currently, butit
gets hit by a web service and an internal application server concurrentlyvalues
and I've not seen it misbehave.
I don't mistrust the auto-gen ID columns.
The only misgiving I'd have about using them would be if I couldn't
guarantee that no one would CPYF data into them.
(Yes, I suppose you could argue that I can't actually guarantee no one
would ever do that... )
On Fri, 24 May 2019 at 16:22, Nathan Andelin <nandelin@xxxxxxxxx> wrote:
I can't answer the question of why an identity column may get out ofwack.
I never trusted them in the first place.
Rather, we created a table that stores all our "next incremental"
listfor all our files that need them, and pair that with generic procedurethat
returns the next incremental value like so:not
rec.siep100k = genNextSeqn('SIEP100K');
We generally place that call within a service program that we call a
"database event handler", in a procedure named on_write(), which is a
trigger event handler. I'll post a code sample. The majority of our
database tables use surrogate keys, so this setup is invoked a lot. I'm
aware of any cases where an identity value has ever gotten out of wack.But
if there were, we have a program that can query and maintain the nextthose
identity values for any column in any table. As I indicated earlier,
values are just stored in a table. That table had hundreds of rows thatlist
contain the next incremental value for hundreds of identity columns.
p on_write b export
/free
recptr = %addr(dbe.after);
if not is_valid();
return;
endif;
rec.siep100k = genNextSeqn('SIEP100K');
return;
/end-free
p on_write e
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing
To post a message email: MIDRANGE-L@xxxxxxxxxxxxxxxxxx--
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxx for any subscription related
questions.
Help support midrange.com by shopping at amazon.com with our affiliate
link: https://amazon.midrange.com
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing
To post a message email: MIDRANGE-L@xxxxxxxxxxxxxxxxxx--
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxx for any subscription related
questions.
Help support midrange.com by shopping at amazon.com with our affiliate
link: https://amazon.midrange.com
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: https://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives
at https://archive.midrange.com/midrange-l.
Please contact support@xxxxxxxxxxxx for any subscription related
questions.
Help support midrange.com by shopping at amazon.com with our affiliate
link: https://amazon.midrange.com
As an Amazon Associate we earn from qualifying purchases.
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.