Introduction Set 2 Flashcards

1
Q

What is DBMS Tier 3 architecture ?

A

It divides the complete system into three inter-related but independent modules.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the diagram for tier 3 dbms architecture?

A

https://www.geeksforgeeks.org/introduction-of-3-tier-architecture-in-dbms-set-2/

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What level are there ?

A

Physical, Conceptual, External

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What does the Physical level do?

A

The information about the location of database objects in the data store is kept. The physical level of a database describes how the data is being stored in secondary storage devices like disks and tapes and also gives insights on additional storage details

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What does the Conceptual level do?

A

Data is represented in the form of various database tables. For Example, STUDENT database may contain STUDENT and COURSE tables which will be visible to users but users are unaware of their storage. Also referred as logical schema, it describes what kind of data is to be stored in the database.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What does the External level do?

A

Specifies a view of the data in terms of conceptual level tables. Each external level view is used to cater to the needs of a particular category of users. For Example, FACULTY of a university is interested in looking course details of students, STUDENTS are interested in looking at all details related to academics, accounts, courses and hostel details as well. So, different views can be generated for different users. The main focus of external level is data abstraction.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is data independence?

A

A change of data at one level should not affect another level.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are the two types of data independence?

A

Physical and Conceptual

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Explain Physical Data Independence.

A

Any change in the physical location of tables and indexes should not affect the conceptual level or external view of data. This data independence is easy to achieve and implemented by most of the DBMS.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Explain Conceptual Data Independence.

A

The data at conceptual level schema and external level schema must be independent. This means a change in conceptual schema should not affect external schema. e.g.; Adding or deleting attributes of a table should not affect the user’s view of the table. But this type of independence is difficult to achieve as compared to physical data independence because the changes in conceptual schema are reflected in the user’s view.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What are the phases of Database Design?

A

Requirements , Conceptual Design , Logical Design, Physical Design

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Explain Conceptual Design Phase

A

The requirements of database are captured using high level conceptual data model. For Example, the ER model is used for the conceptual design of the database.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Explain Logical Design Phase

A

Logical Design represents data in the form of relational model. ER diagram produced in the conceptual design phase is used to convert the data into the Relational Model.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Explain Physical Design Phase

A

In physical design, data in relational model is implemented using commercial DBMS like Oracle, DB2.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

State the advantages of DBMS

A

Minimized redundancy and data inconsistency, Simplified Data Access, Multiple Data Views, Data Security, Concurrent Access to Data, Backup and Recovery

How well did you know this?
1
Not at all
2
3
4
5
Perfectly