mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-24 13:24:05 -06:00
44 lines
1.1 KiB
Markdown
44 lines
1.1 KiB
Markdown
---
|
|
number headings: first-level 1, max 6, 1.1
|
|
title: "redundancy-and-anomalies"
|
|
aliases: redundancy and anomalies
|
|
tags:
|
|
- info201
|
|
---
|
|
|
|
# Redundancy
|
|
when values are stored repetitively in database relations
|
|
- usually in poorly designed relations
|
|
- - potential for anomalous data to be stored
|
|
e.g., 
|
|
|
|
## How it arises
|
|
- ad hoc database
|
|
- flat file
|
|
- spreadsheet (no contraints)
|
|
- Poor database design
|
|
- poor analysis
|
|
- poorly designed ERDs (not thinkiing properly about the relationships)
|
|
- modifications to existing systems
|
|
- "bolting on" new attributes
|
|
- schema evolution over time
|
|
|
|
# Anomalies
|
|
## Update anomaly
|
|
An anomaly that occurs follows an UPDATE operation
|
|
e.g.,
|
|

|
|
|
|
## Delete anomaly
|
|
An anomly that occurs following a DELETE operation
|
|
e.g.,
|
|

|
|

|
|
|
|
## Insert anomaly
|
|
An anomly that occurs following a INSERT operation
|
|
e.g.,
|
|

|
|

|
|
Causes the process of putting johnson in system is delayed
|