1. Design a database diagram for a product orders database with four tables. Indicate the relationships between tables and identify the primary key and foreign keys in each table. Explain your design decisions. Customers CustomerID CustomerName CustomerAddress CustomerPhone *** Shippers ShipperID Shipper Name ShipperAddress ShipperPhone Orders OrdersID CustomerlD Order Date *** ShipAddress ShipDate 2. Add the two tables below into the design for exercise 1. Create additional tables and columns, if necessary. Explain your design decisions. Employees EmployeelD FirstName LastName SSN HireDate OrderLineltems *** OrderID OrderSequence ProductID Quantity UnitPrice Products ProductID ProductName QtyPerUnit UnitPrice InStock OnOrder

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

SQL server

Please help answer questions 1-3.   Please type out answers because sometimes it's hard for me to read people's handwritting on pictures.  Thank you.

### Database Design Exercise

#### 1. Initial Database Design

Design a database diagram for a product orders database consisting of four tables with defined relationships and keys:

- **Customers Table**
  - **CustomerID**: Primary Key
  - CustomerName
  - CustomerAddress
  - CustomerPhone

- **Orders Table**
  - **OrderID**: Primary Key
  - **CustomerID**: Foreign Key (References Customers)
  - OrderDate
  - ShipAddress
  - ShipDate

- **OrderLineItems Table**
  - **OrderID**: Foreign Key (References Orders)
  - **OrderSequence**: Composite Primary Key with OrderID
  - **ProductID**: Foreign Key (References Products)
  - Quantity
  - UnitPrice

- **Products Table**
  - **ProductID**: Primary Key
  - ProductName
  - QtyPerUnit
  - UnitPrice
  - InStock
  - OnOrder

#### 2. Extended Design with Additional Tables

Integrate the following two tables into the existing design. Additional tables or columns may be created as necessary:

- **Shippers Table**
  - **ShipperID**: Primary Key
  - ShipperName
  - ShipperAddress
  - ShipperPhone

- **Employees Table**
  - **EmployeeID**: Primary Key
  - FirstName
  - LastName
  - SSN
  - HireDate

Consider creating relationships, such as linking ShipperID in the Orders table to establish which shipper handles each order.

#### 3. Indexing Strategy

Modify the design to identify which columns should be indexed for optimization:

- **Customers Table**: Index CustomerID
- **Orders Table**: Index OrderID, CustomerID, ShipDate
- **OrderLineItems Table**: Index OrderID, ProductID for faster retrieval of order details
- **Products Table**: Index ProductID, InStock
- **Shippers Table**: Index ShipperID
- **Employees Table**: Index EmployeeID

Explain the reasoning for indexing columns to improve query performance and data retrieval efficiency.
Transcribed Image Text:### Database Design Exercise #### 1. Initial Database Design Design a database diagram for a product orders database consisting of four tables with defined relationships and keys: - **Customers Table** - **CustomerID**: Primary Key - CustomerName - CustomerAddress - CustomerPhone - **Orders Table** - **OrderID**: Primary Key - **CustomerID**: Foreign Key (References Customers) - OrderDate - ShipAddress - ShipDate - **OrderLineItems Table** - **OrderID**: Foreign Key (References Orders) - **OrderSequence**: Composite Primary Key with OrderID - **ProductID**: Foreign Key (References Products) - Quantity - UnitPrice - **Products Table** - **ProductID**: Primary Key - ProductName - QtyPerUnit - UnitPrice - InStock - OnOrder #### 2. Extended Design with Additional Tables Integrate the following two tables into the existing design. Additional tables or columns may be created as necessary: - **Shippers Table** - **ShipperID**: Primary Key - ShipperName - ShipperAddress - ShipperPhone - **Employees Table** - **EmployeeID**: Primary Key - FirstName - LastName - SSN - HireDate Consider creating relationships, such as linking ShipperID in the Orders table to establish which shipper handles each order. #### 3. Indexing Strategy Modify the design to identify which columns should be indexed for optimization: - **Customers Table**: Index CustomerID - **Orders Table**: Index OrderID, CustomerID, ShipDate - **OrderLineItems Table**: Index OrderID, ProductID for faster retrieval of order details - **Products Table**: Index ProductID, InStock - **Shippers Table**: Index ShipperID - **Employees Table**: Index EmployeeID Explain the reasoning for indexing columns to improve query performance and data retrieval efficiency.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

Please help answer question 3

Solution
Bartleby Expert
SEE SOLUTION
Knowledge Booster
Database Development
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education