Supriya Ghosh (Editor)

Sixth normal form

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

Sixth normal form (6NF) is a term in relational database theory, used in two different ways.

Contents

6NF (C. Date's definition)

Christopher J. Date and others have defined sixth normal form as a normal form, based on an extension of the relational algebra.

Relational operators, such as join, are generalized to support a natural treatment of interval data, such as sequences of dates or moments in time, for instance in temporal databases. Sixth normal form is then based on this generalized join, as follows:

A relvar R [table] is in sixth normal form (abbreviated 6NF) if and only if it satisfies no nontrivial join dependencies at all — where, as before, a join dependency is trivial if and only if at least one of the projections (possibly U_projections) involved is taken over the set of all attributes of the relvar [table] concerned.

Date et al. have also given the following definition:

Relvar R is in sixth normal form (6NF) if and only if every JD [Join Dependency] of R is trivial — where a JD is trivial if and only if one of its components is equal to the pertinent heading in its entirety.

Any relation in 6NF is also in 5NF.

Sixth normal form is intended to decompose relation variables to irreducible components. Though this may be relatively unimportant for non-temporal relation variables, it can be important when dealing with temporal variables or other interval data. For instance, if a relation comprises a supplier's name, status, and city, we may also want to add temporal data, such as the time during which these values are, or were, valid (e.g., for historical data) but the three values may vary independently of each other and at different rates. We may, for instance, wish to trace the history of changes to Status; a review of production costs may reveal that a change was caused by a supplier changing city and hence what they charged for delivery.

For further discussion on Temporal Aggregation in SQL, see also Zimanyi. For a different approach, see TSQL2.

DKNF

Some authors have used the term sixth normal form differently: as a synonym for Domain/key normal form (DKNF). This usage predates Date et al.'s work.

Usage

The sixth normal form is currently being used in some data warehouses where the benefits outweigh the drawbacks, for example using Anchor Modeling. Although using 6NF leads to an explosion of tables, modern databases can prune the tables from select queries (using a process called 'table elimination') where they are not required and thus speed up queries that only access several attributes.

Examples

In order for a table to be in 6NF, it has to comply with the 5NF first and then it requires that each table satisfies only trivial join dependencies. Let’s take a simple example with a table already in 5NF: Here, in the users table, every attribute is non null and the primary key is the username:

Users_table

This table is in 5NF because each join dependency is implied by the candidate key. More specific, the only possible join dependencies are: {username, status}, {username,department}.

The 6NF version would look like this:

Users

Users_dept

Nevertheless, you need to think very much before trying to apply the 6NF normalization because this implies a dramatic increase in the number of tables and may not suit your needs.

Another example in which we can demonstrate the 6NF is when we look at the space occupied. For this we chose the healthcare domain with this table:

TABLE 1

The healthcare domain contains several specializations up until the maximum development in this domain. These are: - resident - probationer - specialist

To get promoted to a higher position, it will take several years for someone to obtain his or her proper training. If a doctor has practiced in the field less than the required period, he or she won’t be able to advance in rank. For example: If Michael Miller, orthopedic probationer, has worked in the medical field for 3 years and 11 months, he won’t be able to become an orthopedic specialist because the minimum period to promote from probationare to specialist is 4 years.

The transition from one position to another is based on an exam. The exam, required to make the progress from one grade to another (for example: from probationer to specialist), can be taken after a period of 4 years.

The next step in applying the 6NF for the Table 1, is to eliminate all non-trivial join dependencies.

TABLE 2.1

TABLE 2.2

We will show now that passing from 5NF to 6NF also reduces the space occupied by the table. In the brackets, it is indicated how much space each field of the table occupies (in bytes).

TABLE 1 = [366] (bytes)

We can see that Table 1, which is in 5NF, occupies, in total, 366 bytes. This table translated into 6NF will consist of tables Table 2.1 and Table 2.2. The last 2 will occupy together 326 bytes.

TABLE 2.1 = [270]

TABLE 2.2 = [56] => TABLE 2.1 + TABLE 2.2 = [326] (bytes)

We can see that, in this example, 6NF occupies less than 5NF (more specific, less with 40 bytes). Going into the 6NF reduces the occupied space. If the initial table is larger, after going into the 6NF, the reduced space will also be larger.

In practice though, row overhead makes this separation of information in multiple tables occupy more space. It doesn't however detract from the increased flexibility, consistency - and query complexity.

References

Sixth normal form Wikipedia