You are testing a database schema for an e-commerce platform. During your test, you discover that some tables have redundant data and duplicate entries. What type of issue have you identified, and what should be the next step to address it?

  • Data Consistency; Implement unique constraints to prevent duplicate entries
  • Data Integrity; Apply foreign key constraints to establish relationships between tables
  • Data Redundancy; Normalize the database tables to remove redundant data
  • Data Security; Encrypt the redundant data to prevent unauthorized access
This scenario indicates a problem with data redundancy, which can lead to inefficiency and inconsistency in the database. The next step should involve normalizing the database tables to remove redundant data and ensure data integrity, thus optimizing database performance and reducing storage requirements.
Add your answer
Loading...

Leave a comment

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