SlideShare a Scribd company logo
1 of 49
Chapter 5 Data
Resource Management
James A. O'Brien, and George Marakas.
Management Information Systems with MISource
2007, 8th
ed. Boston, MA: McGraw-Hill, Inc.,
2007. ISBN: 13 9780073323091
Chapter 5 Data Resource ManagementChapter 5 2
Logical Data Elements
Chapter 5 Data Resource ManagementChapter 5 3
Logical Data Elements
 Character
 A single alphabetic, numeric, or other symbol
 Field or data item
 Represents an attribute (characteristic or quality)
of some entity (object, person, place, event)
 Example: salary, job title
 Record
 Grouping of all the fields used to describe the attributes of an
entity
 Example: payroll record with name, SSN, pay rate
 File or table
 A group of related records
 Database
 An integrated collection of logically related
data elements
Chapter 5 Data Resource ManagementChapter 5 4
Electric Utility Database
Chapter 5 Data Resource ManagementChapter 5 5
Database Structures
 Common database structures…
Hierarchical
Network
Relational
Object-oriented
Multi-dimensional
Chapter 5 Data Resource ManagementChapter 5 6
Hierarchical Structure
 Early DBMS structure
 Records arranged in tree-
like structure
 Relationships are one-to-
many
Chapter 5 Data Resource ManagementChapter 5 7
Network Structure
 Used in some mainframe DBMS packages
 Many-to-many relationships
Chapter 5 Data Resource ManagementChapter 5 8
Relational Structure
 Most widely used structure
 Data elements are stored in tables
 Row represents a record; column is a field
 Can relate data in one file with data in another,
if both files share a common data element
Chapter 5 Data Resource ManagementChapter 5 9
Relational Operations
 Select
Create a subset of records that meet a stated
criterion
 Example: employees earning more than
$30,000
 Join
Combine two or more tables temporarily
Looks like one big table
 Project
Create a subset of columns in a table
Chapter 5 Data Resource ManagementChapter 5 10
Multidimensional Structure
 Variation of relational model
Uses multidimensional structures to
organize data
Data elements are viewed as being in cubes
Popular for analytical databases that support
Online Analytical Processing (OLAP)
Chapter 5 Data Resource ManagementChapter 5 11
Multidimensional Model
Chapter 5 Data Resource ManagementChapter 5 12
Object-Oriented Structure
 An object consists of
Data values describing the attributes of an
entity
Operations that can be performed on the data
 Encapsulation
Combine data and operations
 Inheritance
New objects can be created by replicating
some or all of the characteristics of parent
objects
Chapter 5 Data Resource ManagementChapter 5 13
Object-Oriented Structure
Source: Adapted from Ivar Jacobsen, Maria Ericsson, and Ageneta Jacobsen, The Object
Advantage: Business Process Reengineering with Object Technology (New York: ACM Press,
1995), p. 65.
Copyright @ 1995, Association for Computing Machinery. By permission.
Chapter 5 Data Resource ManagementChapter 5 14
Object-Oriented Structure
 Used in object-oriented database management
systems (OODBMS)
 Supports complex data types more efficiently
than relational databases
Example: graphic images, video clips,
web pages
Chapter 5 Data Resource ManagementChapter 5 15
Evaluation of Database Structures
 Hierarchical
Works for structured, routine transactions
Can’t handle many-to-many relationship
 Network
More flexible than hierarchical
Unable to handle ad hoc requests
 Relational
Easily responds to ad hoc requests
Easier to work with and maintain
Not as efficient/quick as hierarchical or network
Chapter 5 Data Resource ManagementChapter 5 16
Database Development
 Database Administrator (DBA)
In charge of enterprise database development
Improves the integrity and security of
organizational databases
Uses Data Definition Language (DDL) to
develop and specify data contents,
relationships, and structure
Stores these specifications in a data
dictionary or a metadata repository
Chapter 5 Data Resource ManagementChapter 5 17
Data Dictionary
 A data dictionary
Contains data about data (metadata)
Relies on specialized software component to
manage a database of data definitions
 It contains information on..
The names and descriptions of all types of
data records and their interrelationships
Requirements for end users’ access and use
of application programs
Database maintenance
Security
Chapter 5 Data Resource ManagementChapter 5 18
Database Development
Chapter 5 Data Resource ManagementChapter 5 19
Data Planning Process
 Database development is a top-down process
Develop an enterprise model that defines the
basic business process of the enterprise
Define the information needs of end users in
a business process
Identify the key data elements that are
needed to perform specific business activities
(entity relationship diagrams)
Chapter 5 Data Resource ManagementChapter 5 20
Entity Relationship Diagram
Chapter 5 Data Resource ManagementChapter 5 21
Database Design Process
 Data relationships are represented in a data model that
supports a business process
 This model is the schema or subschema on which to
base…
 The physical design of the database
 The development of application programs to support
business processes
 Logical Design
 Schema - overall logical view of relationships
 Subschema - logical view for specific end users
 Data models for DBMS
 Physical Design
 How data are to be physically stored and
