If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > General > Database Concepts & Design > help anyone?

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-30-03, 15:35
mercer876 mercer876 is offline
Registered User
 
Join Date: Oct 2003
Location: uk
Posts: 12
help anyone?

hey, i was wondering if anyone could tell me the benefits and drawbacks of denormalisation? and the types of cadidates for this process? i would appreciate it hugely if someone had any ideas, cheers
Reply With Quote
  #2 (permalink)  
Old 10-30-03, 19:14
r937 r937 is offline
SQL Consultant
 
Join Date: Apr 2002
Location: Toronto, Canada
Posts: 19,524
as the saying goes, "when is this assignment due?"

normalization usually reduces the overall size of the database (advantage), greatly simplifies updates (advantage), ensures data integrity (huge advantage), and may mean slightly slower select queries (disadvantage)

denormalization is the exact opposite

types of candidates for denormalization? data warehouses or data marts featuring summarized, temporal data, where codes and keys have been translated into human-understandable descriptions


rudy
http://r937.com/
Reply With Quote
  #3 (permalink)  
Old 11-14-03, 00:03
bcrockett bcrockett is offline
Registered User
 
Join Date: Jan 2003
Location: Duncan BC Canada
Posts: 80
Quote:
and may mean slightly slower select queries (disadvantage)
It may also mean faster select queries, depending upon how much redundancy is in the non-normalized form your comparing it to.
__________________
Bradley
Reply With Quote
  #4 (permalink)  
Old 11-14-03, 01:13
satish_ct satish_ct is offline
Registered User
 
Join Date: Nov 2003
Location: Bangalore, INDIA
Posts: 333
Thumbs up

HI,

Denormalisation is the act of having a single table containing all the informations regarding something. It results in Data redudancy, Data non-availability, No Data accuracy etc., In other words, data in an incosistent state.

Data normalization is the act of breaking down column data to
place in tables where each column in the table is functionally
dependent on only one primary key. This process reduces data
storage costs by eliminating redundancy and minimizes
dependency of any column in the "normalized" database to only
one primary key.
__________________
SATHISH .
Reply With Quote
  #5 (permalink)  
Old 11-15-03, 14:03
Adrian Jones Adrian Jones is offline
Registered User
 
Join Date: Nov 2003
Location: Currently New York; Usually UK
Posts: 4
My take is that denormalization is a process or decision that occurs AFTER normalization, where for practical or performances reasons you make a conscious decision to break a normalization rule.

So to begin with, your data structure is unnormal. Then you normalize it. Then you may make a decision to denormalize some part of it.

Of course, all these processes could take place within a very short time of each other, or even may occur pretty much simultaneously.

You may even decide on reflection that something has not been fully normalized, but justify this state for practical or performance reasons.

You could also think of denormalizing as flattening out the data structure, typcially for exporting data to another system, though this is not necessarily an example that involves tables in this state, just the process that produces the export file.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On