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 > Normalization

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 02-28-10, 11:56
bree9482 bree9482 is offline
Registered User
 
Join Date: Feb 2010
Posts: 1
Normalization

Hi was wondering if someone could help me?? I am doing normalization to the 3NF. I am gettin confused at what defines an repeating group!

for example if u had:

App ref Student name Address Town P/code Course ref Course title Student no

Would student No be a repeating group and why pls???

findin it really hard to understand!

Thank u in advance for helping!

Brendan
Reply With Quote
  #2 (permalink)  
Old 02-28-10, 12:55
healdem healdem is online now
Jaded Developer
 
Join Date: Nov 2004
Location: out on a limb
Posts: 9,243
__________________
I'd rather be riding my Versys or my Tiger 800 let alone the Norton
Reply With Quote
  #3 (permalink)  
Old 02-28-10, 12:55
healdem healdem is online now
Jaded Developer
 
Join Date: Nov 2004
Location: out on a limb
Posts: 9,243
__________________
I'd rather be riding my Versys or my Tiger 800 let alone the Norton

Last edited by healdem; 02-28-10 at 13:10.
Reply With Quote
  #4 (permalink)  
Old 03-07-10, 09:25
si.gates si.gates is offline
Registered User
 
Join Date: Mar 2010
Posts: 4
Quote:
Originally Posted by bree9482 View Post
for example if u had:

App ref Student name Address Town P/code Course ref Course title Student no

Would student No be a repeating group and why pls???

StudentName Adress Town P/Code (Course ref Course title) StduentNo

The collumns in brackets would be the repeating group.

Example-

StudentNo StudentName ........... Course ref Course title
1 Jim A1 CompSci
2 Tony A1 CompSci
3 Tim D2 ChildCare
4 Timmy D1 SocialCare

Notice the cousetitle repeating??

Normalised solution-

TableStudents
StudentNo(PK)
CourseRef(FK)
StudentName
....


TableCourses
CourseRef
CourseName

Think of a massive university database with thousands of students...

Un normailised-
500 A1's
that means 500 CompSci's

Normalised
500 A1's
but
1 CompSci

becuase A1 is a referance to CompSci in the CourseTable.

Really hope this helps.
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