DBMS
Please Note :
This content was created with the assistance of AI, and reviewed/edited by a human. As such, it may contain inaccuracies or errors. Use with discretion.
AI and me both are learning ☺️
Module 1
reference : Module1.ppt - Google Drive
Question 1: Discuss the advantages of using a file processing system compared to a database system.
A file processing system, in contrast to a database management system (DBMS), represents an earlier approach to data management. While largely superseded by DBMS in modern applications, understanding its characteristics helps to appreciate the advantages of a DBMS.
In a traditional file-based system, data is stored in individual files, each typically designed for a specific application. Each department or user might maintain their own set of files.
However, the disadvantages of file processing systems are significant and numerous, making DBMS the preferred choice for most applications:
In summary, while file processing systems might appear simple initially, their lack of data management features leads to numerous problems, making DBMS a far superior choice for most applications. DBMS addresses these issues by providing data integration, consistency, security, and efficient data access.
Question 2: List the three views for a database system in the three-level architecture. Describe the role of these views.
The three-level architecture of a database system provides data abstraction, hiding implementation details from users. It defines three levels of views:
1.
2.
3.
Question 3: Explain data abstraction and data independence.
Program and data independence
The structure of the data files is NOT hard-coded in the application program as in file processing applications
Multiple views of same data – security
Concurrent access by many users
Concurrent Transaction processing
-Data Independence: Data independence refers to the ability to modify the schema at one level of the database system without affecting the schema at a higher level. There are two types of data independence:
-