accessed on storage devices
Chapter 5 Data Resource ManagementChapter 5 22
Logical and Physical Database Views
Chapter 5 Data Resource ManagementChapter 5 23
Data Resource Management
 Data resource management is a managerial activity
 Uses data management, data warehousing,
and other IS technologies
 Manages data resources to meet the information
needs of business stakeholders
 Data stewards
 Dedicated to establishing and maintaining the
quality of data
 Need business, technology, and diplomatic skills
 Focus on data content
 Judgment is a big part of the job
Chapter 5 Data Resource ManagementChapter 5 24
Types of Databases
Chapter 5 Data Resource ManagementChapter 5 25
Operational Databases
 Stores detailed data needed to support business
processes and operations
Also called subject area databases (SADB),
transaction databases, and production
databases
Database examples: customer, human
resource, inventory
Chapter 5 Data Resource ManagementChapter 5 26
Distributed Databases
 Distributed databases are copies or parts of databases stored on
servers at multiple locations
 Improves database performance at worksites
 Advantages
 Protection of valuable data
 Data can be distributed into smaller databases
 Each location has control of its local data
 All locations can access any data, any where
 Disadvantages
 Maintaining data accuracy
 Replication
 Look at each distributed database and find changes
 Apply changes to each distributed database
 Very complex
 Duplication
 One database is master
 Duplicate the master after hours, in all locations
 Easier to accomplish
Chapter 5 Data Resource ManagementChapter 5 27
External Databases
 Databases available for a fee from commercial
online services, or free from the Web
Example: hypermedia databases, statistical
databases, bibliographic and full text
databases
Search engines like Google or Yahoo are
external databases
Chapter 5 Data Resource ManagementChapter 5 28
Hypermedia Databases
 A hypermedia database contains
Hyperlinked pages of multimedia
Interrelated hypermedia page elements,
rather than interrelated data records
Chapter 5 Data Resource ManagementChapter 5 29
Components of Web-Based
System
Chapter 5 Data Resource ManagementChapter 5 30
Data Warehouses
 Stores static data that has been extracted from
other databases in an organization
Central source of data that has been cleaned,
transformed, and cataloged
Data is used for data mining, analytical
processing, analysis, research, decision support
 Data warehouses may be divided into data marts
Subsets of data that focus on specific aspects
of a company (department or business process)
Chapter 5 Data Resource ManagementChapter 5 31
Data Warehouse Components
Chapter 5 Data Resource ManagementChapter 5 32
Applications and Data Marts
Chapter 5 Data Resource ManagementChapter 5 33
Data Mining
 Data in data warehouses are analyzed to reveal
hidden patterns and trends
Market-basket analysis to identify new
product bundles
Find root cause of qualify or manufacturing
problems
Prevent customer attrition
Acquire new customers
Cross-sell to existing customers
Profile customers with more accuracy
Chapter 5 Data Resource ManagementChapter 5 34
Traditional File Processing
 Data are organized, stored, and processed in
independent files
Each business application designed to use
specialized data files containing specific
types of data records
 Problems
Data redundancy
Lack of data integration
Data dependence (files, storage devices,
software)
Lack of data integrity or standardization
Chapter 5 Data Resource ManagementChapter 5 35
Traditional File Processing
Chapter 5 Data Resource ManagementChapter 5 36
Database Management
Approach
 The foundation of modern methods of managing
organizational data
Consolidates data records formerly in
separate files into databases
Data can be accessed by many different
application programs
A database management system (DBMS) is
the software interface between users and
databases
Chapter 5 Data Resource ManagementChapter 5 37
Database Management
Approach
Chapter 5 Data Resource ManagementChapter 5 38
Database Management System
 In mainframe and server computer systems, a
software package that is used to…
Create new databases and database
applications
Maintain the quality of the data in an
organization’s databases
Use the databases of an organization to
provide the information needed by end users
Chapter 5 Data Resource ManagementChapter 5 39
Common DBMS Software
Components
 Database definition
Language and graphical tools to define
entities, relationships, integrity constraints,
and authorization rights
 Nonprocedural access
Language and graphical tools to access data
without complicated coding
 Application development
Graphical tools to develop menus, data entry
forms, and reports
Chapter 5 Data Resource ManagementChapter 5 40
Common DBMS Software
Components
 Procedural language interface
Language that combines nonprocedural access
with full capabilities of a programming language
 Transaction processing
Control mechanism prevents interference from
simultaneous users and recovers lost data after
a failure
 Database tuning
Tools to monitor, improve database performance
Chapter 5 Data Resource ManagementChapter 5 41
Database Management System
 Database Development
Defining and organizing the content,
relationships, and structure of the data needed
to build a database
 Database Application Development
Using DBMS to create prototypes of queries,
forms, reports, Web pages
 Database Maintenance
Using transaction processing systems and
other tools to add, delete, update, and correct
data
Chapter 5 Data Resource ManagementChapter 5 42
DBMS Major Functions
Chapter 5 Data Resource ManagementChapter 5 43
Database Interrogation
 End users use a DBMS query feature or report
