Mastering MySQL 4 [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Mastering MySQL 4 [Electronic resources] - نسخه متنی

Ian Gilfillan

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید

Summary


Database normalization is a process performed on your tables to make them less likely to fall prey to various common kinds of data anomaly:

1st normal form contains no repeating groups and guarantees that all attributes are dependent on a primary key.

2nd normal form contains no partial dependencies.

3rd normal form contains no transitive dependencies.

For practical purposes, 3rd normal form is usually sufficient; indeed, overnormalizing can lead to performance issues, with the database having to perform too many joins.

Boyce-Codd normal form ensures each determinant is a candidate key.

4th normal form contains no more than one multivalued dependency.

5th normal form ensures tables cannot be reduced to smaller tables with different keys.

Domain key normal form is a theoretical ideal beyond the scope of this book.

/ 229