SlideShare una empresa de Scribd logo
1 de 31
Descargar para leer sin conexión
E. Wainright Martin  Carol V. Brown  Daniel W. DeHayes
Jeffrey A. Hoffer  William C. Perkins
MANAGING
INFORMATION
TECHNOLOGY
FIFTH EDITION
CHAPTER 5
THE DATA RESOURCE
© 2005 Pearson Prentice-Hall Chapter 5 - 2
 Organizations could not function long
without critical business data
 Cost to replace data would be very high
 Time to reconcile inconsistent data may
be too long
 Data often needs to be accessed quickly
WHY MANAGE DATA?
Page 135
© 2005 Pearson Prentice-Hall Chapter 5 - 3
 Data should be:
 Cataloged
 Named in standard ways
 Protected
 Accessible to those with a need to know
 Maintained with high quality
WHY MANAGE DATA?
Page 135
© 2005 Pearson Prentice-Hall Chapter 5 - 4
TECHNICAL ASPECTS OF
MANAGING THE DATA RESOURCE
Page 135
Data model –
overall map for business data needed to effectively
manage the data
The Data Model
© 2005 Pearson Prentice-Hall Chapter 5 - 5
Page 135
 Data modeling involves:
 Methodology, or steps followed to identify
and describe data entities
 Notation, or a way to illustrate data entities
graphically
The Data Model
TECHNICAL ASPECTS OF
MANAGING THE DATA RESOURCE
© 2005 Pearson Prentice-Hall Chapter 5 - 6
Page 135
 Entity-relationship diagram (ERD)
 Most common method for representing a
data model and organizational data needs
 Captures entities and their relationships
 Entities – things about which data are
collected
 Attributes – actual elements of data that are
to be collected
TECHNICAL ASPECTS OF
MANAGING THE DATA RESOURCE
The Data Model
© 2005 Pearson Prentice-Hall Chapter 5 - 7
Page 135
Figure 5.1 Entity-Relationship Diagram
NOTE:
• Entities are Customer, Order, and Product.
• Attributes of the Customer entity could be
customer last name, first name, street, city, …
TECHNICAL ASPECTS OF
MANAGING THE DATA RESOURCE
The Data Model
© 2005 Pearson Prentice-Hall Chapter 5 - 8
Page 136
 Enterprise modeling
 Top-down approach
 Describes organization and data
requirements at high level, independent of
reports, screens, or detailed specifications
 Not biased by how business operates today
TECHNICAL ASPECTS OF
MANAGING THE DATA RESOURCE
Data Modeling
© 2005 Pearson Prentice-Hall Chapter 5 - 9
Page 136
Enterprise Modeling Steps:
 Divide work into major
functions
 Divide each function into
processes
 Divide processes into
activities
 List data entities
assigned to each activity
 Identify relationships
between entities
TECHNICAL ASPECTS OF
MANAGING THE DATA RESOURCE
Data Modeling
Figure 5.2 Enterprise Decomposition
for Data Modeling
© 2005 Pearson Prentice-Hall Chapter 5 - 10
Page 136
 View integration
 Bottom-up approach
 Each report, screen, form, document
produced from databases first … each
called a user view
TECHNICAL ASPECTS OF
MANAGING THE DATA RESOURCE
Data Modeling
© 2005 Pearson Prentice-Hall Chapter 5 - 11
Page 136
View Integration Steps:
 Create user views
 Identify data elements in each user view and put into a
structure called a normal form
 Normalize user views
 Integrate set of entities from normalization into one
description
TECHNICAL ASPECTS OF
MANAGING THE DATA RESOURCE
Data Modeling
Normalization –
process of creating simple data structures from more complex
ones
© 2005 Pearson Prentice-Hall Chapter 5 - 12
Page 136-137
 Data modeling guidelines:
 Objective – effort must be justified by need
 Scope – broader scope, more chance of
failure
 Outcome – uncertainty leads to failure
 Timing – consider an evolutionary approach
TECHNICAL ASPECTS OF
MANAGING THE DATA RESOURCE
Data Modeling
© 2005 Pearson Prentice-Hall Chapter 5 - 13
Page 137
TECHNICAL ASPECTS OF
MANAGING THE DATA RESOURCE
Database Architecture
Database –
shared collection of logically related data, organized to
meet needs of an organization
Database Architecture –
way in which the data are structured and stored in the
database
© 2005 Pearson Prentice-Hall Chapter 5 - 14
Page 137
Figure 5.3 The Data Pyramid
© 2005 Pearson Prentice-Hall Chapter 5 - 15
Page 138
TECHNICAL ASPECTS OF
MANAGING THE DATA RESOURCE
 Six basic database architectures:
