+1
-----Original Message-----
From: MIDRANGE-L <midrange-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of
smith5646midrange@xxxxxxxxx
Sent: Thursday, November 19, 2020 8:26 PM
To: 'Midrange Systems Technical Discussion' <midrange-l@xxxxxxxxxxxxxxxxxx>
Subject: RE: Performance SQL Delete vs RPGLE Delete
Somewhat beyond the scope of the question but if there is something that has
the file open, aren't you running the risk of deleting records that have not
yet been processed? I would be really concerned deleting all of the records
in the file if I didn't have 100% control of it.
Just my $.02 that on a subject where it wasn't asked for.
-----Original Message-----
From: MIDRANGE-L <midrange-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of K
Crawford
Sent: Thursday, November 19, 2020 5:25 PM
To: MIDRANGE-L@xxxxxxxxxxxxxxxxxx
Subject: Performance SQL Delete vs RPGLE Delete
I know the normal answer is, depends. Just looking for thoughts.
I have a program (RPGLE) that has this code (the file has a lock on it
otherwise we would use CLRPFM or some other method).
Read FileA;
Dow not %eof(FileA);
Delete FileAr;
Read FileA;
Enddo;
How would the performance compare to SQL with something like, in that same
RPGLE program.
Exec SQL Set option Commit=*None
Exec SQL Delete From FileA;
FileA will have 0.5 - 6 million rows.
--
Kerwin Crawford
--
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@xxxxxxxxxxxxxxxxxxxx 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@xxxxxxxxxxxxxxxxxxxx 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.