SlideShare a Scribd company logo
Welcome students…
IM 101
Fundamentals of Database
Systems
RIANNEL B. TECSON, MIS
Instructor
Collaboration
divides the tasks
and
multiplies the
success
Author Unknown
IM 101 Fundamentals of Database Systems
INTRODUCTION
• Course Orientation
• Schedule
• Requirements
• Class Rules
• Expectations
INTRODUCTION
• Student Profile
Provide the following information:
• COMPLETE NAME
• Year Level
• Area of Residence
• Contact No.
• Email Address
• Name of Guardian
• Learning Modality
• Resources
• Employment Status
Note: Information gathered will be CONFIDENTIAL and will be
used for academic purposes only
IM 101 Fundamentals of Database Systems
Course Orientation
Course Description
• Fundamentals of Database Systems
IM 101 Fundamentals of Database Systems
Course Orientation
Topics
• Introduction to Databases and Transactions
• Data Models
• Database Design, ER-Diagram and UML
• Relational Algebra
• Constraints, Views and SQL
• Transaction Management and Concurrency Control
IM 101 Fundamentals of Database Systems
Course Orientation
References:
• Database System and Concepts by A. Silberschatz
• Database Systems by Rob
Online:
• Any relevant sources
Software Tools:
• XAMPP/WAMP
Requirement:
• Computer or laptop
IM 101 Fundamentals of Database Systems
Course Orientation
Schedule
• Saturday
• Lecture: 7:00 AM – 9:00 AM
• Laboratory: 9:00 AM – 12:00NN
IM 101 Fundamentals of Database Systems
Course Orientation
Requirements
• Grading Systems
• Performance (Hands-on) : 25%
• Periodic Written Exams (Prelim & Final ) : 20%
• Quizzes : 15%
• Project / Terminals Output : 30%
• Class Participation / Recitation/Assignment: 10%
IM 101 Fundamentals of Database Systems
Course Orientation
• Class Rules
• Expectations
IM 101 Fundamentals of Database Systems
Getting started
with DBMS
The slides include:
• Introduction to Database Management System
• DBMS vs File System
• View of data
• Data models
• Database Languages: DML, DDL
• Database users and administrators
• Transaction Management
• Database System Structure
• Application architectures
Introduction to Database
Management System
• A DBMS is a collection of software programs that allows
a user to define data types, structures, constraints, store
data permanently, modify and delete the operations.
• DBMS is basically a software used to add, modify, delete,
select data from the database.
• In simpler words, DBMS is a collection of interrelated
data and software programs to access those data.
Bases DBMS Flat file system
Definition
Data
redundancy
Cost
Use
Views
DBMS is a collection of interrelated data
and software programs to access those
data.
There is no problem of data redundancy.
DBMS software are very costly and also
regular update makes it costly.
Mostly, large organizations use DBMS
who can afford it and have a large
number of client and employees to be
managed.
Views are created and an employees
can’t see all information available, hence
there is security.
Flat file system stores data in a plain
text file. Here, the records are specified
in a single line.
There is main problem of data
redundancy.
Flat file are cost effective.
Small organizations use it as it is cost
effective and who have to deal with
small number of clients and
employees.
Any information can be seen by
anyone, hence there is no security.
DBMS VS Flat file system
Views of data
View 1 View 2 View N
Logical level
Physical level
View level
Conceptual
level
Internal
level
Stored
database
Data abstraction
• It is a process of easy user interface to users by hiding
underlying complexities of data management from users.
• It defines views; which user can view which part.
• Database system provides users with abstract view of the
data.
• It only shows a part of database that a user needs.
Physical Level
• It is the lowest level of abstractions and describes how
the data are stored on the storage disk and access
mechanisms to retrieve the data.
• DBMS developer is concerned with this level.
• This level emphasis on minimizing the number of disks
access so that data can be retrieved very fast.
• It describes complex low-level data structures in detail.
Logical Level
• This level describes what data are stored in the database
and the relationships between the data.
• It describes stored data in terms of the data model.
• It describes the database in terms of small number of
relatively simple structures.
View Level
• Every user don’t need to access all information stored in
the database.
• This level is basically concerned with dividing the
database according to the need of the database users.
• It simplifies the interaction of the users with the system.
Data Model
• The basic design or the structure of the database is the
data model.
• It is a collection of conceptual tools for describing data,
data relationships, data semantics, and consistency
constraints.
• The basic structure of the database that organizes data,
defines how the data are stored and accessed, and the
relationships between the data, is the data model.
Types of database
models
• Hierarchical Model
• Network Model
• Entity-Relationship(E-R) Model
• Relational Model
• Object-Oriented Model
• Object-Relational Model
Hierarchical Data Model
• Data is represented as a tree.
• A record type can belong to only one owner type but a
owner type can belong to many record type.
Network Data Model
• It is modified version of Hierarchical Data Model where
it allows more general connections among the nodes as
well.
• They are difficult to use but are more flexible than
hierarchical databases.
Relational Model
• It is a lower level model that uses a collection of tables to
represent both data and relationships among those data.
• Each table has multiple columns, depending on the
number of attributes, and each column has a unique
name.
sid sname Standard
A-101 Ramesh 11
A-102 Kriti 10
A-103 Laxmi 12
Student
E-R Model
• It is a high level model based on the need of the
organization.
• Its entities are distinguishable from other objects and
relationship is an association among several entities.
Student Books
Borrows
sid sname standard bid author
Object-Oriented Model
• It represents entity sets as class and a class represents both
attributes and the behavior of the entity.
• Instance of a class is an object.
• The internal part of the object is not externally visible.
• One object communicates with the other by sending messages.
Object-Relational Model
• It combines the feature of relational data model and
object-oriented data model.
Database Languages
(DDL, DML)
• Data Definition Language(DDL):
• Database language that is used to create, delete or modify
database schema is called DDL.
• It is used by Database Administrators(DBA) to specify the
conceptual schema.
• DDL interpreter converts DDL statements into equivalent
low level statements understood by the DBMS.
• Normally, create, alter, and drop statements are DDL
statements.
• DDL statements make changes in the schema
DDL cont’d
Example: For create command
create table Student
(
sid char(4),
sname varchar(50),
standard integer
);
Example: For drop command
drop Student;
Example: For alter command
alter table Student
ADD COLUMN address varchar(20)
;
DML
• Database language that enables insert, update, delete, and
retrieval of data from the database is called Data
Manipulation Language.
• DML complier converts DML statements into equivalent
low level statements that the database understands.
• Normally, insert, update, delete, select are DML
commands.
• DML reflects change in the instance, not the schema
DML cont’d
Example: For insert
Insert into Student
values(“A-101”,
“Ramesh”, 12);
Example: for update
Update Student
Set class = 11
Where sid = “A-101”
; Example: For delete
Delete from standard
Where sname = “Kriti”
Example: for select
Select *
From Student
Note: In SQL, cases are insensitive. So, instead of Student one can write StUdEnT as
well.
Also, for integer values “12” is incorrect but 12 is correct.
And, for char and varchar “Kriti” is correct and Kriti is incorrect.
Database users and
administrators
• Users are distinguished by the way they interact with the
database system.
1. Naïve users:
• They interact with the system by invoking one of the
application programs written previously. Naive users are
bank teller, receptionist, etc.
• For e.g., bank teller needs to add Rs.90 to account Ram,
and deduct the same amount from account Sita. Then the
application program the bank teller uses is transfer.
Database users and
administrators cont’d
2. Application programmers:
They are specializes computer professionals who write the
application programs for naïve users and for easy user interface
can use an tools.
3. Sophisticated users:
They make request to the database with writing application
programs.
4. Specialized users:
They are experts who write database application like system
storing complex data types, CAD systems that do not fit to the
traditional data-processing framework.
Database users and
administrators cont’d
Database administrators:
DBA is a person who has control over data and the associated
application programs. He is the one who can define schema,
install new software, enforcing security to the system, etc.
Major responsibilities of DBA are:
1. Define schema and modify as per needed
2. Install new software for efficient operations
3. Enforcing and monitoring security
4. Analyzing the data stored in the DBMS
5. Keeping the backup of the DBMS periodically
6. Ensuring the state of the hardware and software
Transaction Management
• Collection of operations that form a single logical unit of
work are called transaction.
• Transaction management ensures that the database system
have ACID properties.
A = atomicity
C = consistency
I = isolation
D = durability
Properties of Transaction
Management (ACID property)
1. Atomicity:
Atomic means whole. This property ensures that the
changes made to the database are wholly reflected or no
change is made. But partial changes or execution are not
made.
2. Consistency:
The database must move from one consistent state to
another after the execution of the transaction.
Properties of Transaction
Management (ACID property) cont’d
3. Isolation:
Even if many transaction may be done at the same time but
isolation ensures that if transaction A and B are executing
concurrently, then either A must execute first then B is
executed or, B must execute first then A is executed.
4. Durability:
Changes made to the database are permanent and even if the
system failure occurs, that don’t lead to the erase of the
transaction executed previously.
Database system structure
Its components are:
1. Storage Manager
2. Disk Storage
3. Query Processor
1. Storage Manager
• Storage manager stores, retrieves, and updates data in the
database. It translates DML statements into low level
statements that the database understands
• Its components are:
• Authorization and integrity manager: It checks for the
correctness of the constraints specified and also checks the
authenticity of the users while entering the database.
• Transaction manager: It ensures that the database follows the
ACID property.
• File manager: It is responsible to manage allocation of space on
the disk storage.
• Buffer manager: It is responsible for fetching data from the disk
storage and to decide what data to cache in the main memory. It
enables to handle data sizes which are larger than the size of the
disk.
2. Disk Storage
• It is responsible for allocating the disk space and also for
maintaining the data in the database.
• Its components are:
• Data files: It is the place where database is stored,
• Data dictionary: It stores metadata about the schema of the
database.
• Indices: It provides quick access to the data items that hold
particular values.
3. Query Processor
• It simplifies and facilitates easy access to the data.
• It translates queries written in non-procedural language,
and operates the statement.
• Its components are:
• DDL interpreter: It interprets DDL statements into low-
level language understood by the system.
• DML compiler: It translates DML statements into an
evaluation plan consisting low level instructions that the
query evaluation engine understands.
• Query evaluation engine: It executes low level statements
generated by the DML compiler.
Two-tier architecture
• In two tier architecture, user interface and application
programs are on the client side and query and transaction
facility are on the server side
• When DBMS access is required, the application program
establishes connection with client and server
• Client queries and server provides response to the
authenticated client request/queries.
• There is direct interaction of client with the server
• The business logic coupled with either client side or the
server side.
Two Tier architecture
Advantages
Disadvantages
• Suitable for
environments where
business rules do
not change
frequently
• number of users are
limited
• Useless for large
scale organizations
• Only a limited
number of clients
can access
ADVANTAGES DISADVANTAGES
Three Tier Architecture
• In three tier architecture, user interface and application
programs are on the client side and query and transaction
facility are on the server side and in between there is an
intermediate layer which stores business
rules(procedures/constraints) used to access data from the
database.
• When DBMS access is required, the application program
establishes connection with client and server but before
forwarding the request of client, application rules check the
client credentials.
• There is indirect interaction of client with the server but direct
connection of client and application rules and application rules
and the server.
Three Tier Architecture
Advantages
Disadvantages
• Efficiency
• Security
• Scalability
• Flexible
• More complex
structure
• More difficult to
setup and maintain
• Expensive
ADVANTAGES DISADVANTAGES
Common terms used in
DBMS
• Instance: The collection of information currently stored in
the database at the particular period.
• Schema: The overall design of the database that is not
expected to change frequently.
• Mapping:
• Metadata: Data about data.
• Data dictionary: A special file that stores metadata.
• Methods: Values and bodies of codes that the object
contains.
God Bless!
and
Keep Safe ALWAYS....