1. Hierarchical (top-down organization)
2. Network (high-volume transaction processing)
3. Relational (data arranged in simple tables)
4. Object-oriented (data and methods encapsulated in object
classes)
5. Object-relational (hybrid of relational and object-
oriented)
6. Multidimensional (used by data warehouses)
Database Architecture
© 2005 Pearson Prentice-Hall Chapter 5 - 16
Page 138
TECHNICAL ASPECTS OF
MANAGING THE DATA RESOURCE
Tools for Managing Data
Database Management System (DBMS) –
support software used to create, manage, and protect
organizational data
© 2005 Pearson Prentice-Hall Chapter 5 - 17
Page 139
TECHNICAL ASPECTS OF
MANAGING THE DATA RESOURCE
 A DBMS helps manage data by providing
seven functions:
1. Data storage, retrieval, update
2. Backup
3. Recovery
4. Integrity control
5. Security control
6. Concurrency control
7. Transaction control
Tools for Managing Data
© 2005 Pearson Prentice-Hall Chapter 5 - 18
Page 139
TECHNICAL ASPECTS OF
MANAGING THE DATA RESOURCE
 Most popular type of database architecture
is relational
 Not all relational systems are identical.
 Best effort to date for standardizing
relational databases is SQL
Tools for Managing Data
© 2005 Pearson Prentice-Hall Chapter 5 - 19
Page 139-140
TECHNICAL ASPECTS OF
MANAGING THE DATA RESOURCE
 Contains:
 Definition of each entity,
relationship, and data
element
 Display formats
 Integrity rules
 Security restrictions
 Volume and sizes
 List of applications that use
the data
Tools for Managing Data
Data Dictionary/Directory (DD/D) –
central encyclopedia of data definitions and usage
information … a database about data
© 2005 Pearson Prentice-Hall Chapter 5 - 20
Page 140
TECHNICAL ASPECTS OF
MANAGING THE DATA RESOURCE
Database Programming
Query language –
a 4 GL, nonprocedural programming language to obtain
data from a database, often provided by the DBMS
SQL query language example:
SELECT ORDER#, CUSTOMER#, CUSTNAME,
ORDER-DATE FROM CUSTOMER, ORDER
WHERE ORDER-DATE > ’04/12/05’
AND CUSTOMER.CUSTOMER# =
ORDER.CUSTOMER#
© 2005 Pearson Prentice-Hall Chapter 5 - 21
 The need to manage data is permanent
 Data can exist at several levels
 Application software should be separate from the
database
 Application software can be classified by how they
treat data
1. Data capture
2. Data transfer
3. Data analysis and presentation
MANAGERIAL ISSUES IN
MANAGING DATA
Page 140
Principles in Managing Data
© 2005 Pearson Prentice-Hall Chapter 5 - 22
Page 142
Figure 5.4
© 2005 Pearson Prentice-Hall Chapter 5 - 23
 Application software should be
considered disposable
 Data should be captured once
 There should be strict data standards
MANAGERIAL ISSUES IN
MANAGING DATA
Page 143
Principles in Managing Data
© 2005 Pearson Prentice-Hall Chapter 5 - 24
MANAGERIAL ISSUES IN
MANAGING DATA
Page 143
Principles in Managing Data
Figure 5.5 Types of Data Standards
© 2005 Pearson Prentice-Hall Chapter 5 - 25
MANAGERIAL ISSUES IN
MANAGING DATA
Page 144
The Data Management Process
Figure 5.6 Asset Management Functions
© 2005 Pearson Prentice-Hall Chapter 5 - 26
Page 146
Figure 5.7 The Data Warehouse
© 2005 Pearson Prentice-Hall Chapter 5 - 27
MANAGERIAL ISSUES IN
MANAGING DATA
 Organizations should have policies regarding:
Data ownership
Data administration
Page 148
Data Management Policies
© 2005 Pearson Prentice-Hall Chapter 5 - 28
MANAGERIAL ISSUES IN
MANAGING DATA
Page 148
Data Ownership
Corporate information policy –
foundation for managing the ownership of data
© 2005 Pearson Prentice-Hall Chapter 5 - 29
Page 149
Figure 5.8 Example Data Access Policy
© 2005 Pearson Prentice-Hall Chapter 5 - 30
Data Administration
Page 150
Key functions of the data administration group:
 Promote and control data sharing
 Analyze the impact of changes to application systems when data
definitions change
 Maintain the data dictionary
 Reduce redundant data and processing
 Reduce system maintenance costs and improve system
development productivity
 Improve quality and security of data
 Insure data integrity
MANAGERIAL ISSUES IN
MANAGING DATA
© 2005 Pearson Prentice-Hall Chapter 5 - 31
Data Administration
Page 150-151
Key functions of the database administrator (DBA):
 Tuning database management systems.
 Selection and evaluation of and training on database technology.
 Physical database design.
 Design of methods to recover from damage to databases.
 Physical placement of databases on specific computers and
storage devices.
 The interface of databases with telecommunications and other
technologies.
MANAGERIAL ISSUES IN
MANAGING DATA

Más contenido relacionado

