DBASupport

 The Knowledge Center for Oracle Professionals
HOME 11g Central 10g Central 9i Central 8i Central Oracle News Scripts FAQ OCP Zone Resources Technical Docs Tools & Utilities Forums

» HOME
» FEATURES
    11g Central
    10g Central
    9i Central
    8i Central
    Oracle News
» COMMUNITY
    Scripts
    Forums
    FAQ
    OCP Zone
» RESOURCES
    Resources
    Technical Docs
    Tools & Utilities
    Tech Jobs
Marketplace Partners
Become a Marketplace Partner






Internet News
Small Business

Advertise
Newsletters
Tech Jobs
E-mail Offers


   DBAsupport.com > Oracle > Oracle 9i Central > Listen Software Solutions' "How To" Series



 

Oracle Developer Jr - READY TO HIRE!
Next Step Systems
US-CA-Thousand Oaks

Justtechjobs.com Post A Job | Post A Resume

Listen Software Solutions' "How To" Series:

Normalization

By David Nishimoto


Overview

Following the normalization guidelines usually means splitting tables into two or more tables with fewer columns. Primary and foreign key relationships are designed into the new smaller tables, so they can be reconnected with a join operation. The advantage of splitting the table is to reduce data redundancy. Here's a brief guide to the standard normalization forms:


First Normal Form

At each row and column intersections, there must be one and only one value. Each column in a row can have only one value, and that value must be atomic.


Second Normal Form

Second normal form requires no non-key column be a fact about a subset of the primary key. Event non-key column must depend entirely on the entire primary key. The primary key must have an element of uniqueness. A primary key may be composed of one or more columns forming a unique key. The primary key does not change one created. The foreign key references an tables primary key. The primary to foreign key represents a one to many relationship.


Third Normal Form

Third Normal Forms Requires no non-key column depend on another non-key column.


Fourth Normal Form

Fourth Normal form forbids independent one-to-may relationships between primary key columns and non-key columns.


Fifth Normal Form

Fifth normal form breaks tables into the smallest possible pieces in order to eliminate all redundancy within a table.


David Nishimoto
For Listen Software


Back to the LSS "How To" Series Main Page





[an error occurred while processing this directive]