Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 09-07-2004, 12:27 PM   #1 (permalink)
Free Mars!
 
feelgood's Avatar
 
Location: I dunno, there's white people around me saying "eh" all the time
[SQL] Normalization

I'm in the middle of a major school project that has been running from previous semester. We're in the design stage of a information systems which is probably a mickey mouse compared to the ones in the "real" world.

Anyways, my group and I are having disagreement regarding normalization of several database tables in MySQL.

Basically, what we have right now is 2 tables from the Conceptual ERD. They are Job Order and Product.

Job Order contains information about Products that are being made in the production line while Product contains information about products being sold as well parts needed to make the product. Parts can also be sold as a product.

Initially, after I reviewed the requirements regarding the Job Orders, I realized that there was no way for the user of the system to select part from a list of parts in the system and add it to the job order. Obviously, you need to have parts in order to make a complete product.

The original table looks like

{Job Order} >o-------------|- {Products}

This table was made based on that the Job Order table would contain the Product ID which is linked to Products.

When we factor in the fact that we need to have parts to be used for Job Orders. The table will look like this

{Job Order} >o-------------o< {Products}

This works fine in conceptual ERD but when we moved to implementation. The table would look like

{Job Order} >o------|- {Parts} -|-------o< {Products}

The justification for this was that parts table would contain Job Order ID, Product ID and Part ID. There is no product ID information in the job order table. The part id is actually the same information as product ID in the product table. I disagree with this.

I believe that, we don't actually need the product id in the parts table, but instead, put it in the Job Order table and have a Many to One relationship to the products table and keep everything else the same.

So, my idea will look like this:

{Job Order} >o------|- {Parts} -|-------o< {Products}
>o--------------------------|-

My main justification is that, if I wanted to know what the job order is making, why would I need to go through 2 different table (Parts -> Products) to find that out where I could simply just make a link directly to the products table.

My group member and course instructor is against me while I have my database instructor on my side.

What's your opinion?
__________________
Looking out the window, that's an act of war. Staring at my shoes, that's an act of war. Committing an act of war? Oh you better believe that's an act of war
feelgood is offline  
Old 09-08-2004, 09:28 AM   #2 (permalink)
Crazy
 
Location: Salt Town, UT
At first, I agreed with you, but now I think I may have either seen the light, or misunderstood the question. I'm gonna assume that I understood you perfectly, for the sake of argument. So, here goes.

I'm assuming that a Product is something that is reusable, or that has a quantity. I'm gonna assume that you guys are making furniture, so I will say that a product is a 3/4" steel caster, product id #1, part number "XYZZY4".

Now, if you have a job that requires you to build, a couch, you need the part table to link to the product table. Because that caster is going to have to be used on multiple jobs, and you are going to need to have multiple parts linked to that job.

Think of it this way, the jobOrder is the invoice, the parts table is the list of line items on the invoice (for the parts, although, you could theoretically make a Product for 1hr of labor and throw it in there too.) or the list of stuff in your shopping cart. The Products table is the catalogue of what you sell.

So, here's the quick example
jobOrder :
{
jobId = 1, jobName = "Couch for Joe"
}

Parts {
partId = 1, jobId = 1, productId = 1, qty = 4
partId = 2, jobId = 1, productId = 4, qty = 1
partId = 3, jobId = 1, productId = 3, qty = 8
partId = 4, jobId = 1, productId = 2, qty = 1
}

Products {
productId = 1, productName = "3/4 inch steel caster"
productId = 2, productName = "Fluffy stuffing"
productId = 3, productName = "Framing wood"
productId = 4, productName = "Cloth covering"
}


Am I making any sense?
Rawb is offline  
Old 09-09-2004, 05:41 AM   #3 (permalink)
Free Mars!
 
feelgood's Avatar
 
Location: I dunno, there's white people around me saying "eh" all the time
Yeah, you're on the right track. Except, I think that the Product ID in the Parts table should be in the Job Order table. It should reduce the redundency of the data in the parts table.
__________________
Looking out the window, that's an act of war. Staring at my shoes, that's an act of war. Committing an act of war? Oh you better believe that's an act of war
feelgood is offline  
Old 09-09-2004, 07:32 AM   #4 (permalink)
Crazy
 
Location: Salt Town, UT
Now, the proper question here is: How?

How exactly are you going to link the jobOrder table to the product table? Just remember, you are going to have multiple products per jobOrder, and products are going to have multiple jobOrders. I would tell you the answer, but then that would be cheating.
Rawb is offline  
Old 09-09-2004, 07:37 AM   #5 (permalink)
Free Mars!
 
feelgood's Avatar
 
Location: I dunno, there's white people around me saying "eh" all the time
jobOrder :
{
jobId - primary key
jobName
productid - foreign key refering product id in product table
}

Parts {
partId - primary key, forieng key refering productid in the product table
jobId - primary key, foreign key refering jobid in job order table
qty
}

Products {
productId - primary key
productName
}
__________________
Looking out the window, that's an act of war. Staring at my shoes, that's an act of war. Committing an act of war? Oh you better believe that's an act of war
feelgood is offline  
Old 09-09-2004, 07:55 AM   #6 (permalink)
Crazy
 
Location: Salt Town, UT
Okay, since I have found new lost faith in college and it's ability to teach I'm gonna go straight to the hunt.

The productId column in your jobOrder table can only store one entry. It can only be a foreign key to link to one other row. Not multiple. It's still really just an int on your side, just happens to (unless you are in mysql) have some constraints wrapped around it so that you can't set that int to anything you want, just stuff that actually exists in the other table.