More Related Content

Similar to Week 1 and 2 Getting started with DBMS.pptx (20)

PPT
Introduction of database management system
anjanasharma77573
 
PPT
Unit01 dbms
arnold 7490
 
PPT
This discussion about the dbms introduction
rishabsharma1509
 
PPTX
Utsav Mahendra : Introduction to Database and managemnet
Utsav Mahendra
 
PDF
Database Systems - Lecture Week 1
Dios Kurniawan
 
PPTX
Lecture 1 to 3intro to normalization in database
maqsoodahmedbscsfkhp
 
PDF
Unit 1: Introduction to DBMS Unit 1 Complete
Raj vardhan
 
PPT
Ch1_Intro-95(1).ppt
RAJULKUMARSUTHAR
 
PPTX
Introduction to Database Management Systems (DBMS)
Vijayananda Ratnam Ch
 
PPTX
Dbms unit 1
SaiGupta18
 
PPT
Beginning Of DBMS (data base)
Surya Swaroop
 
PPTX
DBMS_Chapter1_Introduction_to_database.pptx
shruthis866876
 
PPT
Dbms models
devgocool
 
PPT
Advanced Database Management System_Introduction Slide.ppt
BikalAdhikari4
 
PPTX
DB Your score increases as you pick a category, fill out a long description a...
ssuserfdf7272
 
