Разделы презентаций


Database Systems

Содержание

ObjectivesThe difference between data and informationWhat a database is, what the different types of databases are, and why they are valuable assets for decision makingThe importance of database designHow modern databases

Слайды и текст этой презентации

Слайд 1Database Systems

Database Systems

Слайд 2Objectives
The difference between data and information
What a database is, what

the different types of databases are, and why they are

valuable assets for decision making
The importance of database design
How modern databases evolved from file systems
About flaws in file system data management
What the database system’s main components are and how a database system differs from a file system
The main functions of a database management system (DBMS)
ObjectivesThe difference between data and informationWhat a database is, what the different types of databases are, and

Слайд 3Data vs. Information
Data:
Raw facts; building blocks of information
Unprocessed information
Information:
Data processed

to reveal meaning
Accurate, relevant, and timely information is key to

good decision making
Good decision making is the key to survival in a global environment
Data vs. InformationData:Raw facts; building blocks of informationUnprocessed informationInformation:Data processed to reveal meaningAccurate, relevant, and timely information

Слайд 4Introducing the Database and the DBMS
Database—shared, integrated computer structure that

stores:
End user data (raw facts)
Metadata (data about data)

Introducing the Database  and the DBMSDatabase—shared, integrated computer structure that stores:End user data (raw facts)Metadata (data

Слайд 5Introducing the Database and the DBMS (continued)
DBMS (database management system):
Collection

of programs that manages database structure and controls access to

data
Possible to share data among multiple applications or users
Makes data management more efficient and effective
Introducing the Database and the DBMS (continued)DBMS (database management system):Collection of programs that manages database structure and

Слайд 6Role and Advantages of the DBMS (continued)
End users have better

access to more and better-managed data
Promotes integrated view of organization’s

operations
Probability of data inconsistency is greatly reduced
Possible to produce quick answers to ad hoc queries
Role and Advantages of the DBMS (continued)End users have better access to more and better-managed dataPromotes integrated

Слайд 7Types of Databases
Single-user:
Supports only one user at a time
Desktop:
Single-user database

running on a personal computer
Multi-user:
Supports multiple users at the same

time
Types of DatabasesSingle-user:Supports only one user at a timeDesktop:Single-user database running on a personal computerMulti-user:Supports multiple users

Слайд 8Types of Databases (continued)
Workgroup:
Multi-user database that supports a small group

of users or a single department
Enterprise:
Multi-user database that supports a

large group of users or an entire organization
Types of Databases (continued)Workgroup:Multi-user database that supports a small group of users or a single departmentEnterprise:Multi-user database

Слайд 9Types of Databases (continued)
Can be classified by location:
Centralized:
Supports data located

at a single site
Distributed:
Supports data distributed across several sites

Types of Databases (continued)Can be classified by location:Centralized:Supports data located at a single siteDistributed:Supports data distributed across

Слайд 10Types of Databases (continued)
Can be classified by use:
Transactional (or production):
Supports

a company’s day-to-day operations
Data warehouse:
Stores data used to generate information

required to make tactical or strategic decisions
Often used to store historical data
Structure is quite different
Types of Databases (continued)Can be classified by use:Transactional (or production):Supports a company’s day-to-day operationsData warehouse:Stores data used

Слайд 11Why Database Design is Important
Defines the database’s expected use
Different approach

needed for different types of databases
Avoid redundant data
Poorly designed database

generates errors  leads to bad decisions  can lead to failure of organization
Why Database Design is ImportantDefines the database’s expected useDifferent approach needed for different types of databasesAvoid redundant

Слайд 12Historical Roots: Files and File Systems
Managing data with file systems

is obsolete
Understanding file system characteristics makes database design easier to

understand
Awareness of problems with file systems helps prevent similar problems in DBMS
Knowledge of file systems is helpful if you plan to convert an obsolete file system to a DBMS
Historical Roots: Files and File SystemsManaging data with file systems is obsoleteUnderstanding file system characteristics makes database

Слайд 13Historical Roots: Files and File Systems (continued)
Manual File systems:
Collection

of file folders kept in file cabinet
Organization within folders based

on data’s expected use (ideally logically related)
System adequate for small amounts of data with few reporting requirements
Finding and using data in growing collections of file folders became time-consuming and cumbersome
Historical Roots: Files and File Systems (continued)  Manual File systems:Collection of file folders kept in file

Слайд 14Historical Roots: Files and File Systems (continued)
Conversion from manual

to computer system:
Could be technically complex, requiring hiring of data

processing (DP) specialists
Resulted in numerous “home-grown” systems being created
Initially, computer files were similar in design to manual files
Historical Roots: Files and File Systems (continued)  Conversion from manual to computer system:Could be technically complex,

Слайд 15Historical Roots: Files and File Systems (continued)

Historical Roots: Files and File Systems (continued)

Слайд 16Historical Roots: Files and File Systems (continued)

Historical Roots: Files and File Systems (continued)

Слайд 17Historical Roots: Files and File Systems (continued)
DP specialist wrote

programs for reports:
Monthly summaries of types and amounts of insurance

sold by agents
Monthly reports about which customers should be contacted for renewal
Reports that analyzed ratios of insurance types sold by agent
Customer contact letters summarizing coverage
Historical Roots: Files and File Systems (continued)  DP specialist wrote programs for reports:Monthly summaries of types

Слайд 18Historical Roots: Files and File Systems (continued)
Other departments requested

databases be written for them
SALES database created for sales department
AGENT

database created for personnel department
Historical Roots: Files and File Systems (continued)  Other departments requested databases be written for themSALES database

Слайд 19Historical Roots: Files and File Systems (continued)
As number of

databases increased, small file system evolved
Each file used its own

application programs
Each file was owned by individual or department who commissioned its creation
Historical Roots: Files and File Systems (continued)  As number of databases increased, small file system evolvedEach

Слайд 20Historical Roots: Files and File Systems (continued)

Historical Roots: Files and File Systems (continued)

Слайд 21Structural and Data Dependence
Structural dependence
Access to a file depends on

its structure
Data dependence
Changes in the data storage characteristics without affecting

the application program’s ability to access the data
Logical data format
How the human being views the data
Physical data format
How the computer “sees” the data
Structural and Data DependenceStructural dependenceAccess to a file depends on its structureData dependenceChanges in the data storage

Слайд 22Data Redundancy
Data redundancy results in data inconsistency
Different and conflicting versions

of the same data appear in different places
Errors more likely

to occur when complex entries are made in several different files and/or recur frequently in one or more files
Data anomalies develop when required changes in redundant data are not made successfully
Data RedundancyData redundancy results in data inconsistencyDifferent and conflicting versions of the same data appear in different

Слайд 23Data Redundancy
Types of data anomalies:
Update anomalies
Occur when changes must be

made to existing records
Insertion anomalies
Occur when entering new records
Deletion anomalies
Occur

when deleting records
Data RedundancyTypes of data anomalies:Update anomaliesOccur when changes must be made to existing recordsInsertion anomaliesOccur when entering

Слайд 24Database Systems
Problems inherent in file systems make using a database

system desirable
File system
Many separate and unrelated files
Database
Logically related data

stored in a single logical data repository
Database SystemsProblems inherent in file systems make using a database system desirableFile systemMany separate and unrelated filesDatabase

Слайд 25Database Systems

Database Systems

Слайд 26The Database System Environment
Database system is composed of five

main parts:
Hardware
Software
Operating system software
DBMS software
Application programs and utility software
People
Procedures
Data

The Database System EnvironmentDatabase system is composed of five   main parts:HardwareSoftwareOperating system softwareDBMS softwareApplication programs

Слайд 27The Database System Environment (continued)

The Database System Environment (continued)

Слайд 28DBMS Functions
DBMS performs functions that guarantee integrity and consistency of

data
Data dictionary management
defines data elements and their relationships
Data storage management
stores

data and related data entry forms, report definitions, etc.
DBMS FunctionsDBMS performs functions that guarantee integrity and consistency of dataData dictionary managementdefines data elements and their

Слайд 29DBMS Functions (continued)
Data transformation and presentation
translates logical requests into commands

to physically locate and retrieve the requested data
Security management
enforces user

security and data privacy within database
DBMS Functions (continued)Data transformation and presentationtranslates logical requests into commands to physically locate and retrieve the requested

Слайд 30DBMS Functions (continued)
Multiuser access control
uses sophisticated algorithms to ensure multiple

users can access the database concurrently without compromising the integrity

of the database
Backup and recovery management
provides backup and data recovery procedures
Data integrity management
promotes and enforces integrity rules
DBMS Functions (continued)Multiuser access controluses sophisticated algorithms to ensure multiple users can access the database concurrently without

Слайд 31DBMS Functions (continued)
Database access languages and application programming interfaces
provide data

access through a query language

Database communication interfaces
allow database to accept

end-user requests via multiple, different network environments
DBMS Functions (continued)Database access languages and application programming interfacesprovide data access through a query languageDatabase communication interfacesallow

Слайд 32DBMS Functions (continued)

DBMS Functions (continued)

Слайд 33Summary
Data are raw facts. Information is the result of processing

data to reveal its meaning.
To implement and manage a database,

use a DBMS.
Database design defines the database structure.
A well-designed database facilitates data management and generates accurate and valuable information.
A poorly designed database can lead to bad decision making, and bad decision making can lead to the failure of an organization.
SummaryData are raw facts. Information is the result of processing data to reveal its meaning.To implement and

Слайд 34Summary (continued)
Databases were preceded by file systems.
Limitations of file system

data management:
requires extensive programming
system administration complex and difficult
making changes

to existing structures is difficult
security features are likely to be inadequate
independent files tend to contain redundant data
DBMS’s were developed to address file systems’ inherent weaknesses
Summary (continued)Databases were preceded by file systems.Limitations of file system data management: requires extensive programmingsystem administration complex

Обратная связь

Если не удалось найти и скачать доклад-презентацию, Вы можете заказать его на нашем сайте. Мы постараемся найти нужный Вам материал и отправим по электронной почте. Не стесняйтесь обращаться к нам, если у вас возникли вопросы или пожелания:

Email: Нажмите что бы посмотреть 

Что такое TheSlide.ru?

Это сайт презентации, докладов, проектов в PowerPoint. Здесь удобно  хранить и делиться своими презентациями с другими пользователями.


Для правообладателей

Яндекс.Метрика