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



The answer to the original question is this: it's the way SQL works.

SQL, and all real databases, have "ACID" properties: atomicity (all
individual database operations complete or the transaction fails),
consistency (the data is processed only in the allowed manner), isolation
(the transaction won't be affected by any other processes or transactions),
and durability (at commitment, the transaction is made permanent). ACID
recognizes the concept of a "transaction", a term describing a series of
multiple database operations executed in the course of completing a task.
First utilized in IBM's IMS database, these properties provide protection
against database/program/OS failures, or power outages, occuring in the
middle of a transaction.

Your application is waiting for a record lock to release and the user is
impatient. So, OF COURSE they cancel the job and then half the updates are
done, half the history records are written, and so on. Without journaling
and commitment control, you're going to have a busy night cleaning up the
mess.

Suppose you have a system crash right in the middle of your heaviest order
entry time--how much rebuilding--or restoring from backup--are you facing?
When the system comes back up, commitment control will clean up the mess if
all your tables are properly journaled.

I journal master files (customers master, city/state/ZIP master) and
transactions file (orders, order history). I don't journal work files
(anything that can be easily recreated). I have a daemon reading the
journal receiver and creating a before-and-after inquiry program showing
who changed what; that program has solved thousands of problems *without
having to add code to one user program*. This benefit makes up for the
very small performance impact and disk space required. The auditors had to
change their shorts, they were so happy.

Long ago, a customer programmer deleted 100,000 AR records. I read the
journal receiver and had the data recovered in less than an hour. Thank
you, journaling! No magic, just using the tools we have available.


On Thu, May 13, 2021 at 12:02 PM <dr2@xxxxxxxx> wrote:

OK, out of curiosity, why is it a requirement that files be journaled
before you can do programmatic SQL operations against them?

Ran into CPF4328 this morning and never heard of this requirement
before!

/DR2
--
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.

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.