generator
Response is video display or printed report
No programming is required
 Query language
Immediate response to ad hoc data requests
 Report generator
Quickly specify a format for information you
want to present as a report
Chapter 5 Data Resource ManagementChapter 5 44
Database Interrogation
 SQL Queries
Structured, international standard query
language found in many DBMS packages
Query form is SELECT…FROM…WHERE…
Chapter 5 Data Resource ManagementChapter 5 45
Database Interrogation
 Boolean Logic
Developed by George Boole in the mid-1800s
Used to refine searches to specific
information
Has three logical operators: AND, OR, NOT
 Example
Cats OR felines AND NOT dogs OR
Broadway
Chapter 5 Data Resource ManagementChapter 5 46
Database Interrogation
 Graphical and Natural Queries
It is difficult to correctly phrase SQL and other
database language search queries
Most DBMS packages offer easier-to-use,
point-and-click methods
Translates queries into SQL commands
Natural language query statements are similar
to conversational English
Chapter 5 Data Resource ManagementChapter 5 47
Graphical Query Wizard
Chapter 5 Data Resource ManagementChapter 5 48
Database Maintenance
 Accomplished by transaction processing
systems and other applications, with the support
of the DBMS
Done to reflect new business transactions and
other events
Updating and correcting data, such as
customer addresses
Chapter 5 Data Resource ManagementChapter 5 49
Application Development
 Use DBMS software development tools to
develop custom application programs
Not necessary to develop detailed data-
handling procedures using conventional
programming languages
Can include data manipulation language
(DML) statements that call on the DBMS to
perform necessary data handling

More Related Content

What's hot

Chap09 Electronic Commerce Systems
Chap09 Electronic Commerce SystemsChap09 Electronic Commerce Systems
Chap09 Electronic Commerce SystemsAqib Syed
 
Chap05 Data Resource Management
Chap05 Data Resource ManagementChap05 Data Resource Management
Chap05 Data Resource ManagementAqib Syed
 
MIS-CH01: Information Systems, Organization, and Strategy
MIS-CH01: Information Systems, Organization, and StrategyMIS-CH01: Information Systems, Organization, and Strategy
MIS-CH01: Information Systems, Organization, and StrategySukanya Ben
 
Chapter8
Chapter8Chapter8
Chapter8AG RD
 
MIS-CH04: Ethical and Social Issues in INformation Systems
MIS-CH04: Ethical and Social Issues in INformation SystemsMIS-CH04: Ethical and Social Issues in INformation Systems
MIS-CH04: Ethical and Social Issues in INformation SystemsSukanya Ben
 
Chap12 Developing Business/IT Solutions
Chap12 Developing Business/IT SolutionsChap12 Developing Business/IT Solutions
Chap12 Developing Business/IT SolutionsAqib Syed
 
Data resource management
Data resource managementData resource management
Data resource managementNirajan Silwal
 
data resource management
 data resource management data resource management
data resource managementsoodsurbhi123
 
Management Information System (MIS)
Management Information System (MIS)Management Information System (MIS)
Management Information System (MIS)Navneet Jingar
 
MIS-CH08: Securing Information Systems
MIS-CH08: Securing Information SystemsMIS-CH08: Securing Information Systems
MIS-CH08: Securing Information SystemsSukanya Ben
 
Chapter 1 introduction to information system
Chapter 1 introduction to information systemChapter 1 introduction to information system
Chapter 1 introduction to information systemAG RD
 
Chapter 4 computer software
Chapter 4 computer softwareChapter 4 computer software
Chapter 4 computer softwareAG RD
 
Information Systems in Global Business Today
Information Systems in Global Business TodayInformation Systems in Global Business Today
Information Systems in Global Business Todaytvto1381
 
Chap11 Developing Business/IT Strategies
Chap11 Developing Business/IT StrategiesChap11 Developing Business/IT Strategies
Chap11 Developing Business/IT StrategiesAqib Syed
 
Foundations Of Information Systems In Business(97 2003)
Foundations Of Information Systems In Business(97 2003)Foundations Of Information Systems In Business(97 2003)
Foundations Of Information Systems In Business(97 2003)Chandan Kumar
 
Business information systems in your career
Business information systems in your careerBusiness information systems in your career
Business information systems in your careerProf. Othman Alsalloum
 
management information systems-an introduction
management information systems-an introductionmanagement information systems-an introduction
management information systems-an introductionAbhilash kk
 

What's hot (20)

Chap09 Electronic Commerce Systems
Chap09 Electronic Commerce SystemsChap09 Electronic Commerce Systems
Chap09 Electronic Commerce Systems
 
Lecture 04 data resource management
Lecture 04 data resource managementLecture 04 data resource management
Lecture 04 data resource management
 
Chap05 Data Resource Management
Chap05 Data Resource ManagementChap05 Data Resource Management
Chap05 Data Resource Management
 
