database management system. an information system is a model about some phenomena in the world - the...

32
Database Management System

Upload: arabella-may

Post on 23-Dec-2015

215 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

Database Management System

Page 2: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

• An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization)– retrieves, updates and deletes these facts– derives other facts from existing ones

Page 3: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

• Database: A database contains a collection of related items

or facts arranged in a specific structure. OR A shared collection of logically related data (and

a description of this data), designed to meet the organization needs.

The most obvious example of a non-

computerized database is a telephone directory.

Page 4: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

Three of the most important terms to know about database are:

• Fields

• Records

• Tables

Page 5: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

Types of Databases

• Operational Databases: (Transaction, production databases) (Example Customer, inventory, HR database)

• Distributed Databases (Any type of database)• External Databases (Commercial Online

services – Example full text databases)• Hypermedia Databases (Hyperlinked pages of

multimedia – set of interconnected multimedia pages at a website is a database of interrelated hypermedia page elements, rather then interrelated data records)

Page 6: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

DBMS:

• To make large collections of data useful, people and organizations use computers and an efficient data management system.

• A DBMS is a software tool that allows people to store, access, and process data or facts into useful information.

Page 7: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

Why Use a DBMS?

• Data independence and efficient access.

• Reduced application development time.

• Data integrity and security.

• Uniform data administration.

• Concurrent access, recovery from crashes.

Page 8: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

Functions of a DBMS Data storage, retrieval, update

A user-accessible catalog

Transaction support

Concurrency control

Recovery services

Authorization services

Support for data communication

Integrity services

Data independence

Utility services

Page 9: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

There are four essential elements of DBMS• A Modeling Language – Data Model (hierarchical, network,

relational and object models )• Data Structures (fields, records, files and objects) optimized to deal

with very large amounts of data stored on a permanent data storage device (which implies relatively slow access compared to volatile main memory).

• A database query language to allow users to interactively interrogate the database, analyze its data and update it according to the users privileges on data.

• Transaction Mechanism: This helps to allow multiple and concurrent access to the database by multiple users, prevents the manipulation of one record by two users at the same time, and preventing the creation of duplicate records.

Page 10: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

Purpose of Database Systems

• Data redundancy and inconsistency• Difficulty in accessing data• Data isolation – multiple files and formats• Integrity problems• Atomicity of updates• Concurrent access by multiple users• Security problems

Database management systems were developed to handle the following difficulties of typical file-processing systems supported by conventional operating systems:

Page 11: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

Database Structures / Models

Hierarchical Structure:

• Early mainframe DBMS packages used it.

• Relationships between records form a hierarchy or treelike structure.

• Root Record and subordinate levels.

• Relationship among records are 1:M

Page 12: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,
Page 13: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

Network Structure:

• Represents more logical relationships

• Allows M:N relationships among records

• Access to elements by several paths

• Data elements or record can be related to any number of other data elements.

Page 14: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,
Page 15: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

Relational Model:

• Most widely used.

• All data elements within database are viewed as being stored in the form of simple tables.

Page 16: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

RDBMS• A Relational database management system (RDBMS) is a

database management system (DBMS) that is based on the relational model as introduced by E. F. Codd

• A short definition of an RDBMS may be a DBMS in which data is stored in the form of tables and the relationship among the data is also stored in the form of tables.

• presented the data to the user as relations (a presentation in tabular form, i.e. as a collection of tables with each table consisting of a set of rows and columns)

• provided relational operators to manipulate the data in tabular form • Relationships can exist between different tables (1:1, 1:M, M:N)• Most popular commercial and open source databases currently in

use are based on the relational model.

Page 17: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

Entity-Relationship Model

Example of entity-relationship model

customer accountdepositor

social-security customer-street

customer-name

account-number

balancecustomer-city

Page 18: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

Relational Model

Example of tabular data in the relational model:

name ssn street city account-numberJohnson 192-83-7465 Alma Palo Alto A-101Smith 019-28-3746 North Rye A-215Johnson 192-83-7465 Alma Palo Alto A-201Jones 321-12-3123 Main Harrison A-217Smith 019-28-3746 North Rye A-201

account-number balanceA-101 500A-201 900A-215 700A-217 750

Page 19: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

Data Definition Language (DDL)

• A Data Definition Language (DDL) is a computer language for defining data structures.

• DDL compiler generates a set of tables stored in a data dictionary

• Data dictionary contains metadata (data about data)

• Create, Drop, Alter, Referential Integrity statements (Primary Key, Foreign Key)

• Example: CREATE TABLE employees ( id INTEGER PRIMARY KEY, first_name CHAR(50) NULL, last_name CHAR(75) NOT NULL, dateofbirth

DATE NULL );

Page 20: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

Data Manipulation Language (DML)

• is a family of computer languages used by computer programs or database users to retrieve, insert, delete and update data in a database.

• the most popular data manipulation language is that of SQL

• Select, Insert, Update, and Delete• Example: Select first_name from employees;

Page 21: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

Data Control Language (DCL)

• A Data Control Language (DCL) is a computer language and a subset of SQL, used to control access to data in a database.

• Examples of DCL commands include:• GRANT to allow specified users to perform

specified tasks. • to cancel previously granted or denied

permissions.

Page 22: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

Storage Management

• A storage manager is a program module that provides the interface between the low-level data stored in the database and the application programs and queries submitted to the system.

• The storage manager is responsible for the following tasks:– Interaction with the file manager– Efficient storing, retrieving, and updating of data

Page 23: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

Database Administrator• Coordinates all the activities of the database system;

the database administrator has a good understanding of the enterprise’s information resources and needs:

• Database administrator’s duties include:– Schema definition– Storage structure and access method definition– Schema and physical organization modification– Granting user authority to access the database– Specifying integrity constraints– Acting as liaison with users– Monitoring performance and responding to changes in

requirements

Page 24: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

Database Users• Users are differentiated by the way they

expect to interact with the system.• Application programmers: interact with

system through DML calls.• Specialized users: write specialized

database applications that do not fit into the traditional data processing framework

• Sophisticated users: form requests in a database query language.

• Naive users: invoke one of the permanent application programs that have been written previously

Page 25: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

Data Sharing in a Database Environment

reservation data loan data overdue

letters

reservation program

loan program

overdue loans program

reserv ation

loanbook

person

DATABASE MANAGEMENT

SYSTEM

Page 26: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

Advantages of Database Environment

• Sharing of data• Enforcement of security• Enforcement of development and maintenance

standards• Reduction of redundancy• Avoidance of inconsistency across files• Maintenance of integrity• Data independence

• Firm theoretical foundation (for the relational model)

Page 27: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

Disadvantages

• size

• complexity

• cost

• Additional hardware costs

• Higher impact of failure

• Recovery more difficult

Page 28: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

Data Planning and Database Design

• Database development involves data planning and database design activities

• Data models that support business processes are used to develop databases that meet the information needs of users.

Page 29: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,
Page 30: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

Database Design: Scenario

Page 31: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

Solution

Page 32: Database Management System. An Information system is a model about some phenomena in the world - the Universe of Discourse - (e.g. an organization) –retrieves,

A Simple scenario to Implement

Residency Accommodations have recently expanded there business. They provide Hotel rooms and private rooms in Houses / apartments. Their business processes are carried manually, thereby causing problems for managers to figure out daily reports covering different aspects of the business.

Initially as a prototype a simple information system is required for Residency Accommodations capable of holding records of customers, accommodation owners, accommodation bookings and details of each accommodation. The system is intended to handle day to day normal operations and to support managers specifically in identifying their customers, owners, bookings and accommodation details in form of printable system generated reports.