Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Normalization Basics Scenario Imagine you are tasked with designing a database for a small library. The library has the following information to manage: 1 .
Normalization Basics
Scenario
Imagine you are tasked with designing a database for a small library. The library has the following information to manage:
Books: Each book has a unique ISBN, a title, an author, a publication year, and a number of available copies.
Library Members: Each library member has a unique member ID a name, an email address, and a phone number.
Borrowing Records: Keep track of books that are borrowed by library members. Each record should include a unique transaction ID the member ID of the borrower, the ISBN of the borrowed book, the date the book was borrowed, and the due date for returning the book.
Tasks
Create an initial unnormalized database schema that represents the given information. This schema should consist of three tables: Books, LibraryMembers, and BorrowingRecords.
Identify any potential data redundancy, update anomalies, or other issues in your unnormalized schema. Explain why these issues could be problematic.
Apply normalization techniques up to at least rd Normal Form to the unnormalized schema to eliminate the identified issues.
Create a database that is free from redundancy and update anomalies.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started