MIS-CH01: Information Systems, Organization, and Strategy
MIS-CH01: Information Systems, Organization, and StrategyMIS-CH01: Information Systems, Organization, and Strategy
MIS-CH01: Information Systems, Organization, and Strategy
 
Chapter8
Chapter8Chapter8
Chapter8
 
MIS-CH04: Ethical and Social Issues in INformation Systems
MIS-CH04: Ethical and Social Issues in INformation SystemsMIS-CH04: Ethical and Social Issues in INformation Systems
MIS-CH04: Ethical and Social Issues in INformation Systems
 
Chap12 Developing Business/IT Solutions
Chap12 Developing Business/IT SolutionsChap12 Developing Business/IT Solutions
Chap12 Developing Business/IT Solutions
 
Data resource management
Data resource managementData resource management
Data resource management
 
data resource management
 data resource management data resource management
data resource management
 
Management Information System (MIS)
Management Information System (MIS)Management Information System (MIS)
Management Information System (MIS)
 
MIS-CH08: Securing Information Systems
MIS-CH08: Securing Information SystemsMIS-CH08: Securing Information Systems
MIS-CH08: Securing Information Systems
 
Chapter 1 introduction to information system
Chapter 1 introduction to information systemChapter 1 introduction to information system
Chapter 1 introduction to information system
 
Chapter 4 computer software
Chapter 4 computer softwareChapter 4 computer software
Chapter 4 computer software
 
Information Systems in Global Business Today
Information Systems in Global Business TodayInformation Systems in Global Business Today
Information Systems in Global Business Today
 
Chap11 Developing Business/IT Strategies
Chap11 Developing Business/IT StrategiesChap11 Developing Business/IT Strategies
Chap11 Developing Business/IT Strategies
 
Laudon Ch10
Laudon Ch10Laudon Ch10
Laudon Ch10
 
Foundations Of Information Systems In Business(97 2003)
Foundations Of Information Systems In Business(97 2003)Foundations Of Information Systems In Business(97 2003)
Foundations Of Information Systems In Business(97 2003)
 
Business information systems in your career
Business information systems in your careerBusiness information systems in your career
Business information systems in your career
 
INFORMATION TECHNOLOGY FOR BUSINESS
INFORMATION TECHNOLOGY FOR BUSINESSINFORMATION TECHNOLOGY FOR BUSINESS
INFORMATION TECHNOLOGY FOR BUSINESS
 
management information systems-an introduction
management information systems-an introductionmanagement information systems-an introduction
management information systems-an introduction
 

Viewers also liked

Viewers also liked (17)

Chap01 edit
Chap01 editChap01 edit
Chap01 edit
 
5 data resource management
5 data resource management5 data resource management
5 data resource management
 
Dbms slides
Dbms slidesDbms slides
Dbms slides
 
Database management system presentation
Database management system presentationDatabase management system presentation
Database management system presentation
 
Session#5; data resource managment
Session#5;  data resource managmentSession#5;  data resource managment
Session#5; data resource managment
 
Management information-system
Management information-systemManagement information-system
Management information-system
 
Database and types of database
Database and types of databaseDatabase and types of database
Database and types of database
 
Database and databases available in the market
Database and databases available in the marketDatabase and databases available in the market
Database and databases available in the market
 
Introduction To Telecom
Introduction To TelecomIntroduction To Telecom
Introduction To Telecom
 
Competing with-it-systems
Competing with-it-systemsCompeting with-it-systems
Competing with-it-systems
 
CH002
CH002CH002
CH002
 
Disaster recovery: modernized best practices for Oracle's JD Edwards and beyond
Disaster recovery: modernized best practices for Oracle's JD Edwards and beyondDisaster recovery: modernized best practices for Oracle's JD Edwards and beyond
Disaster recovery: modernized best practices for Oracle's JD Edwards and beyond
 
CH004
CH004CH004
CH004
 
CH001
CH001CH001
CH001
 
CH005
CH005CH005
CH005
 
CH003
CH003CH003
CH003
 
Chapter 1
Chapter 1Chapter 1
Chapter 1
 

Similar to Chapter 5 data resource management

obrien13e_chap005.ppt
obrien13e_chap005.pptobrien13e_chap005.ppt
obrien13e_chap005.pptPradeep513562
 
obrien13e_chap005.ppt
obrien13e_chap005.pptobrien13e_chap005.ppt
obrien13e_chap005.pptPradeep513562
 
Behind The Scenes Databases And Information Systems 6
Behind The Scenes  Databases And Information Systems 6Behind The Scenes  Databases And Information Systems 6
Behind The Scenes Databases And Information Systems 6guest4a9cdb
 
data-resource-management.ppt
data-resource-management.pptdata-resource-management.ppt
data-resource-management.pptmogadb
 
MIS-CH6: Foundation of BUsiness Intelligence: Databases & IS
MIS-CH6: Foundation of BUsiness Intelligence: Databases & ISMIS-CH6: Foundation of BUsiness Intelligence: Databases & IS
MIS-CH6: Foundation of BUsiness Intelligence: Databases & ISSukanya Ben
 
