Normalisation

Banking Sector Data Normalization Assignment: 1NF, 2NF, 3NF

Background:

In a banking system, data is stored about customers, accounts, transactions, and employees. As the amount of data grows, it is important to normalize this data to ensure that it is organized efficiently, minimizing redundancy and ensuring consistency. This assignment will guide you through normalizing banking data into 1NF, 2NF, and 3NF.

Scenario:

You are working for a banking system that manages customer information, account details, and transaction records. The current data model is a bit disorganized and suffers from redundancy and other normalization issues. Your task is to analyze and normalize the data into the appropriate normal forms: 1NF, 2NF, and 3NF.


1. Banking Customer Information Table (1NF)

Given Table:

CustomerIDCustomerNameAddressPhoneAccountIDAccountTypeAccountBalanceTransactionDetails
001John Doe123 Elm St, NY555-12341001Checking5000Deposit 500, Withdrawal 1000
002Jane Smith456 Oak St, LA555-56781002Savings2000Deposit 2000
003Alice Brown789 Pine St, TX555-98761003Checking3000Deposit 1500, Withdrawal 500
001John Doe123 Elm St, NY555-12341004Savings1500Withdrawal 200

Question:

  1. Is the table in 1NF?
    • The table violates 1NF because it contains multiple values in the “TransactionDetails” column (a repeating group). According to 1NF, each column should contain atomic values (no repeating groups).
  2. How would you bring this table into 1NF?
    • You need to split the “TransactionDetails” column into individual transactions. This means that each transaction should be recorded in a separate row.

Normalized 1NF Table:

CustomerIDCustomerNameAddressPhoneAccountIDAccountTypeAccountBalanceTransactionIDTransactionTypeTransactionAmount
001John Doe123 Elm St, NY555-12341001Checking5000T1Deposit500
001John Doe123 Elm St, NY555-12341001Checking5000T2Withdrawal1000
002Jane Smith456 Oak St, LA555-56781002Savings2000T3Deposit2000
003Alice Brown789 Pine St, TX555-98761003Checking3000T4Deposit1500
003Alice Brown789 Pine St, TX555-98761003Checking3000T5Withdrawal500
001John Doe123 Elm St, NY555-12341004Savings1500T6Withdrawal200

2. Banking Customer and Account Table (2NF)

Given Table (After 1NF):

CustomerIDCustomerNameAddressPhoneAccountIDAccountTypeAccountBalanceTransactionIDTransactionTypeTransactionAmount
001John Doe123 Elm St, NY555-12341001Checking5000T1Deposit500
001John Doe123 Elm St, NY555-12341001Checking5000T2Withdrawal1000
002Jane Smith456 Oak St, LA555-56781002Savings2000T3Deposit2000
003Alice Brown789 Pine St, TX555-98761003Checking3000T4Deposit1500
003Alice Brown789 Pine St, TX555-98761003Checking3000T5Withdrawal500
001John Doe123 Elm St, NY555-12341004Savings1500T6Withdrawal200

Question:

  1. Is the table in 2NF?
    • The table is not in 2NF because it contains partial dependency. Customer information like CustomerName, Address, and Phone is dependent on CustomerID, while account details like AccountID, AccountType, and AccountBalance are dependent on AccountID. This violates 2NF, which requires that all non-key attributes are fully functionally dependent on the primary key.
  2. How would you normalize this table into 2NF?
    • Separate the customer information and account information into different tables, ensuring that each table has a primary key that fully determines all non-key attributes.

Normalized 2NF Tables:

Customer Table:

CustomerIDCustomerNameAddressPhone
001John Doe123 Elm St, NY555-1234
002Jane Smith456 Oak St, LA555-5678
003Alice Brown789 Pine St, TX555-9876

Account Table:

AccountIDCustomerIDAccountTypeAccountBalance
1001001Checking5000
1002002Savings2000
1003003Checking3000
1004001Savings1500

Transaction Table:

TransactionIDAccountIDTransactionTypeTransactionAmount
T11001Deposit500
T21001Withdrawal1000
T31002Deposit2000
T41003Deposit1500
T51003Withdrawal500
T61004Withdrawal200

3. Banking Employee and Branch Table (3NF)

Given Table (After 2NF):

EmployeeIDEmployeeNameBranchIDBranchNameBranchLocationAccountIDAccountTypeAccountBalanceTransactionIDTransactionTypeTransactionAmount
E001DavidB001Main BranchNew York1001Checking5000T1Deposit500
E002EmmaB002West BranchLos Angeles1002Savings2000T3Deposit2000
E003MichaelB001Main BranchNew York1003Checking3000T5Withdrawal500

Question:

  1. Is the table in 3NF?
    • The table is not in 3NF because it contains transitive dependency. The BranchName and BranchLocation are dependent on BranchID, which is not a primary key in this table. This violates 3NF because non-prime attributes (attributes that are not part of the primary key) should not depend on other non-prime attributes.
  2. How would you normalize this table into 3NF?
    • You need to remove the transitive dependency by creating a separate table for Branch and linking it to the other tables using a foreign key.

Normalized 3NF Tables:

Employee Table:

EmployeeIDEmployeeNameBranchID
E001DavidB001
E002EmmaB002
E003MichaelB001

Branch Table:

BranchIDBranchNameBranchLocation
B001Main BranchNew York
B002West BranchLos Angeles

Account Table:

AccountIDCustomerIDAccountTypeAccountBalance
1001001Checking5000
1002002Savings2000
1003003Checking3000
1004001Savings1500

Transaction Table:

TransactionIDAccountIDTransactionTypeTransactionAmount
T11001Deposit500
T21001Withdrawal1000
T31002Deposit2000
T41003Deposit1500
T51003Withdrawal500
T61004Withdrawal200
Normalisation

Leave a Reply

Your email address will not be published. Required fields are marked *

Scroll to top