Similar a 009445185.pdf

IBM InfoSphere Optim Solutions - Highlights
IBM InfoSphere Optim Solutions - HighlightsIBM InfoSphere Optim Solutions - Highlights
IBM InfoSphere Optim Solutions - HighlightsAdam Gartenberg
 
BI Masterclass slides (Reference Architecture v3)
BI Masterclass slides (Reference Architecture v3)BI Masterclass slides (Reference Architecture v3)
BI Masterclass slides (Reference Architecture v3)Syaifuddin Ismail
 
Modern database management jeffrey a. hoffer, mary b. prescott,
Modern database management   jeffrey a. hoffer, mary b. prescott,  Modern database management   jeffrey a. hoffer, mary b. prescott,
Modern database management jeffrey a. hoffer, mary b. prescott, BlackIce86
 
Enterprise Architecture
Enterprise Architecture Enterprise Architecture
Enterprise Architecture gdavie
 
turban_dss9e_ch05_unit1.ppt11111111111111111
turban_dss9e_ch05_unit1.ppt11111111111111111turban_dss9e_ch05_unit1.ppt11111111111111111
turban_dss9e_ch05_unit1.ppt11111111111111111prinecssjameela88888
 
Laudon_MIS13_ch06.ppt
Laudon_MIS13_ch06.pptLaudon_MIS13_ch06.ppt
Laudon_MIS13_ch06.pptanisur_rehman
 
CH005
CH005CH005
CH005JUC
 
Session 6 - Data resources and information management.ppt
Session 6 - Data resources and information management.pptSession 6 - Data resources and information management.ppt
Session 6 - Data resources and information management.pptENRIQUE EGLESIAS
 
Chap05 Data Resource Management
Chap05 Data Resource ManagementChap05 Data Resource Management
Chap05 Data Resource ManagementAqib Syed
 
Enterprise application
Enterprise applicationEnterprise application
Enterprise applicationancientsoul90
 
How Automation Can Improve Data Integrity and the Productivity of Data Stewards
How Automation Can Improve Data Integrity and the Productivity of Data StewardsHow Automation Can Improve Data Integrity and the Productivity of Data Stewards
How Automation Can Improve Data Integrity and the Productivity of Data StewardsPrecisely
 
Эволюция Big Data и Information Management. Reference Architecture.
Эволюция Big Data и Information Management. Reference Architecture.Эволюция Big Data и Information Management. Reference Architecture.
Эволюция Big Data и Information Management. Reference Architecture.Andrey Akulov
 
Managing Data Integration Initiatives
Managing Data Integration InitiativesManaging Data Integration Initiatives
Managing Data Integration InitiativesAllinConsulting
 
Targeted Analytics: Using Core Measures to Jump-Start Enterprise Analytics
Targeted Analytics: Using Core Measures to Jump-Start Enterprise AnalyticsTargeted Analytics: Using Core Measures to Jump-Start Enterprise Analytics
Targeted Analytics: Using Core Measures to Jump-Start Enterprise AnalyticsPerficient, Inc.
 

Similar a 009445185.pdf (20)

IBM InfoSphere Optim Solutions - Highlights
IBM InfoSphere Optim Solutions - HighlightsIBM InfoSphere Optim Solutions - Highlights
IBM InfoSphere Optim Solutions - Highlights
 
BI Masterclass slides (Reference Architecture v3)
BI Masterclass slides (Reference Architecture v3)BI Masterclass slides (Reference Architecture v3)
BI Masterclass slides (Reference Architecture v3)
 
Modern database management jeffrey a. hoffer, mary b. prescott,
Modern database management   jeffrey a. hoffer, mary b. prescott,  Modern database management   jeffrey a. hoffer, mary b. prescott,
Modern database management jeffrey a. hoffer, mary b. prescott,
 
Enterprise Architecture
Enterprise Architecture Enterprise Architecture
Enterprise Architecture
 
Database 1 Introduction
Database 1   IntroductionDatabase 1   Introduction
Database 1 Introduction
 
turban_dss9e_ch05_unit1.ppt11111111111111111
turban_dss9e_ch05_unit1.ppt11111111111111111turban_dss9e_ch05_unit1.ppt11111111111111111
turban_dss9e_ch05_unit1.ppt11111111111111111
 
Laudon_MIS13_ch06.ppt
Laudon_MIS13_ch06.pptLaudon_MIS13_ch06.ppt
Laudon_MIS13_ch06.ppt
 
DBMS
DBMSDBMS
DBMS
 
Chap05.ppt
Chap05.pptChap05.ppt
Chap05.ppt
 
Chapter 05
Chapter 05Chapter 05
Chapter 05
 
CH005
CH005CH005
CH005
 
Session 6 - Data resources and information management.ppt
Session 6 - Data resources and information management.pptSession 6 - Data resources and information management.ppt
Session 6 - Data resources and information management.ppt
 
Chap05 Data Resource Management
Chap05 Data Resource ManagementChap05 Data Resource Management
Chap05 Data Resource Management
 
Enterprise application
Enterprise applicationEnterprise application
Enterprise application
 
How Automation Can Improve Data Integrity and the Productivity of Data Stewards
How Automation Can Improve Data Integrity and the Productivity of Data StewardsHow Automation Can Improve Data Integrity and the Productivity of Data Stewards
How Automation Can Improve Data Integrity and the Productivity of Data Stewards
 
Ch 6.pdf
Ch 6.pdfCh 6.pdf
Ch 6.pdf
 
Эволюция Big Data и Information Management. Reference Architecture.
Эволюция Big Data и Information Management. Reference Architecture.Эволюция Big Data и Information Management. Reference Architecture.
Эволюция Big Data и Information Management. Reference Architecture.
 
Lecture 3 note.pptx
Lecture 3 note.pptxLecture 3 note.pptx
Lecture 3 note.pptx
 
Managing Data Integration Initiatives
Managing Data Integration InitiativesManaging Data Integration Initiatives
Managing Data Integration Initiatives
 
Targeted Analytics: Using Core Measures to Jump-Start Enterprise Analytics
Targeted Analytics: Using Core Measures to Jump-Start Enterprise AnalyticsTargeted Analytics: Using Core Measures to Jump-Start Enterprise Analytics
Targeted Analytics: Using Core Measures to Jump-Start Enterprise Analytics
 

Más de EidTahir

Servlets+JSP.ppt
Servlets+JSP.pptServlets+JSP.ppt
Servlets+JSP.pptEidTahir
 
servlets.ppt
servlets.pptservlets.ppt
servlets.pptEidTahir
 
005428058.pdf
005428058.pdf005428058.pdf
005428058.pdfEidTahir
 
005428055.pdf
005428055.pdf005428055.pdf
005428055.pdfEidTahir
 
2.J2EE_Overview.ppt
2.J2EE_Overview.ppt2.J2EE_Overview.ppt
2.J2EE_Overview.pptEidTahir
 
009458666.pdf
009458666.pdf009458666.pdf
009458666.pdfEidTahir
 
009921362.pdf
009921362.pdf009921362.pdf
009921362.pdfEidTahir
 
009577496.pdf
009577496.pdf009577496.pdf
009577496.pdfEidTahir
 
009478419.pdf
009478419.pdf009478419.pdf
009478419.pdfEidTahir
 
009705432.pdf
009705432.pdf009705432.pdf
009705432.pdfEidTahir
 
009694598.pdf
009694598.pdf009694598.pdf
009694598.pdfEidTahir
 
enterprisejavaunit-1chapter-2-210914075956.pdf
enterprisejavaunit-1chapter-2-210914075956.pdfenterprisejavaunit-1chapter-2-210914075956.pdf
enterprisejavaunit-1chapter-2-210914075956.pdfEidTahir
 
010118565.pdf
010118565.pdf010118565.pdf
010118565.pdfEidTahir
 
005528214.pdf
005528214.pdf005528214.pdf
005528214.pdfEidTahir
 
005432796.pdf
005432796.pdf005432796.pdf
005432796.pdfEidTahir
 
009586150.pdf
009586150.pdf009586150.pdf
009586150.pdfEidTahir
 
009551323.pdf
009551323.pdf009551323.pdf
009551323.pdfEidTahir
 
009723779.pdf
009723779.pdf009723779.pdf
009723779.pdfEidTahir
 
005443266.pdf
005443266.pdf005443266.pdf
005443266.pdfEidTahir
 

Más de EidTahir (20)

Servlets+JSP.ppt
Servlets+JSP.pptServlets+JSP.ppt
Servlets+JSP.ppt
 
servlets.ppt
servlets.pptservlets.ppt
servlets.ppt
 
005428058.pdf
005428058.pdf005428058.pdf
005428058.pdf
 
005428055.pdf
005428055.pdf005428055.pdf
005428055.pdf
 
DNS.pptx
DNS.pptxDNS.pptx
DNS.pptx
 
2.J2EE_Overview.ppt
2.J2EE_Overview.ppt2.J2EE_Overview.ppt
2.J2EE_Overview.ppt
 
009458666.pdf
009458666.pdf009458666.pdf
009458666.pdf
 
009921362.pdf
009921362.pdf009921362.pdf
009921362.pdf
 
009577496.pdf
009577496.pdf009577496.pdf
009577496.pdf
 
009478419.pdf
009478419.pdf009478419.pdf
009478419.pdf
 
009705432.pdf
009705432.pdf009705432.pdf
009705432.pdf
 
009694598.pdf
009694598.pdf009694598.pdf
009694598.pdf
 
enterprisejavaunit-1chapter-2-210914075956.pdf
enterprisejavaunit-1chapter-2-210914075956.pdfenterprisejavaunit-1chapter-2-210914075956.pdf
enterprisejavaunit-1chapter-2-210914075956.pdf
 
