Answers of New DB Exercises
Answers of New DB Exercises
Objectives:
• Data Availability
• Data Integrity
• Data Security
• Data Independence
1.6 One Tier, Two Tier and Three Tier Architectures
1.7 Relational, Hierarchical and Network Databases
1.8 Microsoft Access – MS SQL Server , Oracle ,etc.
Chapter 2 (P.66)
1. D
2. C
3. E
4. C
5. B
6. A
7. D
Exercises:
1. Conceptual Design
a. Designing the database like sketching out entities to be
represented what kind of relationships exist between
them
b. Deals with the scope of the database
2. Logical Design (Data Modeling Mapping Phase)
a. Gives the result of relation schemas (ER-Class Diagram)
3. Normalization
a. Last piece of the logical design
b. To remove superfluity during the update
c. A new table is added in every normalization phase
4. Physical Design
a. Implement the database design (Using DBMS)
Importance:
4. Constraints
6. 7. Draw ERD
Chapter 3:
1 – 2 – Mapping
Chapter 4:
Page 96
1- D
2- Draw
3- Draw
4-
Normalization Forms:
Chapter 5 :
P.125
1-CREATE TABLE Employee(
ID int,
Name varchar(200),
Age int,
);
Name varchar(200),
Email varchar(200) );
ID int,
Name varchar(200)
);
PhoneNo int,
Emp_Id Int,
);
ID int,
Name varchar(200),
Phone varchar(20),
);
ID int,
Name varchar(200),
Degree VARCHAR(5)
);
12-
14-
Q8:
PNO int,
Title varchar(50),
Price money
);