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

Codd's rules
Codd's rulesCodd's rules
Codd's rulesMohd Arif
Ā 
DATABASE MANAGEMENT SYSTEM
DATABASE MANAGEMENT SYSTEMDATABASE MANAGEMENT SYSTEM
DATABASE MANAGEMENT SYSTEMMahmud Hasan Tanvir
Ā 
Relational algebra ppt
Relational algebra pptRelational algebra ppt
Relational algebra pptGirdharRatne
Ā 
Er model ppt
Er model pptEr model ppt
Er model pptPihu Goel
Ā 
Introduction to databases
Introduction to databasesIntroduction to databases
Introduction to databasesBryan Corpuz
Ā 
Database systems
Database systemsDatabase systems
Database systemsDhani Ahmad
Ā 
Introduction to Database
Introduction to DatabaseIntroduction to Database
Introduction to DatabaseSiti Ismail
Ā 
Relational Database Management System
Relational Database Management SystemRelational Database Management System
Relational Database Management SystemMian Abdul Raheem
Ā 
Entity Relationship Diagram
Entity Relationship DiagramEntity Relationship Diagram
Entity Relationship DiagramShakila Mahjabin
Ā 
Components and Advantages of DBMS
Components and Advantages of DBMSComponents and Advantages of DBMS
Components and Advantages of DBMSShubham Joon
Ā 
Data warehousing
Data warehousingData warehousing
Data warehousingShruti Dalela
Ā 
Dbms relational model
Dbms relational modelDbms relational model
Dbms relational modelChirag vasava
Ā 
Types of Database Models
Types of Database ModelsTypes of Database Models
Types of Database ModelsMurassa Gillani
Ā 
Operating system presentation
Operating system presentationOperating system presentation
Operating system presentationashanrajpar
Ā 
Presentation on Database management system
Presentation on Database management systemPresentation on Database management system
Presentation on Database management systemPrerana Bhattarai
Ā 

What's hot (20)

ER-Model-ER Diagram
ER-Model-ER DiagramER-Model-ER Diagram
ER-Model-ER Diagram
Ā 
Codd's rules
Codd's rulesCodd's rules
Codd's rules
Ā 
DATABASE MANAGEMENT SYSTEM
DATABASE MANAGEMENT SYSTEMDATABASE MANAGEMENT SYSTEM
DATABASE MANAGEMENT SYSTEM
Ā 
Relational algebra ppt
Relational algebra pptRelational algebra ppt
Relational algebra ppt
Ā 
Er model ppt
Er model pptEr model ppt
Er model ppt
Ā 
Introduction to databases
Introduction to databasesIntroduction to databases
Introduction to databases
Ā 
Database systems
Database systemsDatabase systems
Database systems
Ā 
Introduction to Database
Introduction to DatabaseIntroduction to Database
Introduction to Database
Ā 
Relational Database Management System
Relational Database Management SystemRelational Database Management System
Relational Database Management System
Ā 
Entity Relationship Diagram
Entity Relationship DiagramEntity Relationship Diagram
Entity Relationship Diagram
Ā 
Components and Advantages of DBMS
Components and Advantages of DBMSComponents and Advantages of DBMS
Components and Advantages of DBMS
Ā 
Data warehousing
Data warehousingData warehousing
Data warehousing
Ā 
Dbms relational model
Dbms relational modelDbms relational model
Dbms relational model
Ā 
Database language
Database languageDatabase language
Database language
Ā 
database
databasedatabase
database
Ā 
Types of databases
Types of databases   Types of databases
Types of databases
Ā 
Types of Database Models
Types of Database ModelsTypes of Database Models
Types of Database Models
Ā 
Operating system presentation
Operating system presentationOperating system presentation
Operating system presentation
Ā 
11 Database Concepts
11 Database Concepts11 Database Concepts
11 Database Concepts
Ā 
Presentation on Database management system
Presentation on Database management systemPresentation on Database management system
Presentation on Database management system
Ā 

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
Ā 
Unit 1.pptx
Unit 1.pptxUnit 1.pptx
Unit 1.pptxchatkall46
Ā 
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
Ā 
Unit 1 dbms
Unit 1 dbmsUnit 1 dbms
Unit 1 dbmsSweta Singh
Ā 
DBMS architecture &; system structure
DBMS architecture &; system  structureDBMS architecture &; system  structure
DBMS architecture &; system structureRUpaliLohar
Ā 
Dbms unit 1
Dbms unit 1Dbms unit 1
Dbms unit 1SaiGupta18
Ā 
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
Ā 
Unit 2 DATABASE ESSENTIALS.pptx
Unit 2 DATABASE ESSENTIALS.pptxUnit 2 DATABASE ESSENTIALS.pptx
Unit 2 DATABASE ESSENTIALS.pptxNirmalavenkatachalam
Ā 
DBMS-Unit-1.pptx
DBMS-Unit-1.pptxDBMS-Unit-1.pptx
DBMS-Unit-1.pptxBhavya304221
Ā 

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

