Question

Instructions: Step 1: Create UNF Relation from a User View. The goal here is to create...

Instructions:
Step 1: Create UNF Relation from a User View. The goal here is to create a single relation for the data found in the user view. The method used is:
•   Examine the user view
•   Identify all attributes
•   Describe the user view using DBDL

Here is an example of a user view. This reports lists the customers of the Premiere Corporation.
Premiere Corporation Customer List
CustNo   Name   Street   City   State   ZipCode   SalesRepNo
124    Sally Adams   482 Oak   Lansing   MI   49224   03
256   Ann Samuels   215 Pete   Grant   MI   49219   06
311   Don Charles   48 College   Ira   MI   49034   12
315   Tom Daniels   914 Cherry   Kent   MI   48391   06
405   Al Williams   519 Watson   Grant   MI   49219   12
412   Sally Adams   16 Elm    Lansin   MI   49224   03
522   Mary Nelson   108 Pine   Ada   MI   49441   12

A.   Examine the user view: As you examine this report, you can see that it contains a title, a line of column headings and the body of the report. Each line in the body of the report contains data about a particular customer. For example we can see that in the first line of the body of the report, there is data about Customer 124. This customer’s name is Sally Adams and she lives at 482 Oak in Lansing, Michigan (MI). The Sales Representative who calls on Sally Adams is Sales Rep Number 03.
B.   Identify all attributes: The attributes (or characteristics) of a User View can often be found by simply looking at the column headings. In our Customer Report we see that we have the following attributes: Customer Number, Customer Name, Street, City, State, Zip Code and Sales Representative Number.
C.   Describe the relation using DBDL: Database Design Language (DBDL) is a standardized way of describing relations of a relational database. You describe a relation by:
a.   Choose an appropriate name for the relation. We chose to name our relation CUSTOMER because each line in the report describes customer data.
b.   List the attributes you found in the user view inside square brackets, giving each attribute a suitable attribute name. Note: calculated fields or derived fields should not be included in the DBDL
c.   Determine which attribute would be suitable as a primary key and underline that attribute.
The DBDL for the relation resulting from our Customer user view would look as follows:

CUSTOMER [ CustNo, CustName, CustStreet, CustCity, CustSt, CustZip, CustRep ]

Now you try it. Examine the following report:

Premiere Corporation Parts List

Part Number   Part Description   Qnty On Hand   Class   Warehouse
On Hand   Price
AX12   Iron   104   HW   3   24.95
AZ52   Dartboard    20   SG   2   12.95
BA74    Basketball     40   SG   1   29.95
BH22    Cornpopper     95   HW   3   24.95
BT04    GasGrill     11   AP   2   149.99
BZ66    Washer     52   AP   3   399.99
CA14    Griddle    78   HW   3   39.99
CB03    Bike     44   SG   1   299.99
CX11    Blender     112   HW   3   22.95
CZ81    Treadmill    68   SG   2   349.95


What type of data does each line in the report represent?


What attributes can you identify from the user view?


What would be a suitable name for the UNF relation? ___________________________

Which attribute would be suitable as a primary key? ___________________________

Describe the UNF relation using DBDL:

Step 2: Recognize Multi-valued Dependencies.   

For example, looking at the following User View, we see that for each Customer number, it is possible to have multiple values for the order number and order date attributes. Therefore the order number and date are a multi-valued dependency.

Premiere Corporation Customer Orders

Customer Number   Name   Order Number   Order Date
124   Sally Adam   12489     2016-09-02
       12500     2016-09-05
256   Ann Samuels   12495     2016-09-04
311   Don Charles   12491     2016-09-02
315   Tom Daniels    12494     2016-09-04
522   Mary Nelson   12498     2016-09-05
       12504     2016-09-05

Identify multi-valued dependencies in DBDL by placing brackets around them. For example the DBDL for this User View would look like this:

CUSTOMER [ CustNo, CustName, (OrderNum, OrderDate) ]

Notice the brackets around the OrderNum and Orderdate attributes. This quickly and easily identifies a multi-valued dependency to someone who is reading the DBDL.

Common Mistake: A common mistake is to incorrectly identify repeating data as a multi-valued dependency. For example, the previous report could also have been printed in the following way:

Premiere Corporation Customer Orders

Customer Number   Name   Order Number   Order Date
124   Sally Adam   12489     2016-09-02
124   Sally Adam   12500     2016-09-05
256   Ann Samuels   12495     2016-09-04
311   Don Charles   12491     2016-09-02
315   Tom Daniels    12494     2016-09-04
522   Mary Nelson   12498     2016-09-05
522   Mary Nelson   12504     2016-09-05

