You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 20, 2021. It is now read-only.
Christopher Bennage edited this page Jan 30, 2015
·
1 revision
Denormalization
A term from relational database theory.
Data is denormalized to improve the efficiency of queries/read operations against the data. Typically by reducing the number of joins that must be made when querying the data.
Denormalized data may be accessed via views on top of existing tables, or from a separate set of tables that contain a denormalized copy of the data from the tables that contain the normalized data.