-
Book Overview & Buying
-
Table Of Contents
AI-Ready PostgreSQL 18
By :
Database transactions focus on executing and recording business activities, such as sales orders, accounts receivable, accounts payable, and bank transfers. These systems operate on small sets of records at a time, apply changes, and persist in ensuring durability and consistency. Their primary goal is to ensure that every update is accurate and timely, and that no anomalies appear when data is inserted, updated, or deleted.
To achieve this reliability, transactional environments rely on highly normalized data models that minimize duplication and maintain strict referential integrity. The structure is optimized for rapid, reliable write operations, supporting predictable behavior even as thousands of small transactions flow through the system each day. Because of this emphasis on operational correctness, transactional models are tightly structured and carefully governed through a normalization process.
Analytical systems work with the same underlying...