The fact that the Customer Number and Name for Sally Adams and Mary Nelson have been repeated on multiple lines does not make Customer Number and Name a multi-valued dependency! You should still identify that for one customer number, there are multiple values for the order number and date. Note that this does not mean that EVERY customer number will have multiple order numbers, just that this user view shows that it is possible for some customer numbers to have multiple values for Order Number and Date. The Multi-valued Dependency must be identified in the DBDL. Note also that it is possible to have more than 1 multi-valued dependency.

Step 3: Create 1NF relations from UNF.

Therefore, the process of taking a relation from UNF to 1NF, involves resolving the multi-valued dependencies.

Method:
-   Choose a primary key for the multi-valued dependency.
-   Identify the primary key of the multi-valued dependency by underlining it or writing (PK) .
-   Rewrite the DBDL by removing the parenthesis and concatenating the original primary key with the primary key of the multi-valued dependency.
-   Rewrite the DBDL with the two-part Primary Key and include all the non-key attributes.

For example, using our previous report from part B, we had the following:

    UNF: Customer [ CustNo, CustName, ( OrderNum, OrderDate ) ]

A.   Choose a primary key for the repeating group:   OrderNum would make a suitable primary key for the repeating group as it uniquely identifies the data in the repeating group.

B.   Rewrite the DBDL by removing the parenthesis and concatenating the original entity name with the entity name of the multi-valued dependency.

   CustOrder [ CustNo, OrderNum, CustName, OrderDate ]


NOTE: If we start with a relation that does not contain any multi-valued dependencies, it is already in 1NF.


Homework Answers

Answer #1

Converting a report to an unnormalized form is very easy. We have to consider the coloums in which the values are stored. As the example of customer report is explained above. By understanding how the colums are inter related to each other we can easily map a report to UNF. First of all we have to understand what the report is like and what kind of information it does hold. The rows in the report can help you out. For identifying attributes we have to look for the colum heading in which data are stored and what type of data it shows. The name of the table can be determined by understanding the entire report and what kind of information it holds. Generally we give the attribute names and the table names as per the ease of everyone's understanding. So, that by looking at the name of the table one can imagine what type of information will be there and it also applies to the attributes of the table.

1. What type of data does each line in the report represent?

Here the above table represents the details about parts which the company Premire Corporation holds. It contains the information of the parts which are presentin the warehouse of the company. It consists of some titles and some coloums and rows which represents the detailed information of a particular part. For example the second row of the report with the part nvumber AZ52 have the price 12.95 which is present currently in the warehouse 2 and  have the quanity of 20 and as a erdescription the part is Dartboard and it belongs to the class SG.

2. What attributes can you identify from the user view?

We can identify the attributes of the above report by evaluating the coloums of the table. Therefore the attrbutes of the table are: Part_Number, Part_Description, Quantity, Class, WareHouse, Price.

3. What would be a suitable name for the UNF relation?

As in the report all the details are kept about the parts we will name the UNF relation as "PARTS". By naming it as "Parts", it will be easy to identify all the records of the table efficiently and also fetching the table quniquely will be much more easier.

4. Which attribute would be suitable as a primary key?

Here the attribute Part_Number can be selected as a primary key because it contains unique data and by using this attribute we can identify each row uniquely. All the rows that contain the information about the coloum Part_Number are not identical to any of the row and for fetching detail a particular row the coloum Part_number is appropriate in all aspects.

5.UNF relation using DBDL:

Here the name of the table is: PARTS

Attributes in the table is: Part_Number, Part_Description, Quantity, Class, WareHouse, Price.

Primary key: Part_Number

We can save this attribute as it is or we can also customize these attributes for better understanding of the table structure. So, the updated attribute will be: PartNo, PartDesc, PartQnty, PartClass, PartWareHouse, PartPrice.

So the resultant table will look like this:

PARTS[ PartNo, PartDesc, PartQnty, PartClass, PartWareHouse, PartPrice ]

The primary key Part_Number is updated to PartNo and the primary key can be represented in the table by an underline. So, the final table will be:

PARTS[ PartNo, PartDesc, PartQnty, PartClass, PartWareHouse, PartPrice ]

The above table is the final representation of the UNF which holds all the information about the report and also appropriate title which is PARTS and attributes are given to the UNF relation. This is done by following the rules provided in the question.

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
ADVERTISEMENT
Need Online Homework Help?

Get Answers For Free
Most questions answered within 1 hours.

Ask a Question
ADVERTISEMENT