SlideShare a Scribd company logo
1 of 42
Database Management System
(DBMS)

Presented by:
Anshul Poddar
Nilesh Uchchasare
Rahul Vaid
Rajkumar
Rajkumar Tomar
Objective
“ To make you known about the fundamentals
of Database Management System and Improve
ourselves by taking valuable feedbacks from
you.”
Contents
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•

Introduction
What is Data ?
What is Information?
Database
Data Models, Schema and Instances
Components of Database System
What is DBMS ?
Database Administrator (DBA)
Database Languages
Database System Architectures
Advantages of DBMS
Disadvantages of DBMS
Examples of DBMS
MS-Access
Applications of DBMS
Introduction
• DBMS stands for Database Management System.

• DBMS is a software system for creating, organizing
and managing the database.
• It provides an environment to the user to perform
operations on the database for creation, insertion,
deletion, updating and retrieval of data.
What is Data ?
• A collection of raw facts and figures.
• Raw material that can be processed by any
computing machine.
• A collection of facts from which conclusions may
be drawn.
• Data can be represented in the form of:
numbers and words which can be
stored in computer‟s language.
i.e. Paan Singh, Anshul 007
What is Information?
• Systematic and meaningful form of data.
• Knowledge acquired through study or experience.
• Information helps human beings in their decision
making.
Database
• A repository of logically related and similar data.

• An organized collection of related information so that
it can easily be accessed, managed and updated.
E.g.:
Dictionary
Airline Database
Student Database
Library
Railways Timetable
YouTube (All songs of Rahul Vaidya)
Data Models, Schema and Instances
 Data Models:
-Describes structure of the database.
-Aim is to support the development of information
systems by providing the definition and format of data.
-If the same data structures are used to store and access
data then different applications can share data.
-Classification:
1. High-Level Model
2. Representation Model
3. Low-Level Model
1. High-Level Model
• Ensures data requirement of the users.
• Not concerned with representation, but
it‟s a conceptual form.
• Three Imp terms:
a)Entity: - Any object, exists physically or conceptually.
b)Attribute:- Property or characteristic of entity.
c)Relationship:- Association or link b/w two entities.
• These 3 terms make Entity-Relationship Model.
Entity-Relationship (E-R) Model
College

Principal

Course A

Student A
College

College 1

College 2

Course B

College 3

Course C

Student B
Student C
Relationships
E-R diagram

Stud_Name

Stud_Roll No

Student

Course_Id

Admission

Course_Name

Course
2. Representation Model
- Representation of data stored inside a database.
- Describes the physical structure of the database.
- It uses the concepts which are close to the end-users.
- Classification:
a. Hierarchical
b. Relational
c. Network
a. Hierarchical Database Model
• Developed by IBM, is the Oldest database model.
Director
• Represented using a tree-diagram.
Manager
Manager
Manager
(Parent-child relationship)
(HR)
(Sales)
(Market.)
• Each box is called a „Node‟
Area
Area
• The nodes represent a record type. Area
Manager
Manager
Manager
2
3
• A line connecting nodes represents 1
the link.
Sales Exe.
Sales Exe.
1
Sales
Representative

2
Cont…
• Parent-child type is suited for One-to-many
relationship between two entities.
Director
• But difficult to implement
Manager
Manager
(HR)
(Sales)
many-to-many relationship.
e.g.:
Area
Area
Manager
Manager
1
2
IMS system from IBM.
Sales Exe.
1
Sales
Representative

Manager
(Market.)

Area
Manager
3

Sales Exe.
2
b. Relational Database Model
• Simplest and the most common model.
• Developed in 1970 by E.F. Codd, it became commercial
in the 80s.
• Data elements are stored in
different tables made up of
rows and columns.
Roll No

Name

Surname

Section

1001

Rajkumar

Tomar

D

1002

Rajkumar

Singh