Call Girls Kengeri Satellite Town Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Gir...
Call Girls Kengeri Satellite Town Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Gir...Call Girls Kengeri Satellite Town Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Gir...
Call Girls Kengeri Satellite Town Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Gir...amitlee9823
Ā 
Call Girls Electronic City Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Servi...
Call Girls Electronic City Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Servi...Call Girls Electronic City Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Servi...
Call Girls Electronic City Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Servi...amitlee9823
Ā 
Dr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdfDr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdfAdmir Softic
Ā 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756dollysharma2066
Ā 
Call Girls Jp Nagar Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Service Bang...Call Girls Jp Nagar Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Service Bang...amitlee9823
Ā 
Call Girls Hebbal Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Service BangaloreCall Girls Hebbal Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Service Bangaloreamitlee9823
Ā 
Katrina Personal Brand Project and portfolio 1
Katrina Personal Brand Project and portfolio 1Katrina Personal Brand Project and portfolio 1
Katrina Personal Brand Project and portfolio 1kcpayne
Ā 
John Halpern sued for sexual assault.pdf
John Halpern sued for sexual assault.pdfJohn Halpern sued for sexual assault.pdf
John Halpern sued for sexual assault.pdfAmzadHosen3
Ā 
Pharma Works Profile of Karan Communications
Pharma Works Profile of Karan CommunicationsPharma Works Profile of Karan Communications
Pharma Works Profile of Karan Communicationskarancommunications
Ā 
Chandigarh Escorts Service šŸ“ž8868886958šŸ“ž JustšŸ“² Call Nihal Chandigarh Call Girl...
Chandigarh Escorts Service šŸ“ž8868886958šŸ“ž JustšŸ“² Call Nihal Chandigarh Call Girl...Chandigarh Escorts Service šŸ“ž8868886958šŸ“ž JustšŸ“² Call Nihal Chandigarh Call Girl...
Chandigarh Escorts Service šŸ“ž8868886958šŸ“ž JustšŸ“² Call Nihal Chandigarh Call Girl...Sheetaleventcompany
Ā 
Call Girls From Pari Chowk Greater Noida ā¤ļø8448577510 āŠ¹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ā¤ļø8448577510 āŠ¹Best Escorts Service I...Call Girls From Pari Chowk Greater Noida ā¤ļø8448577510 āŠ¹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ā¤ļø8448577510 āŠ¹Best Escorts Service I...lizamodels9
Ā 
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdfRenandantas16
Ā 
Call Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine ServiceCall Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine Serviceritikaroy0888
Ā 
šŸ‘‰Chandigarh Call Girls šŸ‘‰9878799926šŸ‘‰Just CallšŸ‘‰Chandigarh Call Girl In Chandiga...
šŸ‘‰Chandigarh Call Girls šŸ‘‰9878799926šŸ‘‰Just CallšŸ‘‰Chandigarh Call Girl In Chandiga...šŸ‘‰Chandigarh Call Girls šŸ‘‰9878799926šŸ‘‰Just CallšŸ‘‰Chandigarh Call Girl In Chandiga...
šŸ‘‰Chandigarh Call Girls šŸ‘‰9878799926šŸ‘‰Just CallšŸ‘‰Chandigarh Call Girl In Chandiga...rajveerescorts2022
Ā 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableSeo
Ā 
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
Ā 
Cracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptxCracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptxWorkforce Group
Ā 
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...Dipal Arora
Ā 
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
Ā 
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
Ā 