010118565.pdf
010118565.pdf010118565.pdf
010118565.pdf
 
005528214.pdf
005528214.pdf005528214.pdf
005528214.pdf
 
005432796.pdf
005432796.pdf005432796.pdf
005432796.pdf
 
009586150.pdf
009586150.pdf009586150.pdf
009586150.pdf
 
009551323.pdf
009551323.pdf009551323.pdf
009551323.pdf
 
009723779.pdf
009723779.pdf009723779.pdf
009723779.pdf
 
005443266.pdf
005443266.pdf005443266.pdf
005443266.pdf
 

Último

VVIP Pune Call Girls Warje (7001035870) Pune Escorts Nearby with Complete Sat...
VVIP Pune Call Girls Warje (7001035870) Pune Escorts Nearby with Complete Sat...VVIP Pune Call Girls Warje (7001035870) Pune Escorts Nearby with Complete Sat...
VVIP Pune Call Girls Warje (7001035870) Pune Escorts Nearby with Complete Sat...Call Girls in Nagpur High Profile
 
Top Rated Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Call Girls in Nagpur High Profile
 
VVIP Pune Call Girls Kalyani Nagar (7001035870) Pune Escorts Nearby with Comp...
VVIP Pune Call Girls Kalyani Nagar (7001035870) Pune Escorts Nearby with Comp...VVIP Pune Call Girls Kalyani Nagar (7001035870) Pune Escorts Nearby with Comp...
VVIP Pune Call Girls Kalyani Nagar (7001035870) Pune Escorts Nearby with Comp...Call Girls in Nagpur High Profile
 
Deira Dubai Escorts +0561951007 Escort Service in Dubai by Dubai Escort Girls
Deira Dubai Escorts +0561951007 Escort Service in Dubai by Dubai Escort GirlsDeira Dubai Escorts +0561951007 Escort Service in Dubai by Dubai Escort Girls
Deira Dubai Escorts +0561951007 Escort Service in Dubai by Dubai Escort GirlsEscorts Call Girls
 
(PARI) Alandi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(PARI) Alandi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(PARI) Alandi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(PARI) Alandi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝
Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝
Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
VIP Call Girls Dharwad 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Dharwad 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Dharwad 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Dharwad 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
(👉Ridhima)👉VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...
(👉Ridhima)👉VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...(👉Ridhima)👉VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...
(👉Ridhima)👉VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...motiram463
 
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)amitlee9823
 
Shikrapur Call Girls Most Awaited Fun 6297143586 High Profiles young Beautie...
Shikrapur Call Girls Most Awaited Fun  6297143586 High Profiles young Beautie...Shikrapur Call Girls Most Awaited Fun  6297143586 High Profiles young Beautie...
Shikrapur Call Girls Most Awaited Fun 6297143586 High Profiles young Beautie...tanu pandey
 
Top Rated Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Call Girls in Nagpur High Profile
 
VVIP Pune Call Girls Karve Nagar (7001035870) Pune Escorts Nearby with Comple...
VVIP Pune Call Girls Karve Nagar (7001035870) Pune Escorts Nearby with Comple...VVIP Pune Call Girls Karve Nagar (7001035870) Pune Escorts Nearby with Comple...
VVIP Pune Call Girls Karve Nagar (7001035870) Pune Escorts Nearby with Comple...Call Girls in Nagpur High Profile
 
Book Sex Workers Available Pune Call Girls Yerwada 6297143586 Call Hot India...
Book Sex Workers Available Pune Call Girls Yerwada  6297143586 Call Hot India...Book Sex Workers Available Pune Call Girls Yerwada  6297143586 Call Hot India...
Book Sex Workers Available Pune Call Girls Yerwada 6297143586 Call Hot India...Call Girls in Nagpur High Profile
 
9892124323 Pooja Nehwal Call Girls Services Call Girls service in Santacruz A...
9892124323 Pooja Nehwal Call Girls Services Call Girls service in Santacruz A...9892124323 Pooja Nehwal Call Girls Services Call Girls service in Santacruz A...
9892124323 Pooja Nehwal Call Girls Services Call Girls service in Santacruz A...Pooja Nehwal
 
NO1 Verified Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi A...
NO1 Verified Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi A...NO1 Verified Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi A...
NO1 Verified Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi A...Amil baba
 
Kalyan callg Girls, { 07738631006 } || Call Girl In Kalyan Women Seeking Men ...
Kalyan callg Girls, { 07738631006 } || Call Girl In Kalyan Women Seeking Men ...Kalyan callg Girls, { 07738631006 } || Call Girl In Kalyan Women Seeking Men ...
Kalyan callg Girls, { 07738631006 } || Call Girl In Kalyan Women Seeking Men ...Pooja Nehwal
 
Call Girls in Nagpur Sakshi Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Sakshi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Sakshi Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Sakshi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Kothanur Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
Kothanur Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...Kothanur Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
Kothanur Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...amitlee9823
 
Call Girls Kothrud Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Kothrud Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Kothrud Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Kothrud Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
(=Towel) Dubai Call Girls O525547819 Call Girls In Dubai (Fav0r)
(=Towel) Dubai Call Girls O525547819 Call Girls In Dubai (Fav0r)(=Towel) Dubai Call Girls O525547819 Call Girls In Dubai (Fav0r)
(=Towel) Dubai Call Girls O525547819 Call Girls In Dubai (Fav0r)kojalkojal131
 

Último (20)

VVIP Pune Call Girls Warje (7001035870) Pune Escorts Nearby with Complete Sat...
VVIP Pune Call Girls Warje (7001035870) Pune Escorts Nearby with Complete Sat...VVIP Pune Call Girls Warje (7001035870) Pune Escorts Nearby with Complete Sat...
VVIP Pune Call Girls Warje (7001035870) Pune Escorts Nearby with Complete Sat...
 
Top Rated Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Chakan ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
 
VVIP Pune Call Girls Kalyani Nagar (7001035870) Pune Escorts Nearby with Comp...
VVIP Pune Call Girls Kalyani Nagar (7001035870) Pune Escorts Nearby with Comp...VVIP Pune Call Girls Kalyani Nagar (7001035870) Pune Escorts Nearby with Comp...
VVIP Pune Call Girls Kalyani Nagar (7001035870) Pune Escorts Nearby with Comp...
 
Deira Dubai Escorts +0561951007 Escort Service in Dubai by Dubai Escort Girls
Deira Dubai Escorts +0561951007 Escort Service in Dubai by Dubai Escort GirlsDeira Dubai Escorts +0561951007 Escort Service in Dubai by Dubai Escort Girls
Deira Dubai Escorts +0561951007 Escort Service in Dubai by Dubai Escort Girls
 
(PARI) Alandi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(PARI) Alandi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(PARI) Alandi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(PARI) Alandi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝
Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝
Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝
 
VIP Call Girls Dharwad 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Dharwad 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Dharwad 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Dharwad 7001035870 Whatsapp Number, 24/07 Booking
 
(👉Ridhima)👉VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...
(👉Ridhima)👉VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...(👉Ridhima)👉VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...
(👉Ridhima)👉VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...
 
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
Shikrapur Call Girls Most Awaited Fun 6297143586 High Profiles young Beautie...
Shikrapur Call Girls Most Awaited Fun  6297143586 High Profiles young Beautie...Shikrapur Call Girls Most Awaited Fun  6297143586 High Profiles young Beautie...
Shikrapur Call Girls Most Awaited Fun 6297143586 High Profiles young Beautie...
 
Top Rated Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
 
VVIP Pune Call Girls Karve Nagar (7001035870) Pune Escorts Nearby with Comple...
VVIP Pune Call Girls Karve Nagar (7001035870) Pune Escorts Nearby with Comple...VVIP Pune Call Girls Karve Nagar (7001035870) Pune Escorts Nearby with Comple...
VVIP Pune Call Girls Karve Nagar (7001035870) Pune Escorts Nearby with Comple...
 
Book Sex Workers Available Pune Call Girls Yerwada 6297143586 Call Hot India...
Book Sex Workers Available Pune Call Girls Yerwada  6297143586 Call Hot India...Book Sex Workers Available Pune Call Girls Yerwada  6297143586 Call Hot India...
Book Sex Workers Available Pune Call Girls Yerwada 6297143586 Call Hot India...
 
9892124323 Pooja Nehwal Call Girls Services Call Girls service in Santacruz A...
9892124323 Pooja Nehwal Call Girls Services Call Girls service in Santacruz A...9892124323 Pooja Nehwal Call Girls Services Call Girls service in Santacruz A...
9892124323 Pooja Nehwal Call Girls Services Call Girls service in Santacruz A...
 
NO1 Verified Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi A...
NO1 Verified Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi A...NO1 Verified Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi A...
NO1 Verified Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi A...
 
Kalyan callg Girls, { 07738631006 } || Call Girl In Kalyan Women Seeking Men ...
Kalyan callg Girls, { 07738631006 } || Call Girl In Kalyan Women Seeking Men ...Kalyan callg Girls, { 07738631006 } || Call Girl In Kalyan Women Seeking Men ...
Kalyan callg Girls, { 07738631006 } || Call Girl In Kalyan Women Seeking Men ...
 
Call Girls in Nagpur Sakshi Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Sakshi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Sakshi Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Sakshi Call 7001035870 Meet With Nagpur Escorts
 
Kothanur Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
Kothanur Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...Kothanur Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
Kothanur Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
 
Call Girls Kothrud Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Kothrud Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Kothrud Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Kothrud Call Me 7737669865 Budget Friendly No Advance Booking
 
