Home  >  Article  >  What does the deletion operation exception in relation normalization mean?

What does the deletion operation exception in relation normalization mean?

藏色散人
藏色散人Original
2020-11-13 13:48:3714106browse

The deletion operation exception in relational normalization means that data that should not be deleted is deleted, and the insertion exception means that the data that should be inserted is not inserted; and normalization is to solve the insertion, deletion, and modification exceptions of data in the database A set of rules for such problems.

What does the deletion operation exception in relation normalization mean?

#The deletion operation anomaly in relational normalization means that data that should not be deleted is deleted.

The deletion exception in normalization means that the data that should not be deleted is deleted, and the insertion exception means that the data that should be inserted is not inserted.

Related introduction:

Normalization is a set of rules to solve problems such as insertion, deletion, and modification exceptions of data in the database.

Normalization theory is a guide and tool for database logical design. The specific steps are as follows:

(1) Examine the functional dependencies of the relational model and determine the paradigm level. Analyze each relationship pattern one by one, examine whether there are partial functional dependencies, transitive functional dependencies, etc., and determine which paradigm they belong to.

(2) Merge or decompose relationship patterns. According to the application requirements, examine whether these relationship patterns meet the requirements to determine whether these patterns need to be merged or decomposed. For example, relationship patterns with the same primary key can generally be merged; for non-BCNF relationship patterns, "abnormal disadvantages" should be examined "Will it have an impact in actual applications? For those that are just queries and do not perform update operations, there is no need to normalize (decompose) the schema. In actual applications, the higher the degree of normalization, the better. Sometimes decomposition can eliminate update anomalies. The benefits are outweighed by the inefficiency of frequent natural joins required for frequent queries. For those relationship patterns that need to be decomposed, standardized methods and theories can be used to decompose the pattern. Finally, each generated relationship model is evaluated and adjusted to determine a more appropriate set of relationship models.

Relationship normalization theory provides theoretical standards for judging the pros and cons of relational logic models, helps predict possible problems in the model, and is an algorithmic tool for generating various patterns, so it is a powerful tool for designers.

The above is the detailed content of What does the deletion operation exception in relation normalization mean?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn