SlideShare a Scribd company logo
1 of 34
© 2009 Pearson Education, Inc.  Publishing as Prentice Hall© 2009 Pearson Education, Inc.  Publishing as Prentice Hall 11
Chapter 1:Chapter 1:
The Database EnvironmentThe Database Environment
Modern Database ManagementModern Database Management
99thth
EditionEdition
Jeffrey A. Hoffer, Mary B. Prescott,Jeffrey A. Hoffer, Mary B. Prescott,
Heikki TopiHeikki Topi
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 22
ObjectivesObjectives
 Definition of termsDefinition of terms
 Explain growth and importance of databasesExplain growth and importance of databases
 Name limitations of conventional file processingName limitations of conventional file processing
 Identify five categories of databasesIdentify five categories of databases
 Explain advantages of databasesExplain advantages of databases
 Identify costs and risks of databasesIdentify costs and risks of databases
 List components of database environmentList components of database environment
 Describe evolution of database systemsDescribe evolution of database systems
33
DefinitionsDefinitions
 DatabaseDatabase: organized collection of logically: organized collection of logically
related datarelated data
 DataData: stored representations of meaningful: stored representations of meaningful
objects and eventsobjects and events
 StructuredStructured: numbers, text, dates: numbers, text, dates
 UnstructuredUnstructured: images, video, documents: images, video, documents
 InformationInformation: data processed to increase: data processed to increase
knowledge in the person using the dataknowledge in the person using the data
 MetadataMetadata: data that describes the properties: data that describes the properties
and context of user dataand context of user data
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 44
Figure 1-1a Data in context
Context helps users understand data
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 55
Graphical displays turn data into useful
information that managers can use for
decision making and interpretation
Figure 1-1b Summarized data
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 66
Descriptions of the properties or characteristics of the
data, including data types, field sizes, allowable
values, and data context
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall
File-Based Systems (FBS)File-Based Systems (FBS)
77
FBS is a collection of application programs that perform
tasks where each program defines and manages its
own data.
Data
Entry
File
handling
File Def
User 1
Application Program 1 File1
Data
Entry
File
handling
File Def
User 2
Application Program 2 File 2
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 88
Disadvantages ofDisadvantages of File-Based Systems (FBS)File-Based Systems (FBS)
 Program-Data DependenceProgram-Data Dependence
 All programs maintain metadata for each file they useAll programs maintain metadata for each file they use
 Duplication of DataDuplication of Data
 Different systems/programs have separate copies of the same dataDifferent systems/programs have separate copies of the same data
 Limited Data SharingLimited Data Sharing
 No centralized control of dataNo centralized control of data
 Lengthy Development TimesLengthy Development Times
 Programmers must design their own file formatsProgrammers must design their own file formats
 Excessive Program MaintenanceExcessive Program Maintenance
 80% of information systems budget80% of information systems budget
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 99
Problems with Data DependencyProblems with Data Dependency
 Each application programmer must maintainEach application programmer must maintain
his/her own datahis/her own data
 Each application program needs to includeEach application program needs to include
code for the metadata of each filecode for the metadata of each file
 Each application program must have its ownEach application program must have its own
processing routines for reading, inserting,processing routines for reading, inserting,
updating, and deleting dataupdating, and deleting data
 Lack of coordination and central controlLack of coordination and central control
 Non-standard file formatsNon-standard file formats
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall
1010
Duplicate Data
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 1111
Problems with DataProblems with Data
RedundancyRedundancy
 Waste of space to have duplicate dataWaste of space to have duplicate data
 Causes more maintenance headachesCauses more maintenance headaches
 The biggest problem:The biggest problem:
 Data changes in one file couldData changes in one file could
cause inconsistenciescause inconsistencies
 Compromises inCompromises in data integritydata integrity
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 1212
SOLUTION:SOLUTION:
The DATABASE ApproachThe DATABASE Approach
 Central repository of shared dataCentral repository of shared data
 Data is managed by a controllingData is managed by a controlling
agentagent
 Stored in a standardized, convenientStored in a standardized, convenient
formform
Requires a Database Management System (DBMS)
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 1313
Database ManagementDatabase Management
SystemSystem
DBMS manages data resources like an operating system manages hardware
resources
 A software system that is used to create, maintain, and provide
controlled access to user databases
Order Filing
System
Invoicing
System
Payroll
System
DBMS
Central database
Contains employee,
order, inventory,
pricing, and
customer data
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 1414
Advantages of the Database ApproachAdvantages of the Database Approach
 Program-data independenceProgram-data independence
 Planned data redundancyPlanned data redundancy
 Improved data consistencyImproved data consistency
 Improved data sharingImproved data sharing
 Increased application development productivityIncreased application development productivity
 Enforcement of standardsEnforcement of standards
 Improved data qualityImproved data quality
 Improved data accessibility and responsivenessImproved data accessibility and responsiveness
 Reduced program maintenanceReduced program maintenance
 Improved decision supportImproved decision support
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 1515
Costs and Risks of the DatabaseCosts and Risks of the Database
ApproachApproach
 New, specialized personnelNew, specialized personnel
 Installation and management cost andInstallation and management cost and
complexitycomplexity
 Conversion costsConversion costs
 Need for explicit backup and recoveryNeed for explicit backup and recovery
 Organizational conflictOrganizational conflict
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 1616
Elements of the DatabaseElements of the Database
ApproachApproach
 Data modelsData models
 Graphical system capturing nature and relationship of dataGraphical system capturing nature and relationship of data
 Enterprise Data Model–high-level entities and relationships forEnterprise Data Model–high-level entities and relationships for
the organizationthe organization
 Project Data Model–more detailed view, matching data structureProject Data Model–more detailed view, matching data structure
in database or data warehousein database or data warehouse
 Relational DatabasesRelational Databases
 Database technology involving tables (relations) representingDatabase technology involving tables (relations) representing
entities and primary/foreign keys representing relationshipsentities and primary/foreign keys representing relationships
 Use of Internet TechnologyUse of Internet Technology
 Networks and telecommunications, distributed databases, client-Networks and telecommunications, distributed databases, client-
server, and 3-tier architecturesserver, and 3-tier architectures
 Database ApplicationsDatabase Applications
 Application programs used to perform database activitiesApplication programs used to perform database activities
(create, read, update, and delete) for database users(create, read, update, and delete) for database users
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 1717
Segment of an enterprise data model
Segment of a project-level data model
Figure 1-2 Comparison of enterprise and project level data models
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 1818
One customer
may place many
orders, but each
order is placed by
a single customer
 One-to-many
relationship
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 1919
One order has
many order lines;
each order line is
associated with a
single order
 One-to-many
relationship
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 2020
One product can
be in many
order lines, each
order line refers
to a single
product
 One-to-many
relationship
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 2121
Therefore, one
order involves
many products
and one product is
involved in many
orders
 Many-to-many
relationship
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 2222
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 2323
Figure 1-5 Components of the Database Environment
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 2424
Components of theComponents of the
Database EnvironmentDatabase Environment
 CASE ToolsCASE Tools––computer-aided software engineeringcomputer-aided software engineering
 RepositoryRepository––centralized storehouse of metadatacentralized storehouse of metadata
 Database Management System (DBMS)Database Management System (DBMS) ––
software for managing the databasesoftware for managing the database
 DatabaseDatabase––storehouse of the datastorehouse of the data
 Application ProgramsApplication Programs ––software using the datasoftware using the data
 User InterfaceUser Interface––text and graphical displays to userstext and graphical displays to users
 Data/Database AdministratorsData/Database Administrators ––personnelpersonnel
responsible for maintaining the databaseresponsible for maintaining the database
 System DevelopersSystem Developers ––personnel responsible forpersonnel responsible for
designing databases and softwaredesigning databases and software
 End UsersEnd Users––people who use the applications andpeople who use the applications and
databasesdatabases
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 2525
The Range of Database ApplicationsThe Range of Database Applications
 Personal databasesPersonal databases
 Workgroup databasesWorkgroup databases
 Departmental/divisional databasesDepartmental/divisional databases
 Enterprise databaseEnterprise database
 Enterprise resource planning (ERP) systemsEnterprise resource planning (ERP) systems
 Data warehousing implementationsData warehousing implementations
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 2626
Table 1-6 Summary of Database Applications
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 2727
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 2828
Figure 1-7 Workgroup database with wireless
local area network
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 2929
Enterprise Database ApplicationsEnterprise Database Applications
 Enterprise Resource Planning (ERP)Enterprise Resource Planning (ERP)
 Integrate all enterprise functionsIntegrate all enterprise functions
(manufacturing, finance, sales, marketing,(manufacturing, finance, sales, marketing,
inventory, accounting, human resources)inventory, accounting, human resources)
 Data WarehouseData Warehouse
 Integrated decision support system derivedIntegrated decision support system derived
from various operational databasesfrom various operational databases
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 3030
Figure 1-8 An enterprise data warehouse
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 3131
Web-Enabled DatabasesWeb-Enabled Databases
 Web applications requiring databasesWeb applications requiring databases
 Customer relationship management (CRM)Customer relationship management (CRM)
 Business-to-consumer (B2C)Business-to-consumer (B2C)
 Electronic data interchange (EDI)Electronic data interchange (EDI)
 Private intranetsPrivate intranets
 XML-defined Web servicesXML-defined Web services
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 3232
Web-Enabled Databases (cont.)Web-Enabled Databases (cont.)
 Issues to considerIssues to consider
 Which technologies to use?Which technologies to use?
 Security/privacy protectionSecurity/privacy protection
 Managing huge volumes of data from InternetManaging huge volumes of data from Internet
transactionstransactions
 Maintaining data qualityMaintaining data quality
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 3333
Figure 1-9 Evolution of database technologies
Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 3434
All rights reserved. No part of this publication may be reproduced, stored in a
retrieval system, or transmitted, in any form or by any means, electronic,
mechanical, photocopying, recording, or otherwise, without the prior written
permission of the publisher. Printed in the United States of America.
Copyright © 2009 Pearson Education, Inc.  Publishing as Prentice HallCopyright © 2009 Pearson Education, Inc.  Publishing as Prentice Hall

More Related Content

Similar to Database Environment Chapter Overview

File system-and-database-chapter01-connoly
File system-and-database-chapter01-connolyFile system-and-database-chapter01-connoly
File system-and-database-chapter01-connolyTemma Tems
 
Chapter 1The Database Environment and Development ProcessMo.docx
Chapter 1The Database Environment and Development ProcessMo.docxChapter 1The Database Environment and Development ProcessMo.docx
Chapter 1The Database Environment and Development ProcessMo.docxcravennichole326
 
Ch 1 D B Environment
Ch 1  D B  EnvironmentCh 1  D B  Environment
Ch 1 D B Environmentguest8fdbdd
 
Database Design and Developlment basics.pptx
Database Design and Developlment basics.pptxDatabase Design and Developlment basics.pptx
Database Design and Developlment basics.pptxMungaiKagechu
 
Preparing for BIT – IT2301 Database Management Systems 2001b
Preparing for BIT – IT2301 Database Management Systems 2001bPreparing for BIT – IT2301 Database Management Systems 2001b
Preparing for BIT – IT2301 Database Management Systems 2001bGihan Wikramanayake
 
The Database Environment Chapter 1
The Database Environment Chapter 1The Database Environment Chapter 1
The Database Environment Chapter 1Jeanie Arnoco
 
Application Consolidation and Retirement
Application Consolidation and RetirementApplication Consolidation and Retirement
Application Consolidation and RetirementIBM Analytics
 
Chapter 1 Database Systems.pptx
Chapter 1 Database Systems.pptxChapter 1 Database Systems.pptx
Chapter 1 Database Systems.pptxMaxamedAbiib1
 
DBMS Lec 1 & 2.ppt
DBMS Lec 1 & 2.pptDBMS Lec 1 & 2.ppt
DBMS Lec 1 & 2.pptMariaEmaan1
 
Data processing in Industrial Systems course notes after week 5
Data processing in Industrial Systems course notes after week 5Data processing in Industrial Systems course notes after week 5
Data processing in Industrial Systems course notes after week 5Ufuk Cebeci
 
Database Presentation
Database PresentationDatabase Presentation
Database Presentationa9oolq8
 
IBM Aspera In Life Sciences
IBM Aspera In Life SciencesIBM Aspera In Life Sciences
IBM Aspera In Life SciencesChris Shaw
 
Dbms environment and components ppt.pptx
Dbms environment and components ppt.pptxDbms environment and components ppt.pptx
Dbms environment and components ppt.pptxRITIKRAJ437758
 

Similar to Database Environment Chapter Overview (20)

File system-and-database-chapter01-connoly
File system-and-database-chapter01-connolyFile system-and-database-chapter01-connoly
File system-and-database-chapter01-connoly
 
Lecture2 is331 data&infomanag(databaseenv)
Lecture2 is331 data&infomanag(databaseenv)Lecture2 is331 data&infomanag(databaseenv)
Lecture2 is331 data&infomanag(databaseenv)
 
Chapter 1The Database Environment and Development ProcessMo.docx
Chapter 1The Database Environment and Development ProcessMo.docxChapter 1The Database Environment and Development ProcessMo.docx
Chapter 1The Database Environment and Development ProcessMo.docx
 
Ch01.ppt
Ch01.pptCh01.ppt
Ch01.ppt
 
DBMS
DBMSDBMS
DBMS
 
Ch 1 D B Environment
Ch 1  D B  EnvironmentCh 1  D B  Environment
Ch 1 D B Environment
 
Database Design and Developlment basics.pptx
Database Design and Developlment basics.pptxDatabase Design and Developlment basics.pptx
Database Design and Developlment basics.pptx
 
Database Management System 1
Database Management System 1Database Management System 1
Database Management System 1
 
Db lecture 1
Db lecture 1Db lecture 1
Db lecture 1
 
Preparing for BIT – IT2301 Database Management Systems 2001b
Preparing for BIT – IT2301 Database Management Systems 2001bPreparing for BIT – IT2301 Database Management Systems 2001b
Preparing for BIT – IT2301 Database Management Systems 2001b
 
Database System Concepts
Database System ConceptsDatabase System Concepts
Database System Concepts
 
The Database Environment Chapter 1
The Database Environment Chapter 1The Database Environment Chapter 1
The Database Environment Chapter 1
 
Application Consolidation and Retirement
Application Consolidation and RetirementApplication Consolidation and Retirement
Application Consolidation and Retirement
 
Chapter 1 Database Systems.pptx
Chapter 1 Database Systems.pptxChapter 1 Database Systems.pptx
Chapter 1 Database Systems.pptx
 
DBMS Lec 1 & 2.ppt
DBMS Lec 1 & 2.pptDBMS Lec 1 & 2.ppt
DBMS Lec 1 & 2.ppt
 
Data processing in Industrial Systems course notes after week 5
Data processing in Industrial Systems course notes after week 5Data processing in Industrial Systems course notes after week 5
Data processing in Industrial Systems course notes after week 5
 
Database 1 Introduction
Database 1   IntroductionDatabase 1   Introduction
Database 1 Introduction
 
Database Presentation
Database PresentationDatabase Presentation
Database Presentation
 
IBM Aspera In Life Sciences
IBM Aspera In Life SciencesIBM Aspera In Life Sciences
IBM Aspera In Life Sciences
 
Dbms environment and components ppt.pptx
Dbms environment and components ppt.pptxDbms environment and components ppt.pptx
Dbms environment and components ppt.pptx
 

Recently uploaded

Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsArshad QA
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...gurkirankumar98700
 
DNT_Corporate presentation know about us
DNT_Corporate presentation know about usDNT_Corporate presentation know about us
DNT_Corporate presentation know about usDynamic Netsoft
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxbodapatigopi8531
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AIABDERRAOUF MEHENNI
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantAxelRicardoTrocheRiq
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfjoe51371421
 
Clustering techniques data mining book ....
Clustering techniques data mining book ....Clustering techniques data mining book ....
Clustering techniques data mining book ....ShaimaaMohamedGalal
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️anilsa9823
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsAndolasoft Inc
 

Recently uploaded (20)

CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
Exploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the ProcessExploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the Process
 
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
(Genuine) Escort Service Lucknow | Starting ₹,5K To @25k with A/C 🧑🏽‍❤️‍🧑🏻 89...
 
DNT_Corporate presentation know about us
DNT_Corporate presentation know about usDNT_Corporate presentation know about us
DNT_Corporate presentation know about us
 
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS LiveVip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service Consultant
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdf
 
Clustering techniques data mining book ....
Clustering techniques data mining book ....Clustering techniques data mining book ....
Clustering techniques data mining book ....
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
 

Database Environment Chapter Overview

  • 1. © 2009 Pearson Education, Inc.  Publishing as Prentice Hall© 2009 Pearson Education, Inc.  Publishing as Prentice Hall 11 Chapter 1:Chapter 1: The Database EnvironmentThe Database Environment Modern Database ManagementModern Database Management 99thth EditionEdition Jeffrey A. Hoffer, Mary B. Prescott,Jeffrey A. Hoffer, Mary B. Prescott, Heikki TopiHeikki Topi
  • 2. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 22 ObjectivesObjectives  Definition of termsDefinition of terms  Explain growth and importance of databasesExplain growth and importance of databases  Name limitations of conventional file processingName limitations of conventional file processing  Identify five categories of databasesIdentify five categories of databases  Explain advantages of databasesExplain advantages of databases  Identify costs and risks of databasesIdentify costs and risks of databases  List components of database environmentList components of database environment  Describe evolution of database systemsDescribe evolution of database systems
  • 3. 33 DefinitionsDefinitions  DatabaseDatabase: organized collection of logically: organized collection of logically related datarelated data  DataData: stored representations of meaningful: stored representations of meaningful objects and eventsobjects and events  StructuredStructured: numbers, text, dates: numbers, text, dates  UnstructuredUnstructured: images, video, documents: images, video, documents  InformationInformation: data processed to increase: data processed to increase knowledge in the person using the dataknowledge in the person using the data  MetadataMetadata: data that describes the properties: data that describes the properties and context of user dataand context of user data
  • 4. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 44 Figure 1-1a Data in context Context helps users understand data
  • 5. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 55 Graphical displays turn data into useful information that managers can use for decision making and interpretation Figure 1-1b Summarized data
  • 6. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 66 Descriptions of the properties or characteristics of the data, including data types, field sizes, allowable values, and data context
  • 7. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall File-Based Systems (FBS)File-Based Systems (FBS) 77 FBS is a collection of application programs that perform tasks where each program defines and manages its own data. Data Entry File handling File Def User 1 Application Program 1 File1 Data Entry File handling File Def User 2 Application Program 2 File 2
  • 8. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 88 Disadvantages ofDisadvantages of File-Based Systems (FBS)File-Based Systems (FBS)  Program-Data DependenceProgram-Data Dependence  All programs maintain metadata for each file they useAll programs maintain metadata for each file they use  Duplication of DataDuplication of Data  Different systems/programs have separate copies of the same dataDifferent systems/programs have separate copies of the same data  Limited Data SharingLimited Data Sharing  No centralized control of dataNo centralized control of data  Lengthy Development TimesLengthy Development Times  Programmers must design their own file formatsProgrammers must design their own file formats  Excessive Program MaintenanceExcessive Program Maintenance  80% of information systems budget80% of information systems budget
  • 9. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 99 Problems with Data DependencyProblems with Data Dependency  Each application programmer must maintainEach application programmer must maintain his/her own datahis/her own data  Each application program needs to includeEach application program needs to include code for the metadata of each filecode for the metadata of each file  Each application program must have its ownEach application program must have its own processing routines for reading, inserting,processing routines for reading, inserting, updating, and deleting dataupdating, and deleting data  Lack of coordination and central controlLack of coordination and central control  Non-standard file formatsNon-standard file formats
  • 10. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 1010 Duplicate Data
  • 11. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 1111 Problems with DataProblems with Data RedundancyRedundancy  Waste of space to have duplicate dataWaste of space to have duplicate data  Causes more maintenance headachesCauses more maintenance headaches  The biggest problem:The biggest problem:  Data changes in one file couldData changes in one file could cause inconsistenciescause inconsistencies  Compromises inCompromises in data integritydata integrity
  • 12. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 1212 SOLUTION:SOLUTION: The DATABASE ApproachThe DATABASE Approach  Central repository of shared dataCentral repository of shared data  Data is managed by a controllingData is managed by a controlling agentagent  Stored in a standardized, convenientStored in a standardized, convenient formform Requires a Database Management System (DBMS)
  • 13. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 1313 Database ManagementDatabase Management SystemSystem DBMS manages data resources like an operating system manages hardware resources  A software system that is used to create, maintain, and provide controlled access to user databases Order Filing System Invoicing System Payroll System DBMS Central database Contains employee, order, inventory, pricing, and customer data
  • 14. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 1414 Advantages of the Database ApproachAdvantages of the Database Approach  Program-data independenceProgram-data independence  Planned data redundancyPlanned data redundancy  Improved data consistencyImproved data consistency  Improved data sharingImproved data sharing  Increased application development productivityIncreased application development productivity  Enforcement of standardsEnforcement of standards  Improved data qualityImproved data quality  Improved data accessibility and responsivenessImproved data accessibility and responsiveness  Reduced program maintenanceReduced program maintenance  Improved decision supportImproved decision support
  • 15. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 1515 Costs and Risks of the DatabaseCosts and Risks of the Database ApproachApproach  New, specialized personnelNew, specialized personnel  Installation and management cost andInstallation and management cost and complexitycomplexity  Conversion costsConversion costs  Need for explicit backup and recoveryNeed for explicit backup and recovery  Organizational conflictOrganizational conflict
  • 16. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 1616 Elements of the DatabaseElements of the Database ApproachApproach  Data modelsData models  Graphical system capturing nature and relationship of dataGraphical system capturing nature and relationship of data  Enterprise Data Model–high-level entities and relationships forEnterprise Data Model–high-level entities and relationships for the organizationthe organization  Project Data Model–more detailed view, matching data structureProject Data Model–more detailed view, matching data structure in database or data warehousein database or data warehouse  Relational DatabasesRelational Databases  Database technology involving tables (relations) representingDatabase technology involving tables (relations) representing entities and primary/foreign keys representing relationshipsentities and primary/foreign keys representing relationships  Use of Internet TechnologyUse of Internet Technology  Networks and telecommunications, distributed databases, client-Networks and telecommunications, distributed databases, client- server, and 3-tier architecturesserver, and 3-tier architectures  Database ApplicationsDatabase Applications  Application programs used to perform database activitiesApplication programs used to perform database activities (create, read, update, and delete) for database users(create, read, update, and delete) for database users
  • 17. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 1717 Segment of an enterprise data model Segment of a project-level data model Figure 1-2 Comparison of enterprise and project level data models
  • 18. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 1818 One customer may place many orders, but each order is placed by a single customer  One-to-many relationship
  • 19. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 1919 One order has many order lines; each order line is associated with a single order  One-to-many relationship
  • 20. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 2020 One product can be in many order lines, each order line refers to a single product  One-to-many relationship
  • 21. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 2121 Therefore, one order involves many products and one product is involved in many orders  Many-to-many relationship
  • 22. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 2222
  • 23. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 2323 Figure 1-5 Components of the Database Environment
  • 24. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 2424 Components of theComponents of the Database EnvironmentDatabase Environment  CASE ToolsCASE Tools––computer-aided software engineeringcomputer-aided software engineering  RepositoryRepository––centralized storehouse of metadatacentralized storehouse of metadata  Database Management System (DBMS)Database Management System (DBMS) –– software for managing the databasesoftware for managing the database  DatabaseDatabase––storehouse of the datastorehouse of the data  Application ProgramsApplication Programs ––software using the datasoftware using the data  User InterfaceUser Interface––text and graphical displays to userstext and graphical displays to users  Data/Database AdministratorsData/Database Administrators ––personnelpersonnel responsible for maintaining the databaseresponsible for maintaining the database  System DevelopersSystem Developers ––personnel responsible forpersonnel responsible for designing databases and softwaredesigning databases and software  End UsersEnd Users––people who use the applications andpeople who use the applications and databasesdatabases
  • 25. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 2525 The Range of Database ApplicationsThe Range of Database Applications  Personal databasesPersonal databases  Workgroup databasesWorkgroup databases  Departmental/divisional databasesDepartmental/divisional databases  Enterprise databaseEnterprise database  Enterprise resource planning (ERP) systemsEnterprise resource planning (ERP) systems  Data warehousing implementationsData warehousing implementations
  • 26. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 2626 Table 1-6 Summary of Database Applications
  • 27. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 2727
  • 28. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 2828 Figure 1-7 Workgroup database with wireless local area network
  • 29. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 2929 Enterprise Database ApplicationsEnterprise Database Applications  Enterprise Resource Planning (ERP)Enterprise Resource Planning (ERP)  Integrate all enterprise functionsIntegrate all enterprise functions (manufacturing, finance, sales, marketing,(manufacturing, finance, sales, marketing, inventory, accounting, human resources)inventory, accounting, human resources)  Data WarehouseData Warehouse  Integrated decision support system derivedIntegrated decision support system derived from various operational databasesfrom various operational databases
  • 30. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 3030 Figure 1-8 An enterprise data warehouse
  • 31. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 3131 Web-Enabled DatabasesWeb-Enabled Databases  Web applications requiring databasesWeb applications requiring databases  Customer relationship management (CRM)Customer relationship management (CRM)  Business-to-consumer (B2C)Business-to-consumer (B2C)  Electronic data interchange (EDI)Electronic data interchange (EDI)  Private intranetsPrivate intranets  XML-defined Web servicesXML-defined Web services
  • 32. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 3232 Web-Enabled Databases (cont.)Web-Enabled Databases (cont.)  Issues to considerIssues to consider  Which technologies to use?Which technologies to use?  Security/privacy protectionSecurity/privacy protection  Managing huge volumes of data from InternetManaging huge volumes of data from Internet transactionstransactions  Maintaining data qualityMaintaining data quality
  • 33. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 3333 Figure 1-9 Evolution of database technologies
  • 34. Chapter 1 © 2009 Pearson Education, Inc. Publishing as Prentice Hall© 2009 Pearson Education, Inc. Publishing as Prentice Hall 3434 All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise, without the prior written permission of the publisher. Printed in the United States of America. Copyright © 2009 Pearson Education, Inc.  Publishing as Prentice HallCopyright © 2009 Pearson Education, Inc.  Publishing as Prentice Hall

Editor's Notes

  1. is the structured transmission of data between organizations by electronic means. It is used to transfer electronic documents or business data from one computer system to another computer system, i.e. from one trading partner to another trading partner without human intervention.