Question

In: Computer Science

A picking list is a list of the parts needed to assemble a product, in this...

A picking list is a list of the parts needed to assemble a product, in this case a front bicycle wheel.

Hint: Use Item Number as your key for UNF.    

ITEM NUMBER:   W150

ITEM DESCRIPTION:   FRONT WHEEL ASSEMBLE A

PART #          DESCRIPTION                     QTY   

M300              CHAMPION RIM                     1

U600              SPECIALIZED HUB               1

S101               CHAMPION SPOKES         36

T003               SPEC TOURING TIRE           1

E102               FUJI TUBE                            1

Normalize this user view. Make sure to show your work for each view – so you should have 4 answers (e.g. Unnormalized, First Normal Form (1NF), Second Normal Form (2NF) and Third Normal Form (3NF). It is possible that some tables will be in 3NF without any changes to their 2NF status. You may just note that in your response. Also make sure to follow good DBDL protocol by capitalizing the relation name, putting attributes in parenthesis and underlining primary keys.

Solutions

Expert Solution

Below is the normalization process.

Unnormalized table:Below table is unnormalized

ITEMNUMBER ITEMDESCRIPTION PART# DESCRIPTION QTY
W150 FRONT WHEEL ASSEMBLE A M300 CHAMPION RIM 1
U600 SPECIALIZED HUB 1
S101 CHAMPION SPOKES 36
T003 SPEC TOURING TIRE 1
E102 FUJI TUBE 1

First Normal Form(1NF) :

  • Given table is unnormalized table.Because single item has the multiple parts
  • hence above table needs to normalize into 1NF
  • Below is the table in the first normal form
ITEMNUMBER ITEMDESCRIPTION PART# DESCRIPTION QTY
W150 Fron Wheel Assemble A M300 CHAMPION RIM 1
W150 Fron Wheel Assemble A U600 SPECIALIZED HUB 1
W150 Fron Wheel Assemble A S101 CHAMPION SPOKES 36
W150 Fron Wheel Assemble A T003 SPEC TOURING TIRE 1
W150 Fron Wheel Assemble A E102 FUJI TUBE 1

Second Normal Form (2NF) :

  • Above table need to normalize into 2NF to remove partial dependancy.
  • In second normal form new tables are formed like
    • Item :This table store item details like ItemNumber and ItemDescription
    • Part :This table stores part details like part# , Description and QTY

1.Table Name :ITEM

Schema :ITEM (ItemNumber,ItemDescription)

FD :ItemNumber==>ItemDescription

Below is the table data

ITEMNUMBER ITEMDESCRIPTION
W150 Fron Wheel Assemble A

2.Table Name :PART

Schema :PART (part#,Description,Qty)

FD :part#==>Description,Qty

Below is the table data

PART# DESCRIPTION QTY
M300 CHAMPION RIM 1
U600 SPECIALIZED HUB 1
S101 CHAMPION SPOKES 36
T003 SPEC TOURING TIRE 1
E102 FUJI TUBE 1

Third Normal Form (3NF) :

  • Above table needs to normalize into 3NF to remove transitive dependancy.
  • Below are tables in 3NF

1.Table Name :ITEM

Schema :ITEM (ItemNumber,ItemDescription)

FD :ItemNumber==>ItemDescription

Below is the table data

ITEMNUMBER ITEMDESCRIPTION
W150 Fron Wheel Assemble A

2.Table Name :PART

Schema :PART (part#,Description,Qty)

FD :part#==>Description,Qty

Below is the table data

PART# DESCRIPTION QTY
M300 CHAMPION RIM 1
U600 SPECIALIZED HUB 1
S101 CHAMPION SPOKES 36
T003 SPEC TOURING TIRE 1
E102 FUJI TUBE 1

3.Table Name :ITEMPART

Schema :ITEMPART (itemNumber,part#)

Below is the table data

ITEMNUMBER PART#
W150 M300
W150 U600
W150 S101
W150 T003
W150 E102

Related Solutions

The following table lists the components needed to assemble an end item, lead times (in weeks),...
The following table lists the components needed to assemble an end item, lead times (in weeks), and quantities on hand. Item Lead Time Amount on Hand Direct Components End 1 0 L(2), C(1), K(3) L 2 11 B(2), J(3) C 3 17 G(2), B(2) K 4 23 H(4), B(2) B 3 34 J 3 25 G 3 7 H 3 0 a. If 43 units of the end item are to be assembled, how many additional units of B are...
The following table lists the components needed to assemble an end item, lead times, and quantities...
The following table lists the components needed to assemble an end item, lead times, and quantities on hand. Item End B C D E F G H LT (wk) 2 2 2 2 2 2 2 2 Amount on hand 0 8 11 23 9 28 6 0 a. If 22 units of the end item are to be assembled, how many additional units of E are needed? (Hint: You don't need to develop an MRP plan to determine this.)...
The following table lists the components needed to assemble an end item, lead times (in weeks),...
The following table lists the components needed to assemble an end item, lead times (in weeks), and quantities on hand. Item Lead Time Amount on Hand Direct Components End 3 0 L(2), C(1), K(3) L 3 12 B(2), J(3) C 4 16 G(2), B(2) K 4 21 H(4), B(2) B 3 26 J 4 33 G 4 4 H 3 0 a. If 43 units of the end item are to be assembled, how many additional units of B are...
The following table lists the components needed to assemble an end item, lead times (in weeks),...
The following table lists the components needed to assemble an end item, lead times (in weeks), and quantities on hand. Item Lead Time Amount on Hand Direct Components End 2 0 L(2), C(1), K(3) L 2 8 B(2), J(3) C 3 12 G(2), B(2) K 3 17 H(4), B(2) B 2 32 J 3 27 G 3 5 H 3 0 a. If 43 units of the end item are to be assembled, how many additional units of B are...
List and describe the three parts of the product selling model. Be very specific and give...
List and describe the three parts of the product selling model. Be very specific and give detailed examples.
In a manufacturing system, 5 workers pick parts from a raw materials bin. After picking the...
In a manufacturing system, 5 workers pick parts from a raw materials bin. After picking the parts, the workers move torwards a cell that is composed of 5 manual turning machines. The workers then load the parts onto the machines and then starts the machining process. Once the workers are satisfied that the machining process is complete they stop the machines and unload the parts inspect the machined parts and when satisfied placess the machinesd parts in a finished parts...
In a manufacturing system, 5 workers pick parts from a raw materials bin. After picking the...
In a manufacturing system, 5 workers pick parts from a raw materials bin. After picking the parts, the workers move towards a cell that is composed of 5 manual turning machines. The workers then load the parts onto the machines and then starts the machining process. Once the workers are satisfied that the machining process is complete they stop the machines and unload the parts inspect the machined parts and when satisfied places the machines parts in a finished parts...
Problem 12-3: The following table lists the components needed to assemble an end item, lead times...
Problem 12-3: The following table lists the components needed to assemble an end item, lead times (in weeks), and quantities on hand. Item Lead Time Amount on Hand Direct Components End 3 0 L(2), C(1), K(3) L 3 9 B(2), J(3) C 4 14 G(2), B(2) K 4 19 H(4), B(2) B 3 27 J 4 32 G 4 5 H 2 0 a. If 43 units of the end item are to be assembled, how many additional units of...
List and describe the parts of a flower.
List and describe the parts of a flower.
Assemble a list of factors to consider in three categories: those being relevant costs, Non differential...
Assemble a list of factors to consider in three categories: those being relevant costs, Non differential costs, and qualitative factors that should be considered when going from traditional on campus schooling to online schooling
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT