Conceptual Design Process
Conceptual Design Process
2-4
2-5
2-6
2-7
2-8
Identifying relationships in the conceptual design phase of a DBMS
involves understanding how different entities in your database interact
with each other. Here's a step-by-step guide to help you identify and
define relationships:
1. Understand the Entities:
•Identify Key Entities: Start by listing out all the major entities (e.g.,
Developer, Project, Module) that you have identified during the
requirement collection phase.
•Attributes of Entities: Ensure you have a clear understanding of the
attributes that each entity possesses.
2-9
Types of Relationships:
One-to-One (1:1)
Each instance of Entity A is related to exactly one instance of
Entity B, and vice versa. Example: Each person has one
passport.
One-to-Many
Each instance of Entity A can be related to multiple
instances of Entity B, but each instance of Entity B is related
to only one instance of Entity A. Example: A project is
managed by one manager, but a manager can manage
multiple projects.
•Many-to-Many
Instances of Entity A can relate to multiple instances of
Entity B and vice versa. Example: Developers can work on
multiple projects, and projects can have multiple
2-10
developers.