26
Relational data models
The relational data model was invented in 1969 at the IBM research department, with the lead researcher Edgar R. Codd. They created the 12 rules (13) to manifest the requirements for a data management system.
Rule 1: The information rule:
All information in a relational data base is represented explicitly at the logical level and in exactly one way – by values in tables.
Relational data models are important as they help us with
Normalisation is needed to reduce data redundancy and to increase data integrity. The overall goal here is to have updates only in one place.
There are up to 6 normal forms. But most of the time we will need only up to 3.
When everything is normalised, we need Joins to gather the data. The more Joins you need, the slower the query will be. Denormalisation must be done to increase performance.
Consists of the measurements, metrics of facts of business process. EVENTS THAT HAVE ACTUALLY HAPPENED - like a transaction
A structure that categorises facts and measures in order to enable users to answer business questions.
Dimensions can be for example people, products, place or time.
Dimensions can be for example people, products, place or time.
denormalised | simplifies queries | fast aggregations
downsides of denormalisation | data integrity | decrease query flexibility | many to many relationship |
logical arrangement of tables in a multidimensional database represented by centralised fact tables with are connected to multiple dimension.
In the 1NF and 2NF it is more normalised than the STAR Schema
To have all the above information in one view, I made a sketchnote.

If you need a higher resolution please use this page
26