Chapter 6 foundations of business intelligence
Chapter 6 foundations of business intelligenceChapter 6 foundations of business intelligence
Chapter 6 foundations of business intelligenceVan Chau
 
3._DWH_Architecture__Components.ppt
3._DWH_Architecture__Components.ppt3._DWH_Architecture__Components.ppt
3._DWH_Architecture__Components.pptBsMath3rdsem
 
Lecture 09 dblc centralized vs decentralized design
Lecture 09   dblc centralized vs decentralized designLecture 09   dblc centralized vs decentralized design
Lecture 09 dblc centralized vs decentralized designemailharmeet
 
Lecture 09 dblc centralized vs decentralized design
Lecture 09   dblc centralized vs decentralized designLecture 09   dblc centralized vs decentralized design
Lecture 09 dblc centralized vs decentralized designemailharmeet
 
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
 
Business intelligence databases and information management
Business intelligence databases and information managementBusiness intelligence databases and information management
Business intelligence databases and information managementProf. Othman Alsalloum
 
Physical Database Design & Performance
Physical Database Design & PerformancePhysical Database Design & Performance
Physical Database Design & PerformanceAbdullah Khosa
 

Similar to Chapter 5 data resource management (20)

Chap05.ppt
Chap05.pptChap05.ppt
Chap05.ppt
 
obrien13e_chap005.ppt
obrien13e_chap005.pptobrien13e_chap005.ppt
obrien13e_chap005.ppt
 
obrien13e_chap005.ppt
obrien13e_chap005.pptobrien13e_chap005.ppt
obrien13e_chap005.ppt
 
Week 5
Week 5Week 5
Week 5
 
Week 5
Week 5Week 5
Week 5
 
Behind The Scenes Databases And Information Systems 6
Behind The Scenes  Databases And Information Systems 6Behind The Scenes  Databases And Information Systems 6
Behind The Scenes Databases And Information Systems 6
 
data-resource-management.ppt
data-resource-management.pptdata-resource-management.ppt
data-resource-management.ppt
 
Chap05 data resource mgt
Chap05 data resource mgtChap05 data resource mgt
Chap05 data resource mgt
 
MIS-CH6: Foundation of BUsiness Intelligence: Databases & IS
MIS-CH6: Foundation of BUsiness Intelligence: Databases & ISMIS-CH6: Foundation of BUsiness Intelligence: Databases & IS
MIS-CH6: Foundation of BUsiness Intelligence: Databases & IS
 
Chapter 6 foundations of business intelligence
Chapter 6 foundations of business intelligenceChapter 6 foundations of business intelligence
Chapter 6 foundations of business intelligence
 
3._DWH_Architecture__Components.ppt
3._DWH_Architecture__Components.ppt3._DWH_Architecture__Components.ppt
3._DWH_Architecture__Components.ppt
 
Unit 2
Unit 2Unit 2
Unit 2
 
Data models
Data modelsData models
Data models
 
ch1
ch1ch1
ch1
 
Lecture 09 dblc centralized vs decentralized design
Lecture 09   dblc centralized vs decentralized designLecture 09   dblc centralized vs decentralized design
Lecture 09 dblc centralized vs decentralized design
 
Lecture 09 dblc centralized vs decentralized design
Lecture 09   dblc centralized vs decentralized designLecture 09   dblc centralized vs decentralized design
Lecture 09 dblc centralized vs decentralized design
 
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
 
Business intelligence databases and information management
Business intelligence databases and information managementBusiness intelligence databases and information management
Business intelligence databases and information management
 
Physical Database Design & Performance
Physical Database Design & PerformancePhysical Database Design & Performance
Physical Database Design & Performance
 
Chapter 05
Chapter 05Chapter 05
Chapter 05
 

Recently uploaded

Pharma Works Profile of Karan Communications
Pharma Works Profile of Karan CommunicationsPharma Works Profile of Karan Communications
Pharma Works Profile of Karan Communicationskarancommunications
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756dollysharma2066
 
Monthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptxMonthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptxAndy Lambert
 
M.C Lodges -- Guest House in Jhang.
M.C Lodges --  Guest House in Jhang.M.C Lodges --  Guest House in Jhang.
M.C Lodges -- Guest House in Jhang.Aaiza Hassan
 
Cracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptxCracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptxWorkforce Group
 
B.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptx
B.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptxB.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptx
B.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptxpriyanshujha201
 
HONOR Veterans Event Keynote by Michael Hawkins
HONOR Veterans Event Keynote by Michael HawkinsHONOR Veterans Event Keynote by Michael Hawkins
HONOR Veterans Event Keynote by Michael HawkinsMichael W. Hawkins
 
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...anilsa9823
 
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...Dave Litwiller
 
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRLMONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRLSeo
 
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdfRenandantas16
 
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangaloreamitlee9823
 
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...rajveerescorts2022
 
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...Aggregage
 
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...Lviv Startup Club
 