Recently uploaded (20)

Call Girls Kengeri Satellite Town Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Gir...
Call Girls Kengeri Satellite Town Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Gir...Call Girls Kengeri Satellite Town Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Gir...
Call Girls Kengeri Satellite Town Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Gir...
Ā 
Call Girls Electronic City Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Servi...
Call Girls Electronic City Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Servi...Call Girls Electronic City Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Servi...
Call Girls Electronic City Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Servi...
Ā 
Dr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdfDr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdf
Ā 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
Ā 
Call Girls Jp Nagar Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Service Bang...Call Girls Jp Nagar Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Service Bang...
Call Girls Jp Nagar Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Service Bang...
Ā 
Call Girls Hebbal Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Service BangaloreCall Girls Hebbal Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call šŸ‘— 7737669865 šŸ‘— Top Class Call Girl Service Bangalore
Ā 
Katrina Personal Brand Project and portfolio 1
Katrina Personal Brand Project and portfolio 1Katrina Personal Brand Project and portfolio 1
Katrina Personal Brand Project and portfolio 1
Ā 
John Halpern sued for sexual assault.pdf
John Halpern sued for sexual assault.pdfJohn Halpern sued for sexual assault.pdf
John Halpern sued for sexual assault.pdf
Ā 
Pharma Works Profile of Karan Communications
Pharma Works Profile of Karan CommunicationsPharma Works Profile of Karan Communications
Pharma Works Profile of Karan Communications
Ā 
Chandigarh Escorts Service šŸ“ž8868886958šŸ“ž JustšŸ“² Call Nihal Chandigarh Call Girl...
Chandigarh Escorts Service šŸ“ž8868886958šŸ“ž JustšŸ“² Call Nihal Chandigarh Call Girl...Chandigarh Escorts Service šŸ“ž8868886958šŸ“ž JustšŸ“² Call Nihal Chandigarh Call Girl...
Chandigarh Escorts Service šŸ“ž8868886958šŸ“ž JustšŸ“² Call Nihal Chandigarh Call Girl...
Ā 
Call Girls From Pari Chowk Greater Noida ā¤ļø8448577510 āŠ¹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ā¤ļø8448577510 āŠ¹Best Escorts Service I...Call Girls From Pari Chowk Greater Noida ā¤ļø8448577510 āŠ¹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ā¤ļø8448577510 āŠ¹Best Escorts Service I...
Ā 
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
Ā 
Call Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine ServiceCall Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine Service
Ā 
šŸ‘‰Chandigarh Call Girls šŸ‘‰9878799926šŸ‘‰Just CallšŸ‘‰Chandigarh Call Girl In Chandiga...
šŸ‘‰Chandigarh Call Girls šŸ‘‰9878799926šŸ‘‰Just CallšŸ‘‰Chandigarh Call Girl In Chandiga...šŸ‘‰Chandigarh Call Girls šŸ‘‰9878799926šŸ‘‰Just CallšŸ‘‰Chandigarh Call Girl In Chandiga...
šŸ‘‰Chandigarh Call Girls šŸ‘‰9878799926šŸ‘‰Just CallšŸ‘‰Chandigarh Call Girl In Chandiga...
Ā 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Ā 
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
Ā 
Cracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptxCracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptx
Ā 
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...
Call Girls Navi Mumbai Just Call 9907093804 Top Class Call Girl Service Avail...
Ā 
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
Ā 
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...
Ā 

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