PPTX
Database Management System
NILESH UCHCHASARE
 
PPTX
Anshu Joshi_2371050_DBMS.pptxData base management system
anshjoshi7417
 
PPTX
Unit 2 DATABASE ESSENTIALS.pptx
Nirmalavenkatachalam
 
PPTX
01.-Introduction-to-databases and relational db
solomon166121
 
Introduction of database management system
anjanasharma77573
 
Unit01 dbms
arnold 7490
 
This discussion about the dbms introduction
rishabsharma1509
 
Utsav Mahendra : Introduction to Database and managemnet
Utsav Mahendra
 
Database Systems - Lecture Week 1
Dios Kurniawan
 
Lecture 1 to 3intro to normalization in database
maqsoodahmedbscsfkhp
 
Unit 1: Introduction to DBMS Unit 1 Complete
Raj vardhan
 
Ch1_Intro-95(1).ppt
RAJULKUMARSUTHAR
 
Introduction to Database Management Systems (DBMS)
Vijayananda Ratnam Ch
 
Dbms unit 1
SaiGupta18
 
Beginning Of DBMS (data base)
Surya Swaroop
 
DBMS_Chapter1_Introduction_to_database.pptx
shruthis866876
 
Dbms models
devgocool
 
Advanced Database Management System_Introduction Slide.ppt
BikalAdhikari4
 