Best VIP Call Girls Noida Sector 40 Call Me: 8448380779
Best VIP Call Girls Noida Sector 40 Call Me: 8448380779Best VIP Call Girls Noida Sector 40 Call Me: 8448380779
Best VIP Call Girls Noida Sector 40 Call Me: 8448380779Delhi Call girls
 
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Pune Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service AvailableDipal Arora
 
Monte Carlo simulation : Simulation using MCSM
Monte Carlo simulation : Simulation using MCSMMonte Carlo simulation : Simulation using MCSM
Monte Carlo simulation : Simulation using MCSMRavindra Nath Shukla
 
John Halpern sued for sexual assault.pdf
John Halpern sued for sexual assault.pdfJohn Halpern sued for sexual assault.pdf
John Halpern sued for sexual assault.pdfAmzadHosen3
 
Regression analysis: Simple Linear Regression Multiple Linear Regression
Regression analysis:  Simple Linear Regression Multiple Linear RegressionRegression analysis:  Simple Linear Regression Multiple Linear Regression
Regression analysis: Simple Linear Regression Multiple Linear RegressionRavindra Nath Shukla
 

Recently uploaded (20)

Pharma Works Profile of Karan Communications
Pharma Works Profile of Karan CommunicationsPharma Works Profile of Karan Communications
Pharma Works Profile of Karan Communications
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
Monthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptxMonthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptx
 
M.C Lodges -- Guest House in Jhang.
M.C Lodges --  Guest House in Jhang.M.C Lodges --  Guest House in Jhang.
M.C Lodges -- Guest House in Jhang.
 
Cracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptxCracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptx
 