(=Towel) Dubai Call Girls O525547819 Call Girls In Dubai (Fav0r)
(=Towel) Dubai Call Girls O525547819 Call Girls In Dubai (Fav0r)(=Towel) Dubai Call Girls O525547819 Call Girls In Dubai (Fav0r)
(=Towel) Dubai Call Girls O525547819 Call Girls In Dubai (Fav0r)
 

009445185.pdf

  • 1. E. Wainright Martin  Carol V. Brown  Daniel W. DeHayes Jeffrey A. Hoffer  William C. Perkins MANAGING INFORMATION TECHNOLOGY FIFTH EDITION CHAPTER 5 THE DATA RESOURCE
  • 2. © 2005 Pearson Prentice-Hall Chapter 5 - 2  Organizations could not function long without critical business data  Cost to replace data would be very high  Time to reconcile inconsistent data may be too long  Data often needs to be accessed quickly WHY MANAGE DATA? Page 135
  • 3. © 2005 Pearson Prentice-Hall Chapter 5 - 3  Data should be:  Cataloged  Named in standard ways  Protected  Accessible to those with a need to know  Maintained with high quality WHY MANAGE DATA? Page 135
  • 4. © 2005 Pearson Prentice-Hall Chapter 5 - 4 TECHNICAL ASPECTS OF MANAGING THE DATA RESOURCE Page 135 Data model – overall map for business data needed to effectively manage the data The Data Model
  • 5. © 2005 Pearson Prentice-Hall Chapter 5 - 5 Page 135  Data modeling involves:  Methodology, or steps followed to identify and describe data entities  Notation, or a way to illustrate data entities graphically The Data Model TECHNICAL ASPECTS OF MANAGING THE DATA RESOURCE
  • 6. © 2005 Pearson Prentice-Hall Chapter 5 - 6 Page 135  Entity-relationship diagram (ERD)  Most common method for representing a data model and organizational data needs  Captures entities and their relationships  Entities – things about which data are collected  Attributes – actual elements of data that are to be collected TECHNICAL ASPECTS OF MANAGING THE DATA RESOURCE The Data Model
  • 7. © 2005 Pearson Prentice-Hall Chapter 5 - 7 Page 135 Figure 5.1 Entity-Relationship Diagram NOTE: • Entities are Customer, Order, and Product. • Attributes of the Customer entity could be customer last name, first name, street, city, … TECHNICAL ASPECTS OF MANAGING THE DATA RESOURCE The Data Model
  • 8. © 2005 Pearson Prentice-Hall Chapter 5 - 8 Page 136  Enterprise modeling  Top-down approach  Describes organization and data requirements at high level, independent of reports, screens, or detailed specifications  Not biased by how business operates today TECHNICAL ASPECTS OF MANAGING THE DATA RESOURCE Data Modeling
  • 9. © 2005 Pearson Prentice-Hall Chapter 5 - 9 Page 136 Enterprise Modeling Steps:  Divide work into major functions  Divide each function into processes  Divide processes into activities  List data entities assigned to each activity  Identify relationships between entities TECHNICAL ASPECTS OF MANAGING THE DATA RESOURCE Data Modeling Figure 5.2 Enterprise Decomposition for Data Modeling
  • 10. © 2005 Pearson Prentice-Hall Chapter 5 - 10 Page 136  View integration  Bottom-up approach  Each report, screen, form, document produced from databases first … each called a user view TECHNICAL ASPECTS OF MANAGING THE DATA RESOURCE Data Modeling
  • 11. © 2005 Pearson Prentice-Hall Chapter 5 - 11 Page 136 View Integration Steps:  Create user views  Identify data elements in each user view and put into a structure called a normal form  Normalize user views  Integrate set of entities from normalization into one description TECHNICAL ASPECTS OF MANAGING THE DATA RESOURCE Data Modeling Normalization – process of creating simple data structures from more complex ones
  • 12. © 2005 Pearson Prentice-Hall Chapter 5 - 12 Page 136-137  Data modeling guidelines:  Objective – effort must be justified by need  Scope – broader scope, more chance of failure  Outcome – uncertainty leads to failure  Timing – consider an evolutionary approach TECHNICAL ASPECTS OF MANAGING THE DATA RESOURCE Data Modeling
  • 13. © 2005 Pearson Prentice-Hall Chapter 5 - 13 Page 137 TECHNICAL ASPECTS OF MANAGING THE DATA RESOURCE Database Architecture Database – shared collection of logically related data, organized to meet needs of an organization Database Architecture – way in which the data are structured and stored in the database
  • 14. © 2005 Pearson Prentice-Hall Chapter 5 - 14 Page 137 Figure 5.3 The Data Pyramid
  • 15. © 2005 Pearson Prentice-Hall Chapter 5 - 15 Page 138 TECHNICAL ASPECTS OF MANAGING THE DATA RESOURCE  Six basic database architectures: 1. Hierarchical (top-down organization) 2. Network (high-volume transaction processing) 3. Relational (data arranged in simple tables) 4. Object-oriented (data and methods encapsulated in object classes) 5. Object-relational (hybrid of relational and object- oriented) 6. Multidimensional (used by data warehouses) Database Architecture
  • 16. © 2005 Pearson Prentice-Hall Chapter 5 - 16 Page 138 TECHNICAL ASPECTS OF MANAGING THE DATA RESOURCE Tools for Managing Data Database Management System (DBMS) – support software used to create, manage, and protect organizational data
  • 17. © 2005 Pearson Prentice-Hall Chapter 5 - 17 Page 139 TECHNICAL ASPECTS OF MANAGING THE DATA RESOURCE  A DBMS helps manage data by providing seven functions: 1. Data storage, retrieval, update 2. Backup 3. Recovery 4. Integrity control 5. Security control 6. Concurrency control 7. Transaction control Tools for Managing Data
  • 18. © 2005 Pearson Prentice-Hall Chapter 5 - 18 Page 139 TECHNICAL ASPECTS OF MANAGING THE DATA RESOURCE  Most popular type of database architecture is relational  Not all relational systems are identical.  Best effort to date for standardizing relational databases is SQL Tools for Managing Data
  • 19. © 2005 Pearson Prentice-Hall Chapter 5 - 19 Page 139-140 TECHNICAL ASPECTS OF MANAGING THE DATA RESOURCE  Contains:  Definition of each entity, relationship, and data element  Display formats  Integrity rules  Security restrictions  Volume and sizes  List of applications that use the data Tools for Managing Data Data Dictionary/Directory (DD/D) – central encyclopedia of data definitions and usage information … a database about data
  • 20. © 2005 Pearson Prentice-Hall Chapter 5 - 20 Page 140 TECHNICAL ASPECTS OF MANAGING THE DATA RESOURCE Database Programming Query language – a 4 GL, nonprocedural programming language to obtain data from a database, often provided by the DBMS SQL query language example: SELECT ORDER#, CUSTOMER#, CUSTNAME, ORDER-DATE FROM CUSTOMER, ORDER WHERE ORDER-DATE > ’04/12/05’ AND CUSTOMER.CUSTOMER# = ORDER.CUSTOMER#
  • 21. © 2005 Pearson Prentice-Hall Chapter 5 - 21  The need to manage data is permanent  Data can exist at several levels  Application software should be separate from the database  Application software can be classified by how they treat data 1. Data capture 2. Data transfer 3. Data analysis and presentation MANAGERIAL ISSUES IN MANAGING DATA Page 140 Principles in Managing Data
  • 22. © 2005 Pearson Prentice-Hall Chapter 5 - 22 Page 142 Figure 5.4
  • 23. © 2005 Pearson Prentice-Hall Chapter 5 - 23  Application software should be considered disposable  Data should be captured once  There should be strict data standards MANAGERIAL ISSUES IN MANAGING DATA Page 143 Principles in Managing Data
  • 24. © 2005 Pearson Prentice-Hall Chapter 5 - 24 MANAGERIAL ISSUES IN MANAGING DATA Page 143 Principles in Managing Data Figure 5.5 Types of Data Standards
  • 25. © 2005 Pearson Prentice-Hall Chapter 5 - 25 MANAGERIAL ISSUES IN MANAGING DATA Page 144 The Data Management Process Figure 5.6 Asset Management Functions
  • 26. © 2005 Pearson Prentice-Hall Chapter 5 - 26 Page 146 Figure 5.7 The Data Warehouse
  • 27. © 2005 Pearson Prentice-Hall Chapter 5 - 27 MANAGERIAL ISSUES IN MANAGING DATA  Organizations should have policies regarding: Data ownership Data administration Page 148 Data Management Policies
  • 28. © 2005 Pearson Prentice-Hall Chapter 5 - 28 MANAGERIAL ISSUES IN MANAGING DATA Page 148 Data Ownership Corporate information policy – foundation for managing the ownership of data
  • 29. © 2005 Pearson Prentice-Hall Chapter 5 - 29 Page 149 Figure 5.8 Example Data Access Policy
  • 30. © 2005 Pearson Prentice-Hall Chapter 5 - 30 Data Administration Page 150 Key functions of the data administration group:  Promote and control data sharing  Analyze the impact of changes to application systems when data definitions change  Maintain the data dictionary  Reduce redundant data and processing  Reduce system maintenance costs and improve system development productivity  Improve quality and security of data  Insure data integrity MANAGERIAL ISSUES IN MANAGING DATA
  • 31. © 2005 Pearson Prentice-Hall Chapter 5 - 31 Data Administration Page 150-151 Key functions of the database administrator (DBA):  Tuning database management systems.  Selection and evaluation of and training on database technology.  Physical database design.  Design of methods to recover from damage to databases.  Physical placement of databases on specific computers and storage devices.  The interface of databases with telecommunications and other technologies. MANAGERIAL ISSUES IN MANAGING DATA