DB Your score increases as you pick a category, fill out a long description a...
ssuserfdf7272
 
Database Management System
NILESH UCHCHASARE
 
Anshu Joshi_2371050_DBMS.pptxData base management system
anshjoshi7417
 
Unit 2 DATABASE ESSENTIALS.pptx
Nirmalavenkatachalam
 
01.-Introduction-to-databases and relational db
solomon166121
 

More from Riannel Tecson (20)

PPT
Introduction to C# Language and Applications.ppt
Riannel Tecson
 
PPTX
PF - 102 Terminal Project Guidelines.pptx
Riannel Tecson
 
PPTX
Who is the most Influential Person in Your Life.pptx
Riannel Tecson
 
PPTX
Week 6 MIL Evaluating Information and Importance.pptx
Riannel Tecson
 
PPTX
Java Programs Debugging: Identifying Errors.pptx
Riannel Tecson
 
PPTX
Greedy-Algorithms with Applications.pptx
Riannel Tecson
 
PPT
Linked list-stack-queue Data Structure .ppt
Riannel Tecson
 
PPT
List Data Structure, Linked List, Stacks.ppt
Riannel Tecson
 
PPTX
Computer Systems Servicing Network Cabling.pptx
Riannel Tecson
 
PPTX
introduction-to-functions-grade-11general-math.pptx
Riannel Tecson
 
PPTX
Week-9-UCSP-How-Society-is-Organized.pptx
Riannel Tecson
 
PPT
PC Components_Hardware_Software_CSS11.ppt
Riannel Tecson
 
PPT
C# Control Statements, For loop, Do While.ppt
Riannel Tecson
 
PPTX
Writing the Design and Methodology in Research
Riannel Tecson
 
PPTX
capstone101 Requirements Methodology and
Riannel Tecson
 
PPTX
Writing the Review of Related Literature.pptx
Riannel Tecson
 
PPTX
Network Tools, Materials and Equipment.pptx
Riannel Tecson
 
PPTX
Week 5 Update Anomalies.pptx
Riannel Tecson
 
PPT
Binary Search Tree Traversal.ppt
Riannel Tecson
 