B.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptx
B.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptxB.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptx
B.COM Unit – 4 ( CORPORATE SOCIAL RESPONSIBILITY ( CSR ).pptx
 
HONOR Veterans Event Keynote by Michael Hawkins
HONOR Veterans Event Keynote by Michael HawkinsHONOR Veterans Event Keynote by Michael Hawkins
HONOR Veterans Event Keynote by Michael Hawkins
 
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
 
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...
Enhancing and Restoring Safety & Quality Cultures - Dave Litwiller - May 2024...
 
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRLMONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
MONA 98765-12871 CALL GIRLS IN LUDHIANA LUDHIANA CALL GIRL
 
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
 
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
 
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
 
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
 
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...
Yaroslav Rozhankivskyy: Три складові і три передумови максимальної продуктивн...
 
Best VIP Call Girls Noida Sector 40 Call Me: 8448380779
Best VIP Call Girls Noida Sector 40 Call Me: 8448380779Best VIP Call Girls Noida Sector 40 Call Me: 8448380779
Best VIP Call Girls Noida Sector 40 Call Me: 8448380779
 
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Pune Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service Available
 
Monte Carlo simulation : Simulation using MCSM
Monte Carlo simulation : Simulation using MCSMMonte Carlo simulation : Simulation using MCSM
Monte Carlo simulation : Simulation using MCSM
 
John Halpern sued for sexual assault.pdf
John Halpern sued for sexual assault.pdfJohn Halpern sued for sexual assault.pdf
John Halpern sued for sexual assault.pdf
 
Regression analysis: Simple Linear Regression Multiple Linear Regression
Regression analysis:  Simple Linear Regression Multiple Linear RegressionRegression analysis:  Simple Linear Regression Multiple Linear Regression
Regression analysis: Simple Linear Regression Multiple Linear Regression
 

Chapter 5 data resource management

  • 1. Chapter 5 Data Resource Management James A. O'Brien, and George Marakas. Management Information Systems with MISource 2007, 8th ed. Boston, MA: McGraw-Hill, Inc., 2007. ISBN: 13 9780073323091
  • 2. Chapter 5 Data Resource ManagementChapter 5 2 Logical Data Elements
  • 3. Chapter 5 Data Resource ManagementChapter 5 3 Logical Data Elements  Character  A single alphabetic, numeric, or other symbol  Field or data item  Represents an attribute (characteristic or quality) of some entity (object, person, place, event)  Example: salary, job title  Record  Grouping of all the fields used to describe the attributes of an entity  Example: payroll record with name, SSN, pay rate  File or table  A group of related records  Database  An integrated collection of logically related data elements
  • 4. Chapter 5 Data Resource ManagementChapter 5 4 Electric Utility Database
  • 5. Chapter 5 Data Resource ManagementChapter 5 5 Database Structures  Common database structures… Hierarchical Network Relational Object-oriented Multi-dimensional
  • 6. Chapter 5 Data Resource ManagementChapter 5 6 Hierarchical Structure  Early DBMS structure  Records arranged in tree- like structure  Relationships are one-to- many
  • 7. Chapter 5 Data Resource ManagementChapter 5 7 Network Structure  Used in some mainframe DBMS packages  Many-to-many relationships
  • 8. Chapter 5 Data Resource ManagementChapter 5 8 Relational Structure  Most widely used structure  Data elements are stored in tables  Row represents a record; column is a field  Can relate data in one file with data in another, if both files share a common data element
  • 9. Chapter 5 Data Resource ManagementChapter 5 9 Relational Operations  Select Create a subset of records that meet a stated criterion  Example: employees earning more than $30,000  Join Combine two or more tables temporarily Looks like one big table  Project Create a subset of columns in a table
  • 10. Chapter 5 Data Resource ManagementChapter 5 10 Multidimensional Structure  Variation of relational model Uses multidimensional structures to organize data Data elements are viewed as being in cubes Popular for analytical databases that support Online Analytical Processing (OLAP)
  • 11. Chapter 5 Data Resource ManagementChapter 5 11 Multidimensional Model
  • 12. Chapter 5 Data Resource ManagementChapter 5 12 Object-Oriented Structure  An object consists of Data values describing the attributes of an entity Operations that can be performed on the data  Encapsulation Combine data and operations  Inheritance New objects can be created by replicating some or all of the characteristics of parent objects
  • 13. Chapter 5 Data Resource ManagementChapter 5 13 Object-Oriented Structure Source: Adapted from Ivar Jacobsen, Maria Ericsson, and Ageneta Jacobsen, The Object Advantage: Business Process Reengineering with Object Technology (New York: ACM Press, 1995), p. 65. Copyright @ 1995, Association for Computing Machinery. By permission.
  • 14. Chapter 5 Data Resource ManagementChapter 5 14 Object-Oriented Structure  Used in object-oriented database management systems (OODBMS)  Supports complex data types more efficiently than relational databases Example: graphic images, video clips, web pages
  • 15. Chapter 5 Data Resource ManagementChapter 5 15 Evaluation of Database Structures  Hierarchical Works for structured, routine transactions Can’t handle many-to-many relationship  Network More flexible than hierarchical Unable to handle ad hoc requests  Relational Easily responds to ad hoc requests Easier to work with and maintain Not as efficient/quick as hierarchical or network
  • 16. Chapter 5 Data Resource ManagementChapter 5 16 Database Development  Database Administrator (DBA) In charge of enterprise database development Improves the integrity and security of organizational databases Uses Data Definition Language (DDL) to develop and specify data contents, relationships, and structure Stores these specifications in a data dictionary or a metadata repository
  • 17. Chapter 5 Data Resource ManagementChapter 5 17 Data Dictionary  A data dictionary Contains data about data (metadata) Relies on specialized software component to manage a database of data definitions  It contains information on.. The names and descriptions of all types of data records and their interrelationships Requirements for end users’ access and use of application programs Database maintenance Security
  • 18. Chapter 5 Data Resource ManagementChapter 5 18 Database Development
  • 19. Chapter 5 Data Resource ManagementChapter 5 19 Data Planning Process  Database development is a top-down process Develop an enterprise model that defines the basic business process of the enterprise Define the information needs of end users in a business process Identify the key data elements that are needed to perform specific business activities (entity relationship diagrams)
  • 20. Chapter 5 Data Resource ManagementChapter 5 20 Entity Relationship Diagram
  • 21. Chapter 5 Data Resource ManagementChapter 5 21 Database Design Process  Data relationships are represented in a data model that supports a business process  This model is the schema or subschema on which to base…  The physical design of the database  The development of application programs to support business processes  Logical Design  Schema - overall logical view of relationships  Subschema - logical view for specific end users  Data models for DBMS  Physical Design  How data are to be physically stored and accessed on storage devices
  • 22. Chapter 5 Data Resource ManagementChapter 5 22 Logical and Physical Database Views
  • 23. Chapter 5 Data Resource ManagementChapter 5 23 Data Resource Management  Data resource management is a managerial activity  Uses data management, data warehousing, and other IS technologies  Manages data resources to meet the information needs of business stakeholders  Data stewards  Dedicated to establishing and maintaining the quality of data  Need business, technology, and diplomatic skills  Focus on data content  Judgment is a big part of the job
  • 24. Chapter 5 Data Resource ManagementChapter 5 24 Types of Databases
  • 25. Chapter 5 Data Resource ManagementChapter 5 25 Operational Databases  Stores detailed data needed to support business processes and operations Also called subject area databases (SADB), transaction databases, and production databases Database examples: customer, human resource, inventory
  • 26. Chapter 5 Data Resource ManagementChapter 5 26 Distributed Databases  Distributed databases are copies or parts of databases stored on servers at multiple locations  Improves database performance at worksites  Advantages  Protection of valuable data  Data can be distributed into smaller databases  Each location has control of its local data  All locations can access any data, any where  Disadvantages  Maintaining data accuracy  Replication  Look at each distributed database and find changes  Apply changes to each distributed database  Very complex  Duplication  One database is master  Duplicate the master after hours, in all locations  Easier to accomplish
  • 27. Chapter 5 Data Resource ManagementChapter 5 27 External Databases  Databases available for a fee from commercial online services, or free from the Web Example: hypermedia databases, statistical databases, bibliographic and full text databases Search engines like Google or Yahoo are external databases
  • 28. Chapter 5 Data Resource ManagementChapter 5 28 Hypermedia Databases  A hypermedia database contains Hyperlinked pages of multimedia Interrelated hypermedia page elements, rather than interrelated data records
  • 29. Chapter 5 Data Resource ManagementChapter 5 29 Components of Web-Based System
  • 30. Chapter 5 Data Resource ManagementChapter 5 30 Data Warehouses  Stores static data that has been extracted from other databases in an organization Central source of data that has been cleaned, transformed, and cataloged Data is used for data mining, analytical processing, analysis, research, decision support  Data warehouses may be divided into data marts Subsets of data that focus on specific aspects of a company (department or business process)
  • 31. Chapter 5 Data Resource ManagementChapter 5 31 Data Warehouse Components
  • 32. Chapter 5 Data Resource ManagementChapter 5 32 Applications and Data Marts
  • 33. Chapter 5 Data Resource ManagementChapter 5 33 Data Mining  Data in data warehouses are analyzed to reveal hidden patterns and trends Market-basket analysis to identify new product bundles Find root cause of qualify or manufacturing problems Prevent customer attrition Acquire new customers Cross-sell to existing customers Profile customers with more accuracy
  • 34. Chapter 5 Data Resource ManagementChapter 5 34 Traditional File Processing  Data are organized, stored, and processed in independent files Each business application designed to use specialized data files containing specific types of data records  Problems Data redundancy Lack of data integration Data dependence (files, storage devices, software) Lack of data integrity or standardization
  • 35. Chapter 5 Data Resource ManagementChapter 5 35 Traditional File Processing
  • 36. Chapter 5 Data Resource ManagementChapter 5 36 Database Management Approach  The foundation of modern methods of managing organizational data Consolidates data records formerly in separate files into databases Data can be accessed by many different application programs A database management system (DBMS) is the software interface between users and databases
  • 37. Chapter 5 Data Resource ManagementChapter 5 37 Database Management Approach
  • 38. Chapter 5 Data Resource ManagementChapter 5 38 Database Management System  In mainframe and server computer systems, a software package that is used to… Create new databases and database applications Maintain the quality of the data in an organization’s databases Use the databases of an organization to provide the information needed by end users
  • 39. Chapter 5 Data Resource ManagementChapter 5 39 Common DBMS Software Components  Database definition Language and graphical tools to define entities, relationships, integrity constraints, and authorization rights  Nonprocedural access Language and graphical tools to access data without complicated coding  Application development Graphical tools to develop menus, data entry forms, and reports
  • 40. Chapter 5 Data Resource ManagementChapter 5 40 Common DBMS Software Components  Procedural language interface Language that combines nonprocedural access with full capabilities of a programming language  Transaction processing Control mechanism prevents interference from simultaneous users and recovers lost data after a failure  Database tuning Tools to monitor, improve database performance
  • 41. Chapter 5 Data Resource ManagementChapter 5 41 Database Management System  Database Development Defining and organizing the content, relationships, and structure of the data needed to build a database  Database Application Development Using DBMS to create prototypes of queries, forms, reports, Web pages  Database Maintenance Using transaction processing systems and other tools to add, delete, update, and correct data
  • 42. Chapter 5 Data Resource ManagementChapter 5 42 DBMS Major Functions
  • 43. Chapter 5 Data Resource ManagementChapter 5 43 Database Interrogation  End users use a DBMS query feature or report generator Response is video display or printed report No programming is required  Query language Immediate response to ad hoc data requests  Report generator Quickly specify a format for information you want to present as a report
  • 44. Chapter 5 Data Resource ManagementChapter 5 44 Database Interrogation  SQL Queries Structured, international standard query language found in many DBMS packages Query form is SELECT…FROM…WHERE…
  • 45. Chapter 5 Data Resource ManagementChapter 5 45 Database Interrogation  Boolean Logic Developed by George Boole in the mid-1800s Used to refine searches to specific information Has three logical operators: AND, OR, NOT  Example Cats OR felines AND NOT dogs OR Broadway
  • 46. Chapter 5 Data Resource ManagementChapter 5 46 Database Interrogation  Graphical and Natural Queries It is difficult to correctly phrase SQL and other database language search queries Most DBMS packages offer easier-to-use, point-and-click methods Translates queries into SQL commands Natural language query statements are similar to conversational English
  • 47. Chapter 5 Data Resource ManagementChapter 5 47 Graphical Query Wizard
  • 48. Chapter 5 Data Resource ManagementChapter 5 48 Database Maintenance  Accomplished by transaction processing systems and other applications, with the support of the DBMS Done to reflect new business transactions and other events Updating and correcting data, such as customer addresses
  • 49. Chapter 5 Data Resource ManagementChapter 5 49 Application Development  Use DBMS software development tools to develop custom application programs Not necessary to develop detailed data- handling procedures using conventional programming languages Can include data manipulation language (DML) statements that call on the DBMS to perform necessary data handling