So what you need when there are multiple-multiple links on both ends of the linkage is a glue table. A glue table is a table that sits inbetween two tables and provides links between them because a direct linkage isn't possible. Say for example if you were building a database of livejournal entries and a table that had possible emotions for those livejournal entries. Now, people can feel multiple emotions at one time (well, people with feelings can...) you could be happy and excited, angry and sad, angsty (I made this one up, can you tell?) and everything.

So what your schema would look like is this:
journalEntry {
journalId - PK
personId - FK to person table (not shown)
journalDate - Date
journalEntry - Text
}

emotion {
emotionId - PK
emotionName - Text
}

journalEmotionGlue {
journalEmotionGlueId - PK (I have a love/hate relationship with these PK's)
journalId - FK to journal table
emotionId - FK to emotion table
}

So that glue table in the middle is the one that allows you to link up multiple emotions to multiple journal entries. Without it, you couldn't have multiple emotions linked to your livejournal posting, so it would just be angst, angst, angst post after post, because a post could only do a link via a FK to a single emotion.
Rawb is offline  
Old 09-09-2004, 09:31 AM   #7 (permalink)
Free Mars!
 
feelgood's Avatar
 
Location: I dunno, there's white people around me saying "eh" all the time
I just realized now, in your example of the table in your first post. I didn't realized this until your latest post but, here's the table what it should look like which is what the group wanted to go with:

jobOrder :
{
jobId = 1, jobName = "Couch for Joe"
}

Parts {
partId = 1, jobId = 1, productId = 2, qty = 4
partId = 2, jobId = 1, productId = 2, qty = 1
partId = 3, jobId = 1, productId = 2, qty = 8
partId = 4, jobId = 1, productId = 2, qty = 1
}

Products {
productId = 1, productName = "3/4 inch steel caster"
productId = 2, productName = "Fluffy stuffing"
productId = 3, productName = "Framing wood"
productId = 4, productName = "Cloth covering"
}

The differences is that the productID in the parts table is all the same for each job order. That's too much redundency. I wanted to move the productID column into the job order table which will reduce the redundency. The business rule regarding job orders is that there is 1 product per job order, there can be more than 1 part per job order.
__________________
Looking out the window, that's an act of war. Staring at my shoes, that's an act of war. Committing an act of war? Oh you better believe that's an act of war
feelgood is offline  
Old 09-09-2004, 09:51 AM   #8 (permalink)
Insane
 
Location: Wales, UK, Europe, Earth, Milky Way, Universe
Quote:
Originally Posted by feelgood
Parts {
partId = 1, jobId = 1, productId = 2, qty = 4
partId = 2, jobId = 1, productId = 2, qty = 1
partId = 3, jobId = 1, productId = 2, qty = 8
partId = 4, jobId = 1, productId = 2, qty = 1
}
This is telling me that the same product is listed against one job order several times with different qty's. This wouldnt happen would it? More likely this would happen:

Parts {
partId = 1, jobId = 1, productId = 2, qty = 14
partId = 2, jobId = 1, productId = 4, qty = 5
partId = 2, jobId = 2, productId = 3, qty = 1
partId = 2, jobId = 3, productId = 2, qty = 12
}

..etc

What i'm saying is, a quantity of one product would only be listed for one job in this table once.

Surely this is how it would work in practice? Or am i not getting the way the system works.
__________________
There are only two industries that refer to their customers as "users". - Edward Tufte
welshbyte is offline  
Old 09-09-2004, 09:55 AM   #9 (permalink)
Free Mars!
 
feelgood's Avatar
 
Location: I dunno, there's white people around me saying "eh" all the time
It's a manufacturing company. A job order is required in order to start producing a particular product.

The different quantity is referring to the different part used to make the product for the job order.

Don't ask me, I didn't make up the case study
__________________
Looking out the window, that's an act of war. Staring at my shoes, that's an act of war. Committing an act of war? Oh you better believe that's an act of war

Last edited by feelgood; 09-09-2004 at 10:03 AM..
feelgood is offline  
Old 09-09-2004, 10:38 AM   #10 (permalink)
Crazy
 
Location: Salt Town, UT
Okay. Now I understand more clearly the problem.

So definitely add productId to the jobOrder, and remove it from the part table.

Now, the real question is do you use the same parts for the product every time, if you do, you could link them to the product instead, like a list of ingredients that are used to make a product. Now if parts can be used to make multiple products, you will need a glue table.

So basically it boils down to this now:
Product <--- JobOrder (forgive my messy semantics, it means that joborder has a fk to Product)
Product <--- Glue? <--- Part
-- or --
Product <--- JobOrder
JobOrder <--- Glue <--- Part


Again, I'm probably misunderstanding the project, but that's my solution from how I see it.
Rawb is offline  
Old 09-09-2004, 10:45 AM   #11 (permalink)
Free Mars!
 
feelgood's Avatar
 
Location: I dunno, there's white people around me saying "eh" all the time
Yeah, I was just wondering if my view on the whole part,job order, and product table was valid...

I have been thinking about the making a table that contains a list of ingredients.

Probably something like

Product_Ingredient {
PartID - PK, FK to Product
ProductID - PK, FK to Product
qty (quantity needed for each quantity of product?)
}
__________________
Looking out the window, that's an act of war. Staring at my shoes, that's an act of war. Committing an act of war? Oh you better believe that's an act of war

Last edited by feelgood; 09-09-2004 at 10:51 AM..
feelgood is offline  
 

Tags
normalization, sql


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 On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 02:30 AM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360