PPT
Does technology shaed soceity.ppt
Riannel Tecson
 
Introduction to C# Language and Applications.ppt
Riannel Tecson
 
PF - 102 Terminal Project Guidelines.pptx
Riannel Tecson
 
Who is the most Influential Person in Your Life.pptx
Riannel Tecson
 
Week 6 MIL Evaluating Information and Importance.pptx
Riannel Tecson
 
Java Programs Debugging: Identifying Errors.pptx
Riannel Tecson
 
Greedy-Algorithms with Applications.pptx
Riannel Tecson
 
Linked list-stack-queue Data Structure .ppt
Riannel Tecson
 
List Data Structure, Linked List, Stacks.ppt
Riannel Tecson
 
Computer Systems Servicing Network Cabling.pptx
Riannel Tecson
 
introduction-to-functions-grade-11general-math.pptx
Riannel Tecson
 
Week-9-UCSP-How-Society-is-Organized.pptx
Riannel Tecson
 
PC Components_Hardware_Software_CSS11.ppt
Riannel Tecson
 
C# Control Statements, For loop, Do While.ppt
Riannel Tecson
 
Writing the Design and Methodology in Research
Riannel Tecson
 
capstone101 Requirements Methodology and
Riannel Tecson
 
Writing the Review of Related Literature.pptx
Riannel Tecson
 
Network Tools, Materials and Equipment.pptx
Riannel Tecson
 
Week 5 Update Anomalies.pptx
Riannel Tecson
 
Binary Search Tree Traversal.ppt
Riannel Tecson
 
Does technology shaed soceity.ppt
Riannel Tecson
 
Ad

Recently uploaded (20)

PDF
Week 2 - Irish Natural Heritage Powerpoint.pdf
swainealan
 
PDF
AI-assisted IP-Design lecture from the MIPLM 2025
MIPLM
 
PDF
Is Assignment Help Legal in Australia_.pdf
thomas19williams83
 
DOCX
Lesson 1 - Nature and Inquiry of Research
marvinnbustamante1
 
PPTX
Post Dated Cheque(PDC) Management in Odoo 18
Celine George
 
PPTX
Building Powerful Agentic AI with Google ADK, MCP, RAG, and Ollama.pptx
Tamanna36
 
PPTX
How to Configure Re-Ordering From Portal in Odoo 18 Website
Celine George
 
PPT
Indian Contract Act 1872, Business Law #MBA #BBA #BCOM
priyasinghy107
 
PDF
I3PM Industry Case Study Siemens on Strategic and Value-Oriented IP Management
MIPLM
 
PPTX
How to Manage Expiry Date in Odoo 18 Inventory
Celine George
 
PDF
Council of Chalcedon Re-Examined
Smiling Lungs
 
PPTX
Difference between write and update in odoo 18
Celine George
 
PDF
WATERSHED MANAGEMENT CASE STUDIES - ULUGURU MOUNTAINS AND ARVARI RIVERpdf
Ar.Asna
 
PDF
I3PM Case study smart parking 2025 with uptoIP® and ABP
MIPLM
 
PPTX
ENGlish 8 lesson presentation PowerPoint.pptx
marawehsvinetshe
 
PDF
Lesson 1 - Nature of Inquiry and Research.pdf
marvinnbustamante1
 
PPTX
Controller Request and Response in Odoo18
Celine George
 
PPTX
Introduction to Indian Writing in English
Trushali Dodiya
 
PDF
Vietnam Street Food & QSR Market 2025-1.pdf
ssuserec8cd0
 
PPTX
Different types of inheritance in odoo 18
Celine George
 
Week 2 - Irish Natural Heritage Powerpoint.pdf
swainealan
 
AI-assisted IP-Design lecture from the MIPLM 2025
MIPLM
 
Is Assignment Help Legal in Australia_.pdf
thomas19williams83
 
Lesson 1 - Nature and Inquiry of Research
marvinnbustamante1
 
Post Dated Cheque(PDC) Management in Odoo 18
Celine George
 
Building Powerful Agentic AI with Google ADK, MCP, RAG, and Ollama.pptx
Tamanna36
 
How to Configure Re-Ordering From Portal in Odoo 18 Website
Celine George
 