D
Cont…
• Terminologies:
-Data Values: alphanumeric raw data (Rajkumar)
-Columns: fields (item or object that holds the data)
-Rows: record (a group of data for related field)
-Table: collection (all records & fields)
-Key: identifier (uniquely identifies a row in the
table. It can be value of a single or multiple column.
e.g.:
Roll No
Name
Surname Section
DB2, ORACLE, SQL Server.

1001

Rajkuma
r

Tomar

D

1002

Rajkuma
r

Singh

D
c. Network Database Model
• Represented using a Data-Structure Diagram.
• Boxes represents the records & lines the links.
• Based on
Teacher 1
Teacher 2
„owner-member relationship.‟
• Members of an owner may
be many but for many members Course A
Course B
owner is one.
• Can represent one-to-one
Student 1
Student 2
and many-to-many as well.

Teacher 3

Course C

Student 3
Cont…
• One-to-many relationship is converted into a set of
one-to-one.
Teacher 1
Teacher 2
Teacher 3
• Also, many-to-many is
converted into 2 or more
one-to-many
Course A
Course B
Course C
relationship.
e.g.:
Student 1
Student 2
Student 3
IDMS, IMAGE.
Cont…
 Schema:
- Logical structure of the database.
- Doesn‟t show the data in database.
- Classification:
1. Physical
2. Conceptual
3. External
Cont…
1. Physical Schema:
-Describes the physical storage of database.
-Not in terms of blocks or devices, but describes organization of files, access
path etc.

2. Conceptual Schema:
-Describes structure of whole database.
-Describes entities their relationships
and constraints.

3. External Schema:
-Provides a user‟s view of data.
-Shows relevant info particular to
user, hides rest of the info.
-one or more levels.

 Instances: Actual data contained in
database at a particular point of time.
Components of Database System
• Users- People who interact with the
database:
- Application Programmers.
- End Users.
Data
- Data Administrators.

Users

Components
of database

• Software- Lies between the stored data
and the users:
- DBMS.
- Application Software.
- User Interface.

Hardware

Software
Cont…
Users

• Hardware- Physical device on which
database resides.
Components
Data
e.g.:
of database
Computers, Disk Drives,
Printers, Cables etc.
Hardware
• Data- numbers, characters, pictures.
e.g.:
Shri Shri Nilesh, 1008, India.

Software
What is DBMS ?
• A set of programs to access the interrelated
data.
• DBMS contains information about a particular
enterprise.
• Computerized record keeping system.
• Provides convenient environment to user to
perform operations:
-Creation, Insertion, Deletion,
Updating & Retrieval of information.
Database Administrator (DBA)
• Individual or a group, having centralized control of the
database.
• Has a good understanding of database and
coordinates all activities of the database.
• Functions:
-Defines schema.
-Defines storage structure and access method.
-Modification of both.
-Granting user authority to access the database.
-Monitoring performance and responding to changes.
Database Languages
• Once data is filled, manipulation is required
(insertion, deletion, modification of data)
• For these, a set of languages is provided by
DBMS:
1. Data Definition Language.
2. Data Manipulation Language.
3. Data Control Language.
Cont…
1. Data Definition Language (DDL):
-Used by DB designers to define schema.
-DDL compiler converts DDL statements and
generate a set of tables which are stored in.
e.g.: SQL
2. Data Manipulation Language (DML):
-For accessing and manipulating the data.
e.g.: SQL
3. Data Control Language (DCL):
-Similar to a computer programming language used to control
access to data stored in a database.
-operations like:
CONNECT, SELECT, INSERT, UPDATE, DELETE, EXECUTE,
and USAGE.
e.g.: SQL
Database System Architectures
• The journey from big mainframe to pc has also
evolved the database and its architecture.
• Classification:
1. Centralized DBMS Architecture
2. Client-Server Architecture
3. Distributed Databases
1. Centralized DBMS Architecture
• Traditional form, all data, functionality, apps are
located on one machine.
• Access via communication links.

Enterprise
database
2. Client-Server Architecture
• Involves a client and a server.
• Clients are PCs or workstations.
• Servers are powerful computers, can manage files,
printers, e-mails.
• Client interacts server when additional functionality
doesn‟t exits in its own machine.
Client

Application server
Database server

User interface

Application program

Database tables
3. Distributed Database Architecture
• Decentralized functionality, distributed among many
computers.
• Storage computers are at diff. geographical locations.

Fragment

Fragment
Enterprise
main
database

Fragment

Fragment
Fragment
Advantages of DBMS
• Controlling Data Redundancy: Data is recorded in only
one place in the database and it is not duplicated.
• Data Consistency: Data item appears only once, and the
updated value is immediately available to all users.
• Control Over Concurrency : In a computer file-based
system in updating, one may overwrite the values recorded
by the other.
• Backup and Recovery Procedures: automatically
create the backup of data and restore data if required.
• Data Independence: Separation of data structure of
database from application program that uses the data is
called data independence.
Disadvantages of DBMS
• Cost of Hardware and Software: Processor with high speed of data
processing and memory of large size is required.
• Cost of Data Conversion: Very difficult and costly method to convert
data of data file into database.
• Cost of Staff Training: A lot of amount for the training of staff to run
the DBMS.
• Appointing Technical Staff: Trained technical persons such as
database administrator, application programmers, data entry operators
etc. are required to handle the DBMS.
• Database Damage: All data is integrated into a single database. If
database is damaged due to electric failure or database is corrupted
on the storage media, then your valuable data may be lost forever.
Examples of DBMS
• Some of the common used DBMSs are:
-Oracle, IBM‟s DB2, Microsoft‟s SQL Server,
MS-Access and Informix.

• Some of the desktop based DBMSs are:
-Microsoft FoxPro, Borland dBase and
Microsoft Access.
MS-Access (2007)
• Allows creation of database for MS Windows family.
• Permits user to design and create complete database
with quick and easy data entry.
• Can store any kind of data:
Numbers, pages of text, pictures etc.
• Is a tool for managing the data base.
• It‟s a Relational DBMS.
Getting started…
Features of MS-Access 2007
• User can create tables and manage them.
• Can design reports to present the data.

• Attach files to the database.
• It permits filtering the data based on text, numbers
and date, and also sorts the data.
• Allows queries to analyze the data.
Toolbar
•
•
•
•
•

Home: View, clipboard, records, sort, find.
Create: Tables, forms, reports, query (other).
External Data: Import, export, collect data.
Database Tools: Show, hide, analyze, move data.
Datasheet: Views, fields & columns, format, relationship.
The Create tab
• Tables:
-Stores data.
-We can add tasks, events, contacts, design etc.
• Forms:
-Edit it.
-Blank form, split form, multiple items etc.
Cont…
• Reports:
-Print it.
-Blank report, customized report, report in design.
• Query:
-Search it.
-Create a query, find duplicate query, unmatched
query, select table for creating a query.
Applications of DBMS
• Airlines and Railways: Online databases for reservation, and
displaying the schedule information.
• Banking: Customer inquiry, accounts, loans, and other transactions.
• Education: Course registration, result, and other information.
• Telecommunications: Communication network, telephone numbers,
record of calls, for generating monthly bills, etc.
• E-commerce: Business activity such as online shopping, booking of
holiday package, consulting a doctor, etc.
• Human resources: Organizations use databases for storing
information about their employees, salaries, benefits, taxes, and for
generating salary checks.
Bibliography
URLs:
http://www.wikipedia.org
http://computer-dbms.blogspot.in
http://www.slideshare.net
http://my.safaribooksonline.com
http://www.123rf.com

Books:
Computer Fundamentals -Anita Goel.
DBMS: Principles & Products -Charles J. Bontempo and Cynthia Maro Sarcoo.
Modern DBMS -Jeffry A. Hoffer, Marry B. Prescott and Fred R. Mcfadden.
Information Technology training Program, Module II, CA-IPC
Computer Fundamentals – P. K. Sinha
Thank You!
?
Queries…

More Related Content

What's hot (20)

Dbms architecture
Dbms architectureDbms architecture
Dbms architecture
 
Database Management System Introduction
Database Management System IntroductionDatabase Management System Introduction
Database Management System Introduction
 
Database management system
Database management system Database management system
Database management system
 
Introduction to Database
Introduction to DatabaseIntroduction to Database
Introduction to Database
 
ER-Model-ER Diagram
ER-Model-ER DiagramER-Model-ER Diagram
ER-Model-ER Diagram
 
Database Management System
Database Management SystemDatabase Management System
Database Management System
 
Introduction to RDBMS
Introduction to RDBMSIntroduction to RDBMS
Introduction to RDBMS
 
Er model ppt
Er model pptEr model ppt
Er model ppt
 
Database Presentation
Database PresentationDatabase Presentation
Database Presentation
 
Dbms and rdbms ppt
Dbms and rdbms pptDbms and rdbms ppt
Dbms and rdbms ppt
 
Dbms Introduction and Basics
Dbms Introduction and BasicsDbms Introduction and Basics
Dbms Introduction and Basics
 
RDBMS
RDBMSRDBMS
RDBMS
 
Types of Database Models
Types of Database ModelsTypes of Database Models
Types of Database Models
 
DATABASE MANAGEMENT SYSTEM
DATABASE MANAGEMENT SYSTEMDATABASE MANAGEMENT SYSTEM
DATABASE MANAGEMENT SYSTEM
 
11 Database Concepts
11 Database Concepts11 Database Concepts
11 Database Concepts
 
Database and types of database
Database and types of databaseDatabase and types of database
Database and types of database
 
Database abstraction
Database abstractionDatabase abstraction
Database abstraction
 
Database language
Database languageDatabase language
Database language
 
Types dbms
Types dbmsTypes dbms
Types dbms
 
ER Model in DBMS
ER Model in DBMSER Model in DBMS
ER Model in DBMS
 

Viewers also liked

Function
FunctionFunction
Functionrey501
 
Database management functions
Database management functionsDatabase management functions
Database management functionsyhen06
 
Functions of database management systems
Functions of database management systemsFunctions of database management systems
Functions of database management systemsUZAIR UDDIN SHAIKH
 
Data base management system
Data base management systemData base management system
Data base management systemNavneet Jingar
 
Types of databases
Types of databasesTypes of databases
Types of databasesPAQUIAAIZEL
 
Database management system
Database management systemDatabase management system
Database management systemRizwanHafeez
 
Database Management Systems (DBMS)
Database Management Systems (DBMS)Database Management Systems (DBMS)
Database Management Systems (DBMS)Dimara Hakim
 
Microsoft word presentation
Microsoft word presentationMicrosoft word presentation
Microsoft word presentationegirshovich
 

Viewers also liked (11)

DbMs
DbMsDbMs
DbMs
 
Function
FunctionFunction
Function
 
Database management functions
Database management functionsDatabase management functions
Database management functions
 
Functions of database management systems
Functions of database management systemsFunctions of database management systems
Functions of database management systems
 
Data base management system
Data base management systemData base management system
Data base management system
 
Types of databases
Types of databasesTypes of databases
Types of databases
 
Data Base Management System
Data Base Management SystemData Base Management System
Data Base Management System
 
Database management system
Database management systemDatabase management system
Database management system
 
Dbms slides
Dbms slidesDbms slides
Dbms slides
 
Database Management Systems (DBMS)
Database Management Systems (DBMS)Database Management Systems (DBMS)
Database Management Systems (DBMS)
 
Microsoft word presentation
Microsoft word presentationMicrosoft word presentation
Microsoft word presentation
 

Similar to Database Management System

Database management system.pptx
Database management system.pptxDatabase management system.pptx
Database management system.pptxAshmitKashyap1
 
Basic Concept of Database
Basic Concept of DatabaseBasic Concept of Database
Basic Concept of DatabaseMarlon Jamera
 
Week 1 and 2 Getting started with DBMS.pptx
Week 1 and 2 Getting started with DBMS.pptxWeek 1 and 2 Getting started with DBMS.pptx
Week 1 and 2 Getting started with DBMS.pptxRiannel Tecson
 
9a797dbms chapter1 b.sc2
9a797dbms chapter1 b.sc29a797dbms chapter1 b.sc2
9a797dbms chapter1 b.sc2Mukund Trivedi
 
01-database-management.pptx
01-database-management.pptx01-database-management.pptx
01-database-management.pptxdhanajimirajkar1
 
Utsav Mahendra : Introduction to Database and managemnet
Utsav Mahendra : Introduction to Database and managemnetUtsav Mahendra : Introduction to Database and managemnet
Utsav Mahendra : Introduction to Database and managemnetUtsav Mahendra
 
Database management system basics and it applications
Database management system basics and it applicationsDatabase management system basics and it applications
Database management system basics and it applicationsRAJESH S
 
DBMS architecture &; system structure
DBMS architecture &; system  structureDBMS architecture &; system  structure
DBMS architecture &; system structureRUpaliLohar
 
Beginning Of DBMS (data base)
Beginning Of DBMS (data base)Beginning Of DBMS (data base)
Beginning Of DBMS (data base)Surya Swaroop
 
Module 1 - Chapter 2.pptx
Module 1 - Chapter 2.pptxModule 1 - Chapter 2.pptx
Module 1 - Chapter 2.pptxSoniaDevi15
 
Database Systems(DBS) Or DATABASE MANAGEMENT SYSTEM
Database Systems(DBS) Or DATABASE MANAGEMENT SYSTEMDatabase Systems(DBS) Or DATABASE MANAGEMENT SYSTEM
Database Systems(DBS) Or DATABASE MANAGEMENT SYSTEMmoronfolabukunmi
 

Similar to Database Management System (20)

Database management system.pptx
Database management system.pptxDatabase management system.pptx
Database management system.pptx
 
Fundamentals of DBMS
Fundamentals of DBMSFundamentals of DBMS
Fundamentals of DBMS
 
DBMS
DBMS DBMS
DBMS
 
Basic Concept of Database
Basic Concept of DatabaseBasic Concept of Database
Basic Concept of Database
 
Week 1 and 2 Getting started with DBMS.pptx
Week 1 and 2 Getting started with DBMS.pptxWeek 1 and 2 Getting started with DBMS.pptx
Week 1 and 2 Getting started with DBMS.pptx
 
Ch1_Intro-95(1).ppt
Ch1_Intro-95(1).pptCh1_Intro-95(1).ppt
Ch1_Intro-95(1).ppt
 
9a797dbms chapter1 b.sc2
9a797dbms chapter1 b.sc29a797dbms chapter1 b.sc2
9a797dbms chapter1 b.sc2
 
01-database-management.pptx
01-database-management.pptx01-database-management.pptx
01-database-management.pptx
 
Unit 1.pptx
Unit 1.pptxUnit 1.pptx
Unit 1.pptx
 
Utsav Mahendra : Introduction to Database and managemnet
Utsav Mahendra : Introduction to Database and managemnetUtsav Mahendra : Introduction to Database and managemnet
Utsav Mahendra : Introduction to Database and managemnet
 
Database management system basics and it applications
Database management system basics and it applicationsDatabase management system basics and it applications
Database management system basics and it applications
 
Unit 1 dbms
Unit 1 dbmsUnit 1 dbms
Unit 1 dbms
 
DBMS architecture &; system structure
DBMS architecture &; system  structureDBMS architecture &; system  structure
DBMS architecture &; system structure
 
Dbms unit 1
Dbms unit 1Dbms unit 1
Dbms unit 1
 
Beginning Of DBMS (data base)
Beginning Of DBMS (data base)Beginning Of DBMS (data base)
Beginning Of DBMS (data base)
 
Module 1 - Chapter 2.pptx
Module 1 - Chapter 2.pptxModule 1 - Chapter 2.pptx
Module 1 - Chapter 2.pptx
 
Database Systems(DBS) Or DATABASE MANAGEMENT SYSTEM
Database Systems(DBS) Or DATABASE MANAGEMENT SYSTEMDatabase Systems(DBS) Or DATABASE MANAGEMENT SYSTEM
Database Systems(DBS) Or DATABASE MANAGEMENT SYSTEM
 
Unit 2 DATABASE ESSENTIALS.pptx
Unit 2 DATABASE ESSENTIALS.pptxUnit 2 DATABASE ESSENTIALS.pptx
Unit 2 DATABASE ESSENTIALS.pptx
 
DBMS-Unit-1.pptx
DBMS-Unit-1.pptxDBMS-Unit-1.pptx
DBMS-Unit-1.pptx
 
Unit1 DBMS Introduction
Unit1 DBMS IntroductionUnit1 DBMS Introduction
Unit1 DBMS Introduction
 

Recently uploaded

Cash Payment 9602870969 Escort Service in Udaipur Call Girls
Cash Payment 9602870969 Escort Service in Udaipur Call GirlsCash Payment 9602870969 Escort Service in Udaipur Call Girls
Cash Payment 9602870969 Escort Service in Udaipur Call GirlsApsara Of India
 
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best ServicesMysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best ServicesDipal Arora
 
Creating Low-Code Loan Applications using the Trisotech Mortgage Feature Set
Creating Low-Code Loan Applications using the Trisotech Mortgage Feature SetCreating Low-Code Loan Applications using the Trisotech Mortgage Feature Set
Creating Low-Code Loan Applications using the Trisotech Mortgage Feature SetDenis Gagné
 
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdfRenandantas16
 
Regression analysis: Simple Linear Regression Multiple Linear Regression
Regression analysis:  Simple Linear Regression Multiple Linear RegressionRegression analysis:  Simple Linear Regression Multiple Linear Regression
Regression analysis: Simple Linear Regression Multiple Linear RegressionRavindra Nath Shukla
 
M.C Lodges -- Guest House in Jhang.
M.C Lodges --  Guest House in Jhang.M.C Lodges --  Guest House in Jhang.
M.C Lodges -- Guest House in Jhang.Aaiza Hassan
 
VIP Kolkata Call Girl Howrah 👉 8250192130 Available With Room
VIP Kolkata Call Girl Howrah 👉 8250192130  Available With RoomVIP Kolkata Call Girl Howrah 👉 8250192130  Available With Room
VIP Kolkata Call Girl Howrah 👉 8250192130 Available With Roomdivyansh0kumar0
 
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...anilsa9823
 
RE Capital's Visionary Leadership under Newman Leech
RE Capital's Visionary Leadership under Newman LeechRE Capital's Visionary Leadership under Newman Leech
RE Capital's Visionary Leadership under Newman LeechNewman George Leech
 
Monthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptxMonthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptxAndy Lambert
 
Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...Roland Driesen
 
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...Dave Litwiller
 
Tech Startup Growth Hacking 101 - Basics on Growth Marketing
Tech Startup Growth Hacking 101  - Basics on Growth MarketingTech Startup Growth Hacking 101  - Basics on Growth Marketing
Tech Startup Growth Hacking 101 - Basics on Growth MarketingShawn Pang
 
Catalogue ONG NUOC PPR DE NHAT .pdf
Catalogue ONG NUOC PPR DE NHAT      .pdfCatalogue ONG NUOC PPR DE NHAT      .pdf
Catalogue ONG NUOC PPR DE NHAT .pdfOrient Homes
 
Mondelez State of Snacking and Future Trends 2023
Mondelez State of Snacking and Future Trends 2023Mondelez State of Snacking and Future Trends 2023
Mondelez State of Snacking and Future Trends 2023Neil Kimberley
 
A DAY IN THE LIFE OF A SALESMAN / WOMAN
A DAY IN THE LIFE OF A  SALESMAN / WOMANA DAY IN THE LIFE OF A  SALESMAN / WOMAN
A DAY IN THE LIFE OF A SALESMAN / WOMANIlamathiKannappan
 
It will be International Nurses' Day on 12 May
It will be International Nurses' Day on 12 MayIt will be International Nurses' Day on 12 May
It will be International Nurses' Day on 12 MayNZSG
 
Insurers' journeys to build a mastery in the IoT usage
Insurers' journeys to build a mastery in the IoT usageInsurers' journeys to build a mastery in the IoT usage
Insurers' journeys to build a mastery in the IoT usageMatteo Carbone
 

Recently uploaded (20)

Cash Payment 9602870969 Escort Service in Udaipur Call Girls
Cash Payment 9602870969 Escort Service in Udaipur Call GirlsCash Payment 9602870969 Escort Service in Udaipur Call Girls
Cash Payment 9602870969 Escort Service in Udaipur Call Girls
 
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best ServicesMysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
Mysore Call Girls 8617370543 WhatsApp Number 24x7 Best Services
 
Nepali Escort Girl Kakori \ 9548273370 Indian Call Girls Service Lucknow ₹,9517
Nepali Escort Girl Kakori \ 9548273370 Indian Call Girls Service Lucknow ₹,9517Nepali Escort Girl Kakori \ 9548273370 Indian Call Girls Service Lucknow ₹,9517
Nepali Escort Girl Kakori \ 9548273370 Indian Call Girls Service Lucknow ₹,9517
 
Creating Low-Code Loan Applications using the Trisotech Mortgage Feature Set
Creating Low-Code Loan Applications using the Trisotech Mortgage Feature SetCreating Low-Code Loan Applications using the Trisotech Mortgage Feature Set
Creating Low-Code Loan Applications using the Trisotech Mortgage Feature Set
 
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
 
Regression analysis: Simple Linear Regression Multiple Linear Regression
Regression analysis:  Simple Linear Regression Multiple Linear RegressionRegression analysis:  Simple Linear Regression Multiple Linear Regression
Regression analysis: Simple Linear Regression Multiple Linear Regression
 
M.C Lodges -- Guest House in Jhang.
M.C Lodges --  Guest House in Jhang.M.C Lodges --  Guest House in Jhang.
M.C Lodges -- Guest House in Jhang.
 
VIP Kolkata Call Girl Howrah 👉 8250192130 Available With Room
VIP Kolkata Call Girl Howrah 👉 8250192130  Available With RoomVIP Kolkata Call Girl Howrah 👉 8250192130  Available With Room
VIP Kolkata Call Girl Howrah 👉 8250192130 Available With Room
 
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
 
RE Capital's Visionary Leadership under Newman Leech
RE Capital's Visionary Leadership under Newman LeechRE Capital's Visionary Leadership under Newman Leech
RE Capital's Visionary Leadership under Newman Leech
 
Monthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptxMonthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptx
 
KestrelPro Flyer Japan IT Week 2024 (English)
KestrelPro Flyer Japan IT Week 2024 (English)KestrelPro Flyer Japan IT Week 2024 (English)
KestrelPro Flyer Japan IT Week 2024 (English)
 
Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...
 
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...
 
Tech Startup Growth Hacking 101 - Basics on Growth Marketing
Tech Startup Growth Hacking 101  - Basics on Growth MarketingTech Startup Growth Hacking 101  - Basics on Growth Marketing
Tech Startup Growth Hacking 101 - Basics on Growth Marketing
 
Catalogue ONG NUOC PPR DE NHAT .pdf
Catalogue ONG NUOC PPR DE NHAT      .pdfCatalogue ONG NUOC PPR DE NHAT      .pdf
Catalogue ONG NUOC PPR DE NHAT .pdf
 
Mondelez State of Snacking and Future Trends 2023
Mondelez State of Snacking and Future Trends 2023Mondelez State of Snacking and Future Trends 2023
Mondelez State of Snacking and Future Trends 2023
 
A DAY IN THE LIFE OF A SALESMAN / WOMAN
A DAY IN THE LIFE OF A  SALESMAN / WOMANA DAY IN THE LIFE OF A  SALESMAN / WOMAN
A DAY IN THE LIFE OF A SALESMAN / WOMAN
 
It will be International Nurses' Day on 12 May
It will be International Nurses' Day on 12 MayIt will be International Nurses' Day on 12 May
It will be International Nurses' Day on 12 May
 
Insurers' journeys to build a mastery in the IoT usage
Insurers' journeys to build a mastery in the IoT usageInsurers' journeys to build a mastery in the IoT usage
Insurers' journeys to build a mastery in the IoT usage
 

Database Management System

  • 1. Database Management System (DBMS) Presented by: Anshul Poddar Nilesh Uchchasare Rahul Vaid Rajkumar Rajkumar Tomar
  • 2. Objective “ To make you known about the fundamentals of Database Management System and Improve ourselves by taking valuable feedbacks from you.”
  • 3. Contents • • • • • • • • • • • • • • • Introduction What is Data ? What is Information? Database Data Models, Schema and Instances Components of Database System What is DBMS ? Database Administrator (DBA) Database Languages Database System Architectures Advantages of DBMS Disadvantages of DBMS Examples of DBMS MS-Access Applications of DBMS
  • 4. Introduction • DBMS stands for Database Management System. • DBMS is a software system for creating, organizing and managing the database. • It provides an environment to the user to perform operations on the database for creation, insertion, deletion, updating and retrieval of data.
  • 5. What is Data ? • A collection of raw facts and figures. • Raw material that can be processed by any computing machine. • A collection of facts from which conclusions may be drawn. • Data can be represented in the form of: numbers and words which can be stored in computer‟s language. i.e. Paan Singh, Anshul 007
  • 6. What is Information? • Systematic and meaningful form of data. • Knowledge acquired through study or experience. • Information helps human beings in their decision making.
  • 7. Database • A repository of logically related and similar data. • An organized collection of related information so that it can easily be accessed, managed and updated. E.g.: Dictionary Airline Database Student Database Library Railways Timetable YouTube (All songs of Rahul Vaidya)
  • 8. Data Models, Schema and Instances  Data Models: -Describes structure of the database. -Aim is to support the development of information systems by providing the definition and format of data. -If the same data structures are used to store and access data then different applications can share data. -Classification: 1. High-Level Model 2. Representation Model 3. Low-Level Model
  • 9. 1. High-Level Model • Ensures data requirement of the users. • Not concerned with representation, but it‟s a conceptual form. • Three Imp terms: a)Entity: - Any object, exists physically or conceptually. b)Attribute:- Property or characteristic of entity. c)Relationship:- Association or link b/w two entities. • These 3 terms make Entity-Relationship Model.
  • 10. Entity-Relationship (E-R) Model College Principal Course A Student A College College 1 College 2 Course B College 3 Course C Student B Student C Relationships E-R diagram Stud_Name Stud_Roll No Student Course_Id Admission Course_Name Course
  • 11. 2. Representation Model - Representation of data stored inside a database. - Describes the physical structure of the database. - It uses the concepts which are close to the end-users. - Classification: a. Hierarchical b. Relational c. Network
  • 12. a. Hierarchical Database Model • Developed by IBM, is the Oldest database model. Director • Represented using a tree-diagram. Manager Manager Manager (Parent-child relationship) (HR) (Sales) (Market.) • Each box is called a „Node‟ Area Area • The nodes represent a record type. Area Manager Manager Manager 2 3 • A line connecting nodes represents 1 the link. Sales Exe. Sales Exe. 1 Sales Representative 2
  • 13. Cont… • Parent-child type is suited for One-to-many relationship between two entities. Director • But difficult to implement Manager Manager (HR) (Sales) many-to-many relationship. e.g.: Area Area Manager Manager 1 2 IMS system from IBM. Sales Exe. 1 Sales Representative Manager (Market.) Area Manager 3 Sales Exe. 2
  • 14. b. Relational Database Model • Simplest and the most common model. • Developed in 1970 by E.F. Codd, it became commercial in the 80s. • Data elements are stored in different tables made up of rows and columns. Roll No Name Surname Section 1001 Rajkumar Tomar D 1002 Rajkumar Singh D
  • 15. Cont… • Terminologies: -Data Values: alphanumeric raw data (Rajkumar) -Columns: fields (item or object that holds the data) -Rows: record (a group of data for related field) -Table: collection (all records & fields) -Key: identifier (uniquely identifies a row in the table. It can be value of a single or multiple column. e.g.: Roll No Name Surname Section DB2, ORACLE, SQL Server. 1001 Rajkuma r Tomar D 1002 Rajkuma r Singh D
  • 16. c. Network Database Model • Represented using a Data-Structure Diagram. • Boxes represents the records & lines the links. • Based on Teacher 1 Teacher 2 „owner-member relationship.‟ • Members of an owner may be many but for many members Course A Course B owner is one. • Can represent one-to-one Student 1 Student 2 and many-to-many as well. Teacher 3 Course C Student 3
  • 17. Cont… • One-to-many relationship is converted into a set of one-to-one. Teacher 1 Teacher 2 Teacher 3 • Also, many-to-many is converted into 2 or more one-to-many Course A Course B Course C relationship. e.g.: Student 1 Student 2 Student 3 IDMS, IMAGE.
  • 18. Cont…  Schema: - Logical structure of the database. - Doesn‟t show the data in database. - Classification: 1. Physical 2. Conceptual 3. External
  • 19. Cont… 1. Physical Schema: -Describes the physical storage of database. -Not in terms of blocks or devices, but describes organization of files, access path etc. 2. Conceptual Schema: -Describes structure of whole database. -Describes entities their relationships and constraints. 3. External Schema: -Provides a user‟s view of data. -Shows relevant info particular to user, hides rest of the info. -one or more levels.  Instances: Actual data contained in database at a particular point of time.
  • 20. Components of Database System • Users- People who interact with the database: - Application Programmers. - End Users. Data - Data Administrators. Users Components of database • Software- Lies between the stored data and the users: - DBMS. - Application Software. - User Interface. Hardware Software
  • 21. Cont… Users • Hardware- Physical device on which database resides. Components Data e.g.: of database Computers, Disk Drives, Printers, Cables etc. Hardware • Data- numbers, characters, pictures. e.g.: Shri Shri Nilesh, 1008, India. Software
  • 22. What is DBMS ? • A set of programs to access the interrelated data. • DBMS contains information about a particular enterprise. • Computerized record keeping system. • Provides convenient environment to user to perform operations: -Creation, Insertion, Deletion, Updating & Retrieval of information.
  • 23. Database Administrator (DBA) • Individual or a group, having centralized control of the database. • Has a good understanding of database and coordinates all activities of the database. • Functions: -Defines schema. -Defines storage structure and access method. -Modification of both. -Granting user authority to access the database. -Monitoring performance and responding to changes.
  • 24. Database Languages • Once data is filled, manipulation is required (insertion, deletion, modification of data) • For these, a set of languages is provided by DBMS: 1. Data Definition Language. 2. Data Manipulation Language. 3. Data Control Language.
  • 25. Cont… 1. Data Definition Language (DDL): -Used by DB designers to define schema. -DDL compiler converts DDL statements and generate a set of tables which are stored in. e.g.: SQL 2. Data Manipulation Language (DML): -For accessing and manipulating the data. e.g.: SQL 3. Data Control Language (DCL): -Similar to a computer programming language used to control access to data stored in a database. -operations like: CONNECT, SELECT, INSERT, UPDATE, DELETE, EXECUTE, and USAGE. e.g.: SQL
  • 26. Database System Architectures • The journey from big mainframe to pc has also evolved the database and its architecture. • Classification: 1. Centralized DBMS Architecture 2. Client-Server Architecture 3. Distributed Databases
  • 27. 1. Centralized DBMS Architecture • Traditional form, all data, functionality, apps are located on one machine. • Access via communication links. Enterprise database
  • 28. 2. Client-Server Architecture • Involves a client and a server. • Clients are PCs or workstations. • Servers are powerful computers, can manage files, printers, e-mails. • Client interacts server when additional functionality doesn‟t exits in its own machine. Client Application server Database server User interface Application program Database tables
  • 29. 3. Distributed Database Architecture • Decentralized functionality, distributed among many computers. • Storage computers are at diff. geographical locations. Fragment Fragment Enterprise main database Fragment Fragment Fragment
  • 30. Advantages of DBMS • Controlling Data Redundancy: Data is recorded in only one place in the database and it is not duplicated. • Data Consistency: Data item appears only once, and the updated value is immediately available to all users. • Control Over Concurrency : In a computer file-based system in updating, one may overwrite the values recorded by the other. • Backup and Recovery Procedures: automatically create the backup of data and restore data if required. • Data Independence: Separation of data structure of database from application program that uses the data is called data independence.
  • 31. Disadvantages of DBMS • Cost of Hardware and Software: Processor with high speed of data processing and memory of large size is required. • Cost of Data Conversion: Very difficult and costly method to convert data of data file into database. • Cost of Staff Training: A lot of amount for the training of staff to run the DBMS. • Appointing Technical Staff: Trained technical persons such as database administrator, application programmers, data entry operators etc. are required to handle the DBMS. • Database Damage: All data is integrated into a single database. If database is damaged due to electric failure or database is corrupted on the storage media, then your valuable data may be lost forever.
  • 32. Examples of DBMS • Some of the common used DBMSs are: -Oracle, IBM‟s DB2, Microsoft‟s SQL Server, MS-Access and Informix. • Some of the desktop based DBMSs are: -Microsoft FoxPro, Borland dBase and Microsoft Access.
  • 33. MS-Access (2007) • Allows creation of database for MS Windows family. • Permits user to design and create complete database with quick and easy data entry. • Can store any kind of data: Numbers, pages of text, pictures etc. • Is a tool for managing the data base. • It‟s a Relational DBMS.
  • 35. Features of MS-Access 2007 • User can create tables and manage them. • Can design reports to present the data. • Attach files to the database. • It permits filtering the data based on text, numbers and date, and also sorts the data. • Allows queries to analyze the data.
  • 36. Toolbar • • • • • Home: View, clipboard, records, sort, find. Create: Tables, forms, reports, query (other). External Data: Import, export, collect data. Database Tools: Show, hide, analyze, move data. Datasheet: Views, fields & columns, format, relationship.
  • 37. The Create tab • Tables: -Stores data. -We can add tasks, events, contacts, design etc. • Forms: -Edit it. -Blank form, split form, multiple items etc.
  • 38. Cont… • Reports: -Print it. -Blank report, customized report, report in design. • Query: -Search it. -Create a query, find duplicate query, unmatched query, select table for creating a query.
  • 39. Applications of DBMS • Airlines and Railways: Online databases for reservation, and displaying the schedule information. • Banking: Customer inquiry, accounts, loans, and other transactions. • Education: Course registration, result, and other information. • Telecommunications: Communication network, telephone numbers, record of calls, for generating monthly bills, etc. • E-commerce: Business activity such as online shopping, booking of holiday package, consulting a doctor, etc. • Human resources: Organizations use databases for storing information about their employees, salaries, benefits, taxes, and for generating salary checks.
  • 40. Bibliography URLs: http://www.wikipedia.org http://computer-dbms.blogspot.in http://www.slideshare.net http://my.safaribooksonline.com http://www.123rf.com Books: Computer Fundamentals -Anita Goel. DBMS: Principles & Products -Charles J. Bontempo and Cynthia Maro Sarcoo. Modern DBMS -Jeffry A. Hoffer, Marry B. Prescott and Fred R. Mcfadden. Information Technology training Program, Module II, CA-IPC Computer Fundamentals – P. K. Sinha