Question 4: Describe the role of a Database Administrator.
A Database Administrator (DBA) plays a crucial role in managing and maintaining a database system. The DBA is responsible for overseeing all aspects of the database environment, from design and implementation to security and performance. The DBA coordinates all the activities of the database system; the database administrator has a good understanding of the enterprise’s information resources and needs.
A DBA would normally understand the following:
What data is in the database and where did it come from?
What does the data in the database mean?
How reliable, accurate, and authoritative is the data?
If all enterprise application that need the data are able to use it?
Who ultimately governs the definition, lifecycles and use of data in the database?
Question 5: List the major components of a DBMS architecture and describe their functions.
The DBMS architecture consists of several major components that work together to manage the database. The main components are:
1.
2.
3.
4.
5.
6.
Interaction with the file manager
7.
Efficient storing, retrieving and updating of data
8.
9.
10.
11.
12.
13.
14.
Module 2
reference : Module 2.ppt - Google Drive
1. Explain mapping cardinality with examples.
Mapping cardinality, also known as cardinality constraints, expresses the number of entities to which another entity can be associated via a relationship set. Mapping cardinalities are most useful in describing binary relationship sets. There are three main types of mapping cardinalities:
1.
2.
3.
4.
5.
6.
Mapping cardinalities are visually represented in ER diagrams using various notations, such as crow's foot notation, which clearly indicates the type of relationship (one-to-one, one-to-many, or many-to-many) between entity sets. For instance, in crow foot notation, a line with a "1" indicates one, and a crow's foot indicates "many."
2. What are ternary relationships? Can a ternary relationship be converted into a number of binary relationships?
A ternary relationship is a simultaneous relationship among the instances of three entity types. It involves three entity sets participating in a single relationship set. While most relationships in a database system are binary, ternary relationships are used to model complex associations that cannot be adequately represented using only binary relationships.
Whether a ternary relationship can be converted into a number of binary relationships depends on the specific constraints and semantics of the relationship. In some cases, a ternary relationship can be decomposed into binary relationships by introducing a new entity to represent the relationship itself. However, this conversion might not always be straightforward or desirable, especially if the ternary relationship has specific constraints or attributes that are difficult to represent using only binary relationships.
For example, consider a ternary relationship between Employees, Branches, and Jobs, where an employee has different jobs at different branches. This could be difficult to represent accurately with only binary relationships without losing some of the original meaning of the ternary relationship.
3. What is the purpose of generalization, specialization, and aggregation?
Generalization, specialization, and aggregation are concepts in the Extended Entity-Relationship (EER) model that enhance its modeling capabilities.
4. Name and justify three entities that should be part of any university database.
Three essential entities for a university database are:
1.
2.
3.
4.
5.
6.
5. What is a Super Key? How does it differ from Primary Key?
A super key of an entity set is a set of one or more attributes whose values uniquely determine each entity. In other words, a super key is any set of attributes that, when taken collectively, allows us to identify an entity in the entity set uniquely. A super key can have redundant attributes.
A primary key, on the other hand, is a specific type of candidate key chosen to be the main identifier for entities in an entity set. While multiple candidate keys may exist, only one is selected as the primary key. The primary key must uniquely identify each row in a relation and cannot contain null values.
The key differences are:
A super key can have redundant attributes; a primary key cannot.
There can be multiple super keys for an entity set, but only one primary key.
A primary key is a minimal super key (i.e., a candidate key).
6. Give an example of Extended Entity Relationship Model.
An example of the Extended Entity Relationship Model (EER) can be illustrated with a banking system. Consider the entity "Account." In a basic ER model, "Account" might have attributes like account number, balance, and account type. However, using the EER model, we can introduce specialization to create subtypes of "Account," such as "Savings Account" and "Checking Account."
"Savings Account" might have additional attributes like interest rate.
"Checking Account" might have attributes like overdraft limit.
In this EER model:
"Account" is the superclass or parent entity.
"Savings Account" and "Checking Account" are subclasses or child entities, inheriting attributes from "Account" and having their own specific attributes.
This example demonstrates how the EER model allows for more detailed and precise modeling of real-world entities by incorporating concepts like specialization, which enhances the expressiveness and flexibility of the database schema.
Module 3
reference : DBMS-Wee3 - Lecture Material.pdf - Google Drive
Q1. What is the meaning of the terms relation, tuple, degree, cardinality, attribute, domain, candidate key and primary key?
Q2. Give two examples to illustrate the properties of a primary key.
A primary key must uniquely identify each record in a table and cannot contain null values.
Q3. Present an ER model and show how it should be mapped to the relational model. How is an entity mapped? How is a relationship mapped?
Q4. Describe constraints related to the primary key, foreign key, domains and NULLs.
Q5. Define the candidate key of a relation.
A candidate key is an attribute, or a set of attributes, that uniquely identifies each tuple in a relation. A relation can have one or more candidate keys. From the set of candidate keys, one is chosen as the primary key, and the remaining ones are called alternate keys. Properties of candidate keys are that they must be unique and contain no redundant attributes.
Q6. What is the degree of a relation?
The degree of a relation is the number of attributes (columns) it contains. It represents the structure of the relation and defines how many properties are being recorded for each instance of the entity. For example, a table with columns StudentID , Name , Major , and GPA has a degree of 4.

Q7. How is a weak entity in an ER model mapped to the relational model?
A weak entity in an ER model is an entity that cannot be uniquely identified by its own attributes alone; it relies on another entity (the identifying owner) for identification.
Create a table for the weak entity that includes all of its attributes.
Include the primary key of the identifying owner entity as a foreign key in the weak entity's table.
The primary key of the weak entity's table is usually a composite key consisting of its partial key (if it exists) and the primary key of the identifying owner entity. This ensures that each weak entity instance is uniquely identified in the context of its owner.
Q8. How is many-to-many relationship in an ER model mapped to a relational model
A many-to-many relationship in an ER model occurs when multiple instances of one entity are related to multiple instances of another entity. This type of relationship requires a special mapping to the relational model to properly represent the associations.
Create a new table (often called a junction table or associative entity) to represent the relationship itself.
Include the primary keys of both entities participating in the relationship as foreign keys in the new table. These foreign keys will form a composite primary key for the new table, ensuring each combination is unique.
If the relationship has any attributes of its own, include these attributes as columns in the new table.
EXTRA