Indian Contract Act 1872, Business Law #MBA #BBA #BCOM
priyasinghy107
 
I3PM Industry Case Study Siemens on Strategic and Value-Oriented IP Management
MIPLM
 
How to Manage Expiry Date in Odoo 18 Inventory
Celine George
 
Council of Chalcedon Re-Examined
Smiling Lungs
 
Difference between write and update in odoo 18
Celine George
 
WATERSHED MANAGEMENT CASE STUDIES - ULUGURU MOUNTAINS AND ARVARI RIVERpdf
Ar.Asna
 
I3PM Case study smart parking 2025 with uptoIP® and ABP
MIPLM
 
ENGlish 8 lesson presentation PowerPoint.pptx
marawehsvinetshe
 
Lesson 1 - Nature of Inquiry and Research.pdf
marvinnbustamante1
 
Controller Request and Response in Odoo18
Celine George
 
Introduction to Indian Writing in English
Trushali Dodiya
 
Vietnam Street Food & QSR Market 2025-1.pdf
ssuserec8cd0
 
Different types of inheritance in odoo 18
Celine George
 
Ad

Week 1 and 2 Getting started with DBMS.pptx

  • 1. Welcome students… IM 101 Fundamentals of Database Systems RIANNEL B. TECSON, MIS Instructor
  • 3. IM 101 Fundamentals of Database Systems INTRODUCTION • Course Orientation • Schedule • Requirements • Class Rules • Expectations
  • 4. INTRODUCTION • Student Profile Provide the following information: • COMPLETE NAME • Year Level • Area of Residence • Contact No. • Email Address • Name of Guardian • Learning Modality • Resources • Employment Status Note: Information gathered will be CONFIDENTIAL and will be used for academic purposes only IM 101 Fundamentals of Database Systems
  • 5. Course Orientation Course Description • Fundamentals of Database Systems IM 101 Fundamentals of Database Systems
  • 6. Course Orientation Topics • Introduction to Databases and Transactions • Data Models • Database Design, ER-Diagram and UML • Relational Algebra • Constraints, Views and SQL • Transaction Management and Concurrency Control IM 101 Fundamentals of Database Systems
  • 7. Course Orientation References: • Database System and Concepts by A. Silberschatz • Database Systems by Rob Online: • Any relevant sources Software Tools: • XAMPP/WAMP Requirement: • Computer or laptop IM 101 Fundamentals of Database Systems
  • 8. Course Orientation Schedule • Saturday • Lecture: 7:00 AM – 9:00 AM • Laboratory: 9:00 AM – 12:00NN IM 101 Fundamentals of Database Systems
  • 9. Course Orientation Requirements • Grading Systems • Performance (Hands-on) : 25% • Periodic Written Exams (Prelim & Final ) : 20% • Quizzes : 15% • Project / Terminals Output : 30% • Class Participation / Recitation/Assignment: 10% IM 101 Fundamentals of Database Systems
  • 10. Course Orientation • Class Rules • Expectations IM 101 Fundamentals of Database Systems
  • 12. The slides include: • Introduction to Database Management System • DBMS vs File System • View of data • Data models • Database Languages: DML, DDL • Database users and administrators • Transaction Management • Database System Structure • Application architectures
  • 13. Introduction to Database Management System • A DBMS is a collection of software programs that allows a user to define data types, structures, constraints, store data permanently, modify and delete the operations. • DBMS is basically a software used to add, modify, delete, select data from the database. • In simpler words, DBMS is a collection of interrelated data and software programs to access those data.
  • 14. Bases DBMS Flat file system Definition Data redundancy Cost Use Views DBMS is a collection of interrelated data and software programs to access those data. There is no problem of data redundancy. DBMS software are very costly and also regular update makes it costly. Mostly, large organizations use DBMS who can afford it and have a large number of client and employees to be managed. Views are created and an employees can’t see all information available, hence there is security. Flat file system stores data in a plain text file. Here, the records are specified in a single line. There is main problem of data redundancy. Flat file are cost effective. Small organizations use it as it is cost effective and who have to deal with small number of clients and employees. Any information can be seen by anyone, hence there is no security. DBMS VS Flat file system
  • 15. Views of data View 1 View 2 View N Logical level Physical level View level Conceptual level Internal level Stored database
  • 16. Data abstraction • It is a process of easy user interface to users by hiding underlying complexities of data management from users. • It defines views; which user can view which part. • Database system provides users with abstract view of the data. • It only shows a part of database that a user needs.
  • 17. Physical Level • It is the lowest level of abstractions and describes how the data are stored on the storage disk and access mechanisms to retrieve the data. • DBMS developer is concerned with this level. • This level emphasis on minimizing the number of disks access so that data can be retrieved very fast. • It describes complex low-level data structures in detail.
  • 18. Logical Level • This level describes what data are stored in the database and the relationships between the data. • It describes stored data in terms of the data model. • It describes the database in terms of small number of relatively simple structures.
  • 19. View Level • Every user don’t need to access all information stored in the database. • This level is basically concerned with dividing the database according to the need of the database users. • It simplifies the interaction of the users with the system.
  • 20. Data Model • The basic design or the structure of the database is the data model. • It is a collection of conceptual tools for describing data, data relationships, data semantics, and consistency constraints. • The basic structure of the database that organizes data, defines how the data are stored and accessed, and the relationships between the data, is the data model.
  • 21. Types of database models • Hierarchical Model • Network Model • Entity-Relationship(E-R) Model • Relational Model • Object-Oriented Model • Object-Relational Model
  • 22. Hierarchical Data Model • Data is represented as a tree. • A record type can belong to only one owner type but a owner type can belong to many record type.
  • 23. Network Data Model • It is modified version of Hierarchical Data Model where it allows more general connections among the nodes as well. • They are difficult to use but are more flexible than hierarchical databases.
  • 24. Relational Model • It is a lower level model that uses a collection of tables to represent both data and relationships among those data. • Each table has multiple columns, depending on the number of attributes, and each column has a unique name. sid sname Standard A-101 Ramesh 11 A-102 Kriti 10 A-103 Laxmi 12 Student
  • 25. E-R Model • It is a high level model based on the need of the organization. • Its entities are distinguishable from other objects and relationship is an association among several entities. Student Books Borrows sid sname standard bid author
  • 26. Object-Oriented Model • It represents entity sets as class and a class represents both attributes and the behavior of the entity. • Instance of a class is an object. • The internal part of the object is not externally visible. • One object communicates with the other by sending messages.
  • 27. Object-Relational Model • It combines the feature of relational data model and object-oriented data model.
  • 28. Database Languages (DDL, DML) • Data Definition Language(DDL): • Database language that is used to create, delete or modify database schema is called DDL. • It is used by Database Administrators(DBA) to specify the conceptual schema. • DDL interpreter converts DDL statements into equivalent low level statements understood by the DBMS. • Normally, create, alter, and drop statements are DDL statements. • DDL statements make changes in the schema
  • 29. DDL cont’d Example: For create command create table Student ( sid char(4), sname varchar(50), standard integer ); Example: For drop command drop Student; Example: For alter command alter table Student ADD COLUMN address varchar(20) ;
  • 30. DML • Database language that enables insert, update, delete, and retrieval of data from the database is called Data Manipulation Language. • DML complier converts DML statements into equivalent low level statements that the database understands. • Normally, insert, update, delete, select are DML commands. • DML reflects change in the instance, not the schema
  • 31. DML cont’d Example: For insert Insert into Student values(“A-101”, “Ramesh”, 12); Example: for update Update Student Set class = 11 Where sid = “A-101” ; Example: For delete Delete from standard Where sname = “Kriti” Example: for select Select * From Student Note: In SQL, cases are insensitive. So, instead of Student one can write StUdEnT as well. Also, for integer values “12” is incorrect but 12 is correct. And, for char and varchar “Kriti” is correct and Kriti is incorrect.
  • 32. Database users and administrators • Users are distinguished by the way they interact with the database system. 1. Naïve users: • They interact with the system by invoking one of the application programs written previously. Naive users are bank teller, receptionist, etc. • For e.g., bank teller needs to add Rs.90 to account Ram, and deduct the same amount from account Sita. Then the application program the bank teller uses is transfer.
  • 33. Database users and administrators cont’d 2. Application programmers: They are specializes computer professionals who write the application programs for naïve users and for easy user interface can use an tools. 3. Sophisticated users: They make request to the database with writing application programs. 4. Specialized users: They are experts who write database application like system storing complex data types, CAD systems that do not fit to the traditional data-processing framework.
  • 34. Database users and administrators cont’d Database administrators: DBA is a person who has control over data and the associated application programs. He is the one who can define schema, install new software, enforcing security to the system, etc. Major responsibilities of DBA are: 1. Define schema and modify as per needed 2. Install new software for efficient operations 3. Enforcing and monitoring security 4. Analyzing the data stored in the DBMS 5. Keeping the backup of the DBMS periodically 6. Ensuring the state of the hardware and software
  • 35. Transaction Management • Collection of operations that form a single logical unit of work are called transaction. • Transaction management ensures that the database system have ACID properties. A = atomicity C = consistency I = isolation D = durability
  • 36. Properties of Transaction Management (ACID property) 1. Atomicity: Atomic means whole. This property ensures that the changes made to the database are wholly reflected or no change is made. But partial changes or execution are not made. 2. Consistency: The database must move from one consistent state to another after the execution of the transaction.
  • 37. Properties of Transaction Management (ACID property) cont’d 3. Isolation: Even if many transaction may be done at the same time but isolation ensures that if transaction A and B are executing concurrently, then either A must execute first then B is executed or, B must execute first then A is executed. 4. Durability: Changes made to the database are permanent and even if the system failure occurs, that don’t lead to the erase of the transaction executed previously.
  • 39. Its components are: 1. Storage Manager 2. Disk Storage 3. Query Processor
  • 40. 1. Storage Manager • Storage manager stores, retrieves, and updates data in the database. It translates DML statements into low level statements that the database understands • Its components are: • Authorization and integrity manager: It checks for the correctness of the constraints specified and also checks the authenticity of the users while entering the database. • Transaction manager: It ensures that the database follows the ACID property. • File manager: It is responsible to manage allocation of space on the disk storage. • Buffer manager: It is responsible for fetching data from the disk storage and to decide what data to cache in the main memory. It enables to handle data sizes which are larger than the size of the disk.
  • 41. 2. Disk Storage • It is responsible for allocating the disk space and also for maintaining the data in the database. • Its components are: • Data files: It is the place where database is stored, • Data dictionary: It stores metadata about the schema of the database. • Indices: It provides quick access to the data items that hold particular values.
  • 42. 3. Query Processor • It simplifies and facilitates easy access to the data. • It translates queries written in non-procedural language, and operates the statement. • Its components are: • DDL interpreter: It interprets DDL statements into low- level language understood by the system. • DML compiler: It translates DML statements into an evaluation plan consisting low level instructions that the query evaluation engine understands. • Query evaluation engine: It executes low level statements generated by the DML compiler.
  • 43. Two-tier architecture • In two tier architecture, user interface and application programs are on the client side and query and transaction facility are on the server side • When DBMS access is required, the application program establishes connection with client and server • Client queries and server provides response to the authenticated client request/queries. • There is direct interaction of client with the server • The business logic coupled with either client side or the server side.
  • 45. Advantages Disadvantages • Suitable for environments where business rules do not change frequently • number of users are limited • Useless for large scale organizations • Only a limited number of clients can access ADVANTAGES DISADVANTAGES
  • 46. Three Tier Architecture • In three tier architecture, user interface and application programs are on the client side and query and transaction facility are on the server side and in between there is an intermediate layer which stores business rules(procedures/constraints) used to access data from the database. • When DBMS access is required, the application program establishes connection with client and server but before forwarding the request of client, application rules check the client credentials. • There is indirect interaction of client with the server but direct connection of client and application rules and application rules and the server.
  • 48. Advantages Disadvantages • Efficiency • Security • Scalability • Flexible • More complex structure • More difficult to setup and maintain • Expensive ADVANTAGES DISADVANTAGES
  • 49. Common terms used in DBMS • Instance: The collection of information currently stored in the database at the particular period. • Schema: The overall design of the database that is not expected to change frequently. • Mapping: • Metadata: Data about data. • Data dictionary: A special file that stores metadata. • Methods: Values and bodies of codes that the object contains.