SlideShare a Scribd company logo
Chapter : 6 Database & Information
Management
Sekolah Tinggil Ilmu Ekonomi
Indonesia Membangun
27-04-2020
• Describe basic file organization concepts and the
problems of managing data resources in a
traditional file environment
• Describe how a database management system
organizes information and compare the principal
database models
• Apply important database design principles
Management Information Systems
Chapter 6 Managing Data Resources
OBJECTIVES
2 MIS205: Database & Information
Management
• Evaluate new database trends
• Identify the challenges posed by data resource
management and management solutions
OBJECTIVES (Continued)
Management Information Systems
Chapter 6 Managing Data Resources
3 MIS205: Database & Information
Management
 Challenge: Fragmented and isolated corporate
systems creating a single integrated view of
customers and operations
 Solution: single integrated corporate data
warehouse, using a single data model.
 Oracle 9i database provides near real-time
access to customer activity, customer profitability,
and customer reactions
 Illustrates the importance of managing data
resources for achieving profitability
Management Information Systems
Chapter 6 Managing Data Resources
Virgin Mobile Australia Case
4 MIS205: Database & Information
Management
File Organization Terms and Concepts
• Bit: Smallest unit of data; binary digit (0,1)
• Byte: Group of bits (8 bits) that represents a single
character
• Field: Group of words or a complete number
• Record: Group of related fields
• File: Group of records of same type
ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT
Management Information Systems
Chapter 6 Managing Data Resources
5 MIS205: Database & Information
Management
ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT
The Data Hierarchy
Management Information Systems
Chapter 6 Managing Data Resources
6
• Database: Group of related files
• Entity: Person, place, thing, event about which
information is maintained (Table name)
• Attribute: Description of a particular entity
(Column name)
• Key field: Identifier field used to retrieve, update,
sort a record
ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT
Management Information Systems
Chapter 6 Managing Data Resources
File Organization Terms and Concepts (Continued)
7 MIS205: Database & Information Management
ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT
Entities and Attributes
Management Information Systems
Chapter 6 Managing Data Resources
8 MIS205: Database & Information
Management
Problems with the Traditional File Environment
Data Redundancy and Inconsistency:
• Data redundancy: The presence of duplicate data
in multiple data files so that the same data are
stored in more than one place or location
• Data inconsistency: The same attribute may have
different values.
ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT
Management Information Systems
Chapter 6 Managing Data Resources
9 MIS205: Database & Information
Management
• The coupling of data stored in files and the
specific programs required to update and
maintain those files such that changes in
programs require changes to the data
Lack of flexibility:
• A traditional file system can deliver routine
scheduled reports after extensive programming
efforts, but it cannot deliver ad-hoc reports or
respond to unanticipated information
requirements in a timely fashion.
ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT
Management Information Systems
Chapter 6 Managing Data Resources
Program-data dependence:
Problems with the Traditional File Environment (Continued)
10 MIS205: Database & Information
Management
• Because there is little control or management of data,
management will have no knowledge of who is
accessing or even making changes to the
organization’s data.
Lack of data sharing and availability:
• Information cannot flow freely across different
functional areas or different parts of the organization.
Users find different values of the same piece of
information in two different systems, and hence they
may not use these systems because they cannot trust
the accuracy of the data.
ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT
Management Information Systems
Chapter 6 Managing Data Resources
Poor security:
Problems with the Traditional File Environment (Continued)
11 MIS205: Database & Information
Management
ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT
Traditional File Processing
Management Information Systems
Chapter 6 Managing Data Resources
12 MIS205: Database & Information
Management
Database Management System (DBMS)
• Software for creating and maintaining databases
• Permits firms to rationally manage data for the
entire firm
• Acts as interface between application programs
and physical data files
• Separates logical and design views of data
• Solves many problems of the traditional data file
approach
THE DATABASE APPROACH TO DATA MANAGEMENT
Management Information Systems
Chapter 6 Managing Data Resources
13 MIS205: Database & Information
Management
The Contemporary Database Environment
THE DATABASE APPROACH TO DATA MANAGEMENT
Management Information Systems
Chapter 6 Managing Data Resources
14 MIS205: Database & Information
Management
Components of DBMS:
• Data definition language: Specifies content and
structure of database and defines each data
element
• Data manipulation language: Used to process
data in a database
• Data dictionary: Stores definitions of data
elements and data characteristics (data about
data)
THE DATABASE APPROACH TO DATA MANAGEMENT
Management Information Systems
Chapter 6 Managing Data Resources
15 MIS205: Database & Information
Management
Sample Data Dictionary Report
THE DATABASE APPROACH TO DATA MANAGEMENT
Management Information Systems
Chapter 6 Managing Data Resources
16
MIS205: Database & Information
Management
Types of Databases:
• Relational DBMS
• Hierarchical and network DBMS
• Object-oriented databases
THE DATABASE APPROACH TO DATA MANAGEMENT
Management Information Systems
Chapter 6 Managing Data Resources
17 MIS205: Database & Information
Management
Relational DBMS:
• Represents data as two-dimensional tables called
relations
• Relates data across tables based on common
data element
• Examples: DB2, Oracle, MS SQL Server
THE DATABASE APPROACH TO DATA MANAGEMENT
Management Information Systems
Chapter 6 Managing Data Resources
18 MIS205: Database & Information
Management
The Relational Data Model
THE DATABASE APPROACH TO DATA MANAGEMENT
Management Information Systems
Chapter 6 Managing Data Resources
19
MIS205: Database & Information
Management
Three Basic Operations in a Relational Database:
• Select: Creates subset of rows that meet specific
criteria
• Join: Combines relational tables to provide users
with information
• Project: Enables users to create new tables
containing only relevant information
THE DATABASE APPROACH TO DATA MANAGEMENT
Management Information Systems
Chapter 6 Managing Data Resources
20 MIS205: Database & Information
Management
The Three Basic Operations of a Relational DBMS
THE DATABASE APPROACH TO DATA MANAGEMENT
Management Information Systems
Chapter 6 Managing Data Resources
21 MIS205: Database & Information
Management
Hierarchical and Network DBMS
• Organizes data in a tree-like structure
• Supports one-to-many parent-child relationships
• Prevalent in large legacy systems
THE DATABASE APPROACH TO DATA MANAGEMENT
Hierarchical DBMS:
Management Information Systems
Chapter 6 Managing Data Resources
22 MIS205: Database & Information
Management
A Hierarchical Database for a Human Resources System
THE DATABASE APPROACH TO DATA MANAGEMENT
Management Information Systems
Chapter 6 Managing Data Resources
23 MIS205: Database & Information
Management
Hierarchical and Network DBMS
• Depicts data logically as many-to-many
relationships
THE DATABASE APPROACH TO DATA MANAGEMENT
Network DBMS:
Management Information Systems
Chapter 6 Managing Data Resources
24 MIS205: Database & Information
Management
The Network Data Model
Management Information Systems
Chapter 6 Managing Data Resources
THE DATABASE APPROACH TO DATA MANAGEMENT
25
MIS205: Database & Information
Management
Hierarchical and Network DBMS
• Outdated
• Less flexible compared to RDBMS
• Lack support for ad-hoc and English language-
like queries
Disadvantages:
Management Information Systems
Chapter 6 Managing Data Resources
THE DATABASE APPROACH TO DATA MANAGEMENT
26 MIS205: Database & Information
Management
• Can well-handle graphic based and multimedia
applications
• Stores data and procedures as objects that can
be retrieved and shared automatically
• Hybrid Object-relational DBMS provides
capabilities of both object-oriented and relational
DBMS
Object-Oriented DBMS:
Management Information Systems
Chapter 6 Managing Data Resources
THE DATABASE APPROACH TO DATA MANAGEMENT
27 MIS205: Database & Information
Management
• Conceptual design: Abstract model of database
from a business perspective
• Physical design: Detailed description of business
information needs
CREATING A DATABASE ENVIRONMENT
Designing Databases:
Management Information Systems
Chapter 6 Managing Data Resources
28 MIS205: Database & Information
Management
• Entity-Relationship (ER) diagram: Methodology
for documenting databases illustrating
relationships between database entities
• Normalization: Process of creating small stable
data structures from complex groups of data
CREATING A DATABASE ENVIRONMENT
Management Information Systems
Chapter 6 Managing Data Resources
Designing Databases: (Continued)
29 MIS205: Database & Information
Management
MIS205: Database & Information
Management
30
An Entity-Relationship Diagram
Management Information Systems
Chapter 6 Managing Data Resources
An Unnormalized Relation for ORDER
CREATING A DATABASE ENVIRONMENT
Management Information Systems
Chapter 6 Managing Data Resources
31 MIS205: Database & Information
Management
Normalized Tables Created from ORDER
CREATING A DATABASE ENVIRONMENT
Management Information Systems
Chapter 6 Managing Data Resources
32 MIS205: Database & Information
Management
Centralized database:
• Used by single central processor or multiple
processors in client/server network
• There are advantages and disadvantages to having all
corporate data in one location.
• Security is higher in central environments, risks lower.
• If data demands are highly decentralized, then a
decentralized design is less costly, and more flexible.
CREATING A DATABASE ENVIRONMENT
Distributing Databases
Management Information Systems
Chapter 6 Managing Data Resources
33 MIS205: Database & Information
Management
• Databases can be decentralized either by
partitioning or by replicating
• Partitioned database: Database is divided into
segments or regions. For example, a customer
database can be divided into Eastern customers
and Western customers, and two separate
databases maintained in the two regions.
CREATING A DATABASE ENVIRONMENT
Distributed database:
Management Information Systems
Chapter 6 Managing Data Resources
34 MIS205: Database & Information
Management
• Duplicated database: The database is completely
duplicated at two or more locations. The
separate databases are synchronized in off hours
on a batch basis.
• Regardless of which method is chosen, data
administrators and business managers need to
understand how the data in different databases
will be coordinated and how business processes
might be effected by the decentralization.
CREATING A DATABASE ENVIRONMENT
Management Information Systems
Chapter 6 Managing Data Resources
35 MIS205: Database & Information
Management
Distributed Databases
CREATING A DATABASE ENVIRONMENT
Management Information Systems
Chapter 6 Managing Data Resources
36 MIS205: Database & Information
Management
Ensuring Data Quality:
• Corporate and government databases have
unexpectedly poor levels of data quality.
• National consumer credit reporting databases
have error rates of 20-35%.
• 32% of the records in the FBI’s Computerized
Criminal History file are inaccurate, incomplete,
or ambiguous.
• Gartner Group estimates that consumer data in
corporate databases degrades at the rate of 2% a
month.
CREATING A DATABASE ENVIRONMENT
Management Information Systems
Chapter 6 Managing Data Resources
37 MIS205: Database & Information
Management
• The quality of decision making in a firm is directly
related to the quality of data in its databases.
• Data Quality Audit: Structured survey of the
accuracy and level of completeness of the data in
an information system. Statistical methods may
be used in conducting data quality audit.
• Data Cleansing: Consists of activities for
detecting and correcting data in a database or file
that are incorrect, incomplete, improperly
formatted, or redundant
CREATING A DATABASE ENVIRONMENT
Management Information Systems
Chapter 6 Managing Data Resources
Ensuring Data Quality: (Continued)
38 MIS205: Database & Information
Management
Online Analytical Processing (OLAP):
• Multidimensional data analysis
• Supports manipulation and analysis of large
volumes of data from multiple
dimensions/perspectives
DATABASE TRENDS
Multidimensional Data Analysis
Management Information Systems
Chapter 6 Managing Data Resources
39 MIS205: Database & Information
Management
Multidimensional Data Model
DATABASE TRENDS
Management Information Systems
Chapter 6 Managing Data Resources
40 MIS205: Database & Information
Management
Data warehouse:
• Supports reporting and query tools
• Stores current and historical data
• Consolidates data for management analysis and
decision making
DATABASE TRENDS
Data Warehousing and Data Mining
Management Information Systems
Chapter 6 Managing Data Resources
41 MIS205: Database & Information
Management
Components of a Data Warehouse: ETL process
DATABASE TRENDS
Management Information Systems
Chapter 6 Managing Data Resources
42 MIS205: Database & Information
Management
Data mart:
• Subset of data warehouse
• Contains summarized or highly focused portion
of data for a specified function or group of users
DATABASE TRENDS
Data mining:
• Tools for analyzing large pools of data
• Find hidden patterns and infer rules to predict
trends
Management Information Systems
Chapter 6 Managing Data Resources
43 MIS205: Database & Information
Management
Benefits of Data Warehouses:
• Improved and easy accessibility to information
• Ability to model and remodel the data
DATABASE TRENDS
Management Information Systems
Chapter 6 Managing Data Resources
44 MIS205: Database & Information
Management
The Web and Hypermedia database:
• Organizes data as network of nodes
• Links nodes in pattern specified by user
• Supports text, graphic, sound, video, and
executable programs
DATABASE TRENDS
Databases and the Web
Management Information Systems
Chapter 6 Managing Data Resources
45 MIS205: Database & Information
Management
A Hypermedia Database
DATABASE TRENDS
Management Information Systems
Chapter 6 Managing Data Resources
46 MIS205: Database & Information
Management
Database server:
• Computer in a client/server environment runs a
DBMS to process SQL statements and perform
database management tasks.
Application server:
• Software handling all application operations
DATABASE TRENDS
Management Information Systems
Chapter 6 Managing Data Resources
Databases and the Web
47 MIS205: Database & Information
Management
Linking Internal Databases to the Web
DATABASE TRENDS
Management Information Systems
Chapter 6 Managing Data Resources
48 MIS205: Database & Information
Management
Management Opportunities:
MANAGEMENT OPPORTUNITIES, CHALLENGES, AND SOLUTIONS
Business firms have exceptional opportunities to
exploit modern relational database technologies to
improve decision making, and to increase the
efficiency of their business processes.
Management Information Systems
Chapter 6 Managing Data Resources
49 MIS205: Database & Information
Management
MANAGEMENT OPPORTUNITIES, CHALLENGES, AND SOLUTIONS
Management Information Systems
Chapter 6 Managing Data Resources
Management Challenges:
• Organizational obstacles to a database environment
Need for cooperation in developing corporate-wide
data administration
• Cost/benefit considerations
Bringing about significant change in the database
environment of a firm can be very expensive and
time consuming.
50 MIS205: Database & Information
Management
Solution Guidelines:
MANAGEMENT OPPORTUNITIES, CHALLENGES, AND SOLUTIONS
The critical elements for creating a database
environment are:
Management Information Systems
Chapter 6 Managing Data Resources
• Data administration
• Data-planning and modeling methodology
• Database technology and management
• Users
51 MIS205: Database & Information
Management
Key Organizational Elements in the Database Environment
Management Information Systems
Chapter 6 Managing Data Resources
MANAGEMENT OPPORTUNITIES, CHALLENGES, AND SOLUTIONS
52 MIS205: Database & Information
Management

More Related Content

What's hot

Traditional vs modern dbms
Traditional vs modern dbmsTraditional vs modern dbms
Traditional vs modern dbms
AYUGUPTA98
 
Data
DataData
Data Library Services In The Data Stewardship Lifecycle
Data Library Services In The Data Stewardship LifecycleData Library Services In The Data Stewardship Lifecycle
Data Library Services In The Data Stewardship Lifecycle
Chuck Humphrey
 
Business Information Systems
Business Information SystemsBusiness Information Systems
Business Information Systems
chrislanger9
 
Data Warehousing
Data WarehousingData Warehousing
Data Warehousing
Kamal Acharya
 
Data Base Fundamentals
Data Base FundamentalsData Base Fundamentals
Data Base Fundamentals
Israel Marcus
 
The Benefits of Tiered Storage
The Benefits of Tiered StorageThe Benefits of Tiered Storage
The Benefits of Tiered Storage
Everteam
 
Data models
Data modelsData models
Data models
RituBhargava7
 
Database and types of database
Database and types of databaseDatabase and types of database
Database and types of database
baabtra.com - No. 1 supplier of quality freshers
 
Database management system (dbms)
Database management system (dbms)Database management system (dbms)
Database management system (dbms)
Amruta Kapoor
 
Chapter 7
Chapter 7Chapter 7
Chapter 7
Bituin Faecho
 
DATABASE MANAGEMENT
DATABASE MANAGEMENTDATABASE MANAGEMENT
DATABASE MANAGEMENT
MiXvideos
 
Metadata
MetadataMetadata
DBMS and its Models
DBMS and its ModelsDBMS and its Models
DBMS and its Models
AhmadShah Sultani
 
Introduction to Data Mining and Data Warehousing
Introduction to Data Mining and Data WarehousingIntroduction to Data Mining and Data Warehousing
Introduction to Data Mining and Data Warehousing
Kamal Acharya
 
Master Data Management
Master Data ManagementMaster Data Management
Master Data Management
MoniqueO Opris
 
Dbms
DbmsDbms
Introduction to Database
Introduction to DatabaseIntroduction to Database
Introduction to Database
FARHAN615
 
Information Technology 104
Information Technology 104Information Technology 104
Information Technology 104
'Vladimir Medina
 
Day 1
Day 1Day 1
Day 1
hicenter
 

What's hot (20)

Traditional vs modern dbms
Traditional vs modern dbmsTraditional vs modern dbms
Traditional vs modern dbms
 
Data
DataData
Data
 
Data Library Services In The Data Stewardship Lifecycle
Data Library Services In The Data Stewardship LifecycleData Library Services In The Data Stewardship Lifecycle
Data Library Services In The Data Stewardship Lifecycle
 
Business Information Systems
Business Information SystemsBusiness Information Systems
Business Information Systems
 
Data Warehousing
Data WarehousingData Warehousing
Data Warehousing
 
Data Base Fundamentals
Data Base FundamentalsData Base Fundamentals
Data Base Fundamentals
 
The Benefits of Tiered Storage
The Benefits of Tiered StorageThe Benefits of Tiered Storage
The Benefits of Tiered Storage
 
Data models
Data modelsData models
Data models
 
Database and types of database
Database and types of databaseDatabase and types of database
Database and types of database
 
Database management system (dbms)
Database management system (dbms)Database management system (dbms)
Database management system (dbms)
 
Chapter 7
Chapter 7Chapter 7
Chapter 7
 
DATABASE MANAGEMENT
DATABASE MANAGEMENTDATABASE MANAGEMENT
DATABASE MANAGEMENT
 
Metadata
MetadataMetadata
Metadata
 
DBMS and its Models
DBMS and its ModelsDBMS and its Models
DBMS and its Models
 
Introduction to Data Mining and Data Warehousing
Introduction to Data Mining and Data WarehousingIntroduction to Data Mining and Data Warehousing
Introduction to Data Mining and Data Warehousing
 
Master Data Management
Master Data ManagementMaster Data Management
Master Data Management
 
Dbms
DbmsDbms
Dbms
 
Introduction to Database
Introduction to DatabaseIntroduction to Database
Introduction to Database
 
Information Technology 104
Information Technology 104Information Technology 104
Information Technology 104
 
Day 1
Day 1Day 1
Day 1
 

Similar to 6. Sim Fanji database dan manajemen informasi

Managing data resources
Managing data resourcesManaging data resources
Managing data resources
Muhammad Ali Khan Naghar
 
Mis11e ch06
Mis11e ch06Mis11e ch06
Mis11e ch06
nghoanganh
 
Foundations_of_Business_Intelligence.ppt
Foundations_of_Business_Intelligence.pptFoundations_of_Business_Intelligence.ppt
Foundations_of_Business_Intelligence.ppt
Septama1
 
Chapter 6 foundations of business intelligence
Chapter 6 foundations of business intelligenceChapter 6 foundations of business intelligence
Chapter 6 foundations of business intelligence
Van Chau
 
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
Sukanya Ben
 
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
ENRIQUE EGLESIAS
 
Traditional File Concepts.ppt
Traditional File Concepts.pptTraditional File Concepts.ppt
Traditional File Concepts.ppt
AnshikaGoel42
 
Laudon_MIS13_ch06.ppt
Laudon_MIS13_ch06.pptLaudon_MIS13_ch06.ppt
Laudon_MIS13_ch06.ppt
anisur_rehman
 
ITE 101 - Week 7
ITE 101 - Week 7ITE 101 - Week 7
ITE 101 - Week 7
Frank Monaco
 
7 - Enterprise IT in Action
7 - Enterprise IT in Action7 - Enterprise IT in Action
7 - Enterprise IT in Action
Raymond Gao
 
4- DB Ch6 18-3-2020.pptx
4- DB Ch6 18-3-2020.pptx4- DB Ch6 18-3-2020.pptx
4- DB Ch6 18-3-2020.pptx
Shoaibmirza18
 
Fundamentals of Database ppt ch01
Fundamentals of Database ppt ch01Fundamentals of Database ppt ch01
Fundamentals of Database ppt ch01
Jotham Gadot
 
Chapter 6
Chapter 6Chapter 6
Chapter 6
uabir
 
IS740 Chapter 05
IS740 Chapter 05IS740 Chapter 05
IS740 Chapter 05
iDocs
 
Databases and Information Management (1).ppt
Databases and Information Management (1).pptDatabases and Information Management (1).ppt
Databases and Information Management (1).ppt
AlaaShaqfa2
 
Chap005
Chap005Chap005
Ch 6.pdf
Ch 6.pdfCh 6.pdf
Ch 6.pdf
Mohamed Ali
 
Foundations of business intelligence databases and information management
Foundations of business intelligence databases and information managementFoundations of business intelligence databases and information management
Foundations of business intelligence databases and information management
Amity University | FMS - DU | IMT | Stratford University | KKMI International Institute | AIMA | DTU
 
Business Intelligence.pptx
Business Intelligence.pptxBusiness Intelligence.pptx
Business Intelligence.pptx
CindyDVUOWMalaysia
 
6 - Foundations of BI: Database & Info Mgmt
6 - Foundations of BI: Database & Info Mgmt6 - Foundations of BI: Database & Info Mgmt
6 - Foundations of BI: Database & Info Mgmt
Hemant Nagwekar
 

Similar to 6. Sim Fanji database dan manajemen informasi (20)

Managing data resources
Managing data resourcesManaging data resources
Managing data resources
 
Mis11e ch06
Mis11e ch06Mis11e ch06
Mis11e ch06
 
Foundations_of_Business_Intelligence.ppt
Foundations_of_Business_Intelligence.pptFoundations_of_Business_Intelligence.ppt
Foundations_of_Business_Intelligence.ppt
 
Chapter 6 foundations of business intelligence
Chapter 6 foundations of business intelligenceChapter 6 foundations of business intelligence
Chapter 6 foundations of business intelligence
 
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
 
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
 
Traditional File Concepts.ppt
Traditional File Concepts.pptTraditional File Concepts.ppt
Traditional File Concepts.ppt
 
Laudon_MIS13_ch06.ppt
Laudon_MIS13_ch06.pptLaudon_MIS13_ch06.ppt
Laudon_MIS13_ch06.ppt
 
ITE 101 - Week 7
ITE 101 - Week 7ITE 101 - Week 7
ITE 101 - Week 7
 
7 - Enterprise IT in Action
7 - Enterprise IT in Action7 - Enterprise IT in Action
7 - Enterprise IT in Action
 
4- DB Ch6 18-3-2020.pptx
4- DB Ch6 18-3-2020.pptx4- DB Ch6 18-3-2020.pptx
4- DB Ch6 18-3-2020.pptx
 
Fundamentals of Database ppt ch01
Fundamentals of Database ppt ch01Fundamentals of Database ppt ch01
Fundamentals of Database ppt ch01
 
Chapter 6
Chapter 6Chapter 6
Chapter 6
 
IS740 Chapter 05
IS740 Chapter 05IS740 Chapter 05
IS740 Chapter 05
 
Databases and Information Management (1).ppt
Databases and Information Management (1).pptDatabases and Information Management (1).ppt
Databases and Information Management (1).ppt
 
Chap005
Chap005Chap005
Chap005
 
Ch 6.pdf
Ch 6.pdfCh 6.pdf
Ch 6.pdf
 
Foundations of business intelligence databases and information management
Foundations of business intelligence databases and information managementFoundations of business intelligence databases and information management
Foundations of business intelligence databases and information management
 
Business Intelligence.pptx
Business Intelligence.pptxBusiness Intelligence.pptx
Business Intelligence.pptx
 
6 - Foundations of BI: Database & Info Mgmt
6 - Foundations of BI: Database & Info Mgmt6 - Foundations of BI: Database & Info Mgmt
6 - Foundations of BI: Database & Info Mgmt
 

More from Yoyo Sudaryo

Syllabus-Financial Planner.doc
Syllabus-Financial Planner.docSyllabus-Financial Planner.doc
Syllabus-Financial Planner.doc
Yoyo Sudaryo
 
Syllabus-Certified Asset Management Professional.doc
Syllabus-Certified Asset Management Professional.docSyllabus-Certified Asset Management Professional.doc
Syllabus-Certified Asset Management Professional.doc
Yoyo Sudaryo
 
Syllabus Chartered Portfolio Analyst.docx
Syllabus Chartered Portfolio Analyst.docxSyllabus Chartered Portfolio Analyst.docx
Syllabus Chartered Portfolio Analyst.docx
Yoyo Sudaryo
 
Syllabus Certified Strategic Business Analyst.doc
Syllabus Certified Strategic Business Analyst.docSyllabus Certified Strategic Business Analyst.doc
Syllabus Certified Strategic Business Analyst.doc
Yoyo Sudaryo
 
Syllabus-Financial Risk Management.docx
Syllabus-Financial Risk Management.docxSyllabus-Financial Risk Management.docx
Syllabus-Financial Risk Management.docx
Yoyo Sudaryo
 
Syllabus CIISA ( Certified Internasional Information System Auditor ).pdf
Syllabus CIISA ( Certified Internasional Information System Auditor ).pdfSyllabus CIISA ( Certified Internasional Information System Auditor ).pdf
Syllabus CIISA ( Certified Internasional Information System Auditor ).pdf
Yoyo Sudaryo
 
silabi Financial Planner Analist.pdf
silabi Financial Planner Analist.pdfsilabi Financial Planner Analist.pdf
silabi Financial Planner Analist.pdf
Yoyo Sudaryo
 
DF.pdf
DF.pdfDF.pdf
DF.pdf
Yoyo Sudaryo
 
Kuliah perdana manajemen keuangan (program mm)
Kuliah perdana manajemen keuangan (program mm)Kuliah perdana manajemen keuangan (program mm)
Kuliah perdana manajemen keuangan (program mm)
Yoyo Sudaryo
 
Manajemen Risiko mm/S1
Manajemen Risiko mm/S1Manajemen Risiko mm/S1
Manajemen Risiko mm/S1
Yoyo Sudaryo
 
Mnd013 aibk-RPS
Mnd013 aibk-RPSMnd013 aibk-RPS
Mnd013 aibk-RPS
Yoyo Sudaryo
 
Factors that affect financial distress
Factors that affect financial distressFactors that affect financial distress
Factors that affect financial distress
Yoyo Sudaryo
 
Perwalian sesi 2
Perwalian sesi 2Perwalian sesi 2
Perwalian sesi 2
Yoyo Sudaryo
 
MJ STRATEGIK CSR 15
MJ STRATEGIK CSR 15MJ STRATEGIK CSR 15
MJ STRATEGIK CSR 15
Yoyo Sudaryo
 
Kuliah 1-15 mj strategik paran
Kuliah 1-15 mj strategik paranKuliah 1-15 mj strategik paran
Kuliah 1-15 mj strategik paran
Yoyo Sudaryo
 
Review Strategik 15
Review Strategik 15 Review Strategik 15
Review Strategik 15
Yoyo Sudaryo
 
Mnd013 AIBK-materi-sesi 15
Mnd013 AIBK-materi-sesi 15Mnd013 AIBK-materi-sesi 15
Mnd013 AIBK-materi-sesi 15
Yoyo Sudaryo
 
An overview of international financial management
An overview of international financial management An overview of international financial management
An overview of international financial management
Yoyo Sudaryo
 
Mnd013 analisis inv bank dan lembaga keuangan-modul-sesi 6
Mnd013 analisis inv bank dan lembaga keuangan-modul-sesi 6Mnd013 analisis inv bank dan lembaga keuangan-modul-sesi 6
Mnd013 analisis inv bank dan lembaga keuangan-modul-sesi 6
Yoyo Sudaryo
 
Mnd013 analisis inv bank dan lembaga keuangan-materi-sesi 6
Mnd013 analisis inv bank dan lembaga keuangan-materi-sesi 6Mnd013 analisis inv bank dan lembaga keuangan-materi-sesi 6
Mnd013 analisis inv bank dan lembaga keuangan-materi-sesi 6
Yoyo Sudaryo
 

More from Yoyo Sudaryo (20)

Syllabus-Financial Planner.doc
Syllabus-Financial Planner.docSyllabus-Financial Planner.doc
Syllabus-Financial Planner.doc
 
Syllabus-Certified Asset Management Professional.doc
Syllabus-Certified Asset Management Professional.docSyllabus-Certified Asset Management Professional.doc
Syllabus-Certified Asset Management Professional.doc
 
Syllabus Chartered Portfolio Analyst.docx
Syllabus Chartered Portfolio Analyst.docxSyllabus Chartered Portfolio Analyst.docx
Syllabus Chartered Portfolio Analyst.docx
 
Syllabus Certified Strategic Business Analyst.doc
Syllabus Certified Strategic Business Analyst.docSyllabus Certified Strategic Business Analyst.doc
Syllabus Certified Strategic Business Analyst.doc
 
Syllabus-Financial Risk Management.docx
Syllabus-Financial Risk Management.docxSyllabus-Financial Risk Management.docx
Syllabus-Financial Risk Management.docx
 
Syllabus CIISA ( Certified Internasional Information System Auditor ).pdf
Syllabus CIISA ( Certified Internasional Information System Auditor ).pdfSyllabus CIISA ( Certified Internasional Information System Auditor ).pdf
Syllabus CIISA ( Certified Internasional Information System Auditor ).pdf
 
silabi Financial Planner Analist.pdf
silabi Financial Planner Analist.pdfsilabi Financial Planner Analist.pdf
silabi Financial Planner Analist.pdf
 
DF.pdf
DF.pdfDF.pdf
DF.pdf
 
Kuliah perdana manajemen keuangan (program mm)
Kuliah perdana manajemen keuangan (program mm)Kuliah perdana manajemen keuangan (program mm)
Kuliah perdana manajemen keuangan (program mm)
 
Manajemen Risiko mm/S1
Manajemen Risiko mm/S1Manajemen Risiko mm/S1
Manajemen Risiko mm/S1
 
Mnd013 aibk-RPS
Mnd013 aibk-RPSMnd013 aibk-RPS
Mnd013 aibk-RPS
 
Factors that affect financial distress
Factors that affect financial distressFactors that affect financial distress
Factors that affect financial distress
 
Perwalian sesi 2
Perwalian sesi 2Perwalian sesi 2
Perwalian sesi 2
 
MJ STRATEGIK CSR 15
MJ STRATEGIK CSR 15MJ STRATEGIK CSR 15
MJ STRATEGIK CSR 15
 
Kuliah 1-15 mj strategik paran
Kuliah 1-15 mj strategik paranKuliah 1-15 mj strategik paran
Kuliah 1-15 mj strategik paran
 
Review Strategik 15
Review Strategik 15 Review Strategik 15
Review Strategik 15
 
Mnd013 AIBK-materi-sesi 15
Mnd013 AIBK-materi-sesi 15Mnd013 AIBK-materi-sesi 15
Mnd013 AIBK-materi-sesi 15
 
An overview of international financial management
An overview of international financial management An overview of international financial management
An overview of international financial management
 
Mnd013 analisis inv bank dan lembaga keuangan-modul-sesi 6
Mnd013 analisis inv bank dan lembaga keuangan-modul-sesi 6Mnd013 analisis inv bank dan lembaga keuangan-modul-sesi 6
Mnd013 analisis inv bank dan lembaga keuangan-modul-sesi 6
 
Mnd013 analisis inv bank dan lembaga keuangan-materi-sesi 6
Mnd013 analisis inv bank dan lembaga keuangan-materi-sesi 6Mnd013 analisis inv bank dan lembaga keuangan-materi-sesi 6
Mnd013 analisis inv bank dan lembaga keuangan-materi-sesi 6
 

Recently uploaded

IMG_20240615_091110.pdf dpboss guessing
IMG_20240615_091110.pdf dpboss  guessingIMG_20240615_091110.pdf dpboss  guessing
2024.06 CPMN Cambridge - Beyond Now-Next-Later.pdf
2024.06 CPMN Cambridge - Beyond Now-Next-Later.pdf2024.06 CPMN Cambridge - Beyond Now-Next-Later.pdf
2024.06 CPMN Cambridge - Beyond Now-Next-Later.pdf
Cambridge Product Management Network
 
MECE (Mutually Exclusive, Collectively Exhaustive) Principle
MECE (Mutually Exclusive, Collectively Exhaustive) PrincipleMECE (Mutually Exclusive, Collectively Exhaustive) Principle
MECE (Mutually Exclusive, Collectively Exhaustive) Principle
Operational Excellence Consulting
 
L'indice de performance des ports à conteneurs de l'année 2023
L'indice de performance des ports à conteneurs de l'année 2023L'indice de performance des ports à conteneurs de l'année 2023
L'indice de performance des ports à conteneurs de l'année 2023
SPATPortToamasina
 
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
➒➌➎➏➑➐➋➑➐➐Dpboss Matka Guessing Satta Matka Kalyan Chart Indian Matka
 
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
➒➌➎➏➑➐➋➑➐➐Dpboss Matka Guessing Satta Matka Kalyan Chart Indian Matka
 
PDT 99 - $3.5M - Seed - Feel Therapeutics.pdf
PDT 99 - $3.5M - Seed - Feel Therapeutics.pdfPDT 99 - $3.5M - Seed - Feel Therapeutics.pdf
PDT 99 - $3.5M - Seed - Feel Therapeutics.pdf
HajeJanKamps
 
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results
 
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results
 
Kanban Coaching Exchange with Dave White - Example SDR Report
Kanban Coaching Exchange with Dave White - Example SDR ReportKanban Coaching Exchange with Dave White - Example SDR Report
Kanban Coaching Exchange with Dave White - Example SDR Report
Helen Meek
 
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results
 
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results
 
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
➒➌➎➏➑➐➋➑➐➐Dpboss Matka Guessing Satta Matka Kalyan Chart Indian Matka
 
Adani Group Requests For Additional Land For Its Dharavi Redevelopment Projec...
Adani Group Requests For Additional Land For Its Dharavi Redevelopment Projec...Adani Group Requests For Additional Land For Its Dharavi Redevelopment Projec...
Adani Group Requests For Additional Land For Its Dharavi Redevelopment Projec...
Adani case
 
TriStar Gold Corporate Presentation - June 2024
TriStar Gold Corporate Presentation - June 2024TriStar Gold Corporate Presentation - June 2024
TriStar Gold Corporate Presentation - June 2024
Adnet Communications
 
Adani Group's Active Interest In Increasing Its Presence in the Cement Manufa...
Adani Group's Active Interest In Increasing Its Presence in the Cement Manufa...Adani Group's Active Interest In Increasing Its Presence in the Cement Manufa...
Adani Group's Active Interest In Increasing Its Presence in the Cement Manufa...
Adani case
 
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
➒➌➎➏➑➐➋➑➐➐Dpboss Matka Guessing Satta Matka Kalyan Chart Indian Matka
 
Enhancing Adoption of AI in Agri-food: Introduction
Enhancing Adoption of AI in Agri-food: IntroductionEnhancing Adoption of AI in Agri-food: Introduction
Enhancing Adoption of AI in Agri-food: Introduction
Cor Verdouw
 
Science Around Us Module 2 Matter Around Us
Science Around Us Module 2 Matter Around UsScience Around Us Module 2 Matter Around Us
Science Around Us Module 2 Matter Around Us
PennapaKeavsiri
 
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results
 

Recently uploaded (20)

IMG_20240615_091110.pdf dpboss guessing
IMG_20240615_091110.pdf dpboss  guessingIMG_20240615_091110.pdf dpboss  guessing
IMG_20240615_091110.pdf dpboss guessing
 
2024.06 CPMN Cambridge - Beyond Now-Next-Later.pdf
2024.06 CPMN Cambridge - Beyond Now-Next-Later.pdf2024.06 CPMN Cambridge - Beyond Now-Next-Later.pdf
2024.06 CPMN Cambridge - Beyond Now-Next-Later.pdf
 
MECE (Mutually Exclusive, Collectively Exhaustive) Principle
MECE (Mutually Exclusive, Collectively Exhaustive) PrincipleMECE (Mutually Exclusive, Collectively Exhaustive) Principle
MECE (Mutually Exclusive, Collectively Exhaustive) Principle
 
L'indice de performance des ports à conteneurs de l'année 2023
L'indice de performance des ports à conteneurs de l'année 2023L'indice de performance des ports à conteneurs de l'année 2023
L'indice de performance des ports à conteneurs de l'année 2023
 
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
 
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
 
PDT 99 - $3.5M - Seed - Feel Therapeutics.pdf
PDT 99 - $3.5M - Seed - Feel Therapeutics.pdfPDT 99 - $3.5M - Seed - Feel Therapeutics.pdf
PDT 99 - $3.5M - Seed - Feel Therapeutics.pdf
 
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
 
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
 
Kanban Coaching Exchange with Dave White - Example SDR Report
Kanban Coaching Exchange with Dave White - Example SDR ReportKanban Coaching Exchange with Dave White - Example SDR Report
Kanban Coaching Exchange with Dave White - Example SDR Report
 
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
 
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
 
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
 
Adani Group Requests For Additional Land For Its Dharavi Redevelopment Projec...
Adani Group Requests For Additional Land For Its Dharavi Redevelopment Projec...Adani Group Requests For Additional Land For Its Dharavi Redevelopment Projec...
Adani Group Requests For Additional Land For Its Dharavi Redevelopment Projec...
 
TriStar Gold Corporate Presentation - June 2024
TriStar Gold Corporate Presentation - June 2024TriStar Gold Corporate Presentation - June 2024
TriStar Gold Corporate Presentation - June 2024
 
Adani Group's Active Interest In Increasing Its Presence in the Cement Manufa...
Adani Group's Active Interest In Increasing Its Presence in the Cement Manufa...Adani Group's Active Interest In Increasing Its Presence in the Cement Manufa...
Adani Group's Active Interest In Increasing Its Presence in the Cement Manufa...
 
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
➒➌➎➏➑➐➋➑➐➐ Satta Matka Dpboss Matka Guessing Indian Matka
 
Enhancing Adoption of AI in Agri-food: Introduction
Enhancing Adoption of AI in Agri-food: IntroductionEnhancing Adoption of AI in Agri-food: Introduction
Enhancing Adoption of AI in Agri-food: Introduction
 
Science Around Us Module 2 Matter Around Us
Science Around Us Module 2 Matter Around UsScience Around Us Module 2 Matter Around Us
Science Around Us Module 2 Matter Around Us
 
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan ChartSatta Matka Dpboss Kalyan Matka Results Kalyan Chart
Satta Matka Dpboss Kalyan Matka Results Kalyan Chart
 

6. Sim Fanji database dan manajemen informasi

  • 1. Chapter : 6 Database & Information Management Sekolah Tinggil Ilmu Ekonomi Indonesia Membangun 27-04-2020
  • 2. • Describe basic file organization concepts and the problems of managing data resources in a traditional file environment • Describe how a database management system organizes information and compare the principal database models • Apply important database design principles Management Information Systems Chapter 6 Managing Data Resources OBJECTIVES 2 MIS205: Database & Information Management
  • 3. • Evaluate new database trends • Identify the challenges posed by data resource management and management solutions OBJECTIVES (Continued) Management Information Systems Chapter 6 Managing Data Resources 3 MIS205: Database & Information Management
  • 4.  Challenge: Fragmented and isolated corporate systems creating a single integrated view of customers and operations  Solution: single integrated corporate data warehouse, using a single data model.  Oracle 9i database provides near real-time access to customer activity, customer profitability, and customer reactions  Illustrates the importance of managing data resources for achieving profitability Management Information Systems Chapter 6 Managing Data Resources Virgin Mobile Australia Case 4 MIS205: Database & Information Management
  • 5. File Organization Terms and Concepts • Bit: Smallest unit of data; binary digit (0,1) • Byte: Group of bits (8 bits) that represents a single character • Field: Group of words or a complete number • Record: Group of related fields • File: Group of records of same type ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT Management Information Systems Chapter 6 Managing Data Resources 5 MIS205: Database & Information Management
  • 6. ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT The Data Hierarchy Management Information Systems Chapter 6 Managing Data Resources 6
  • 7. • Database: Group of related files • Entity: Person, place, thing, event about which information is maintained (Table name) • Attribute: Description of a particular entity (Column name) • Key field: Identifier field used to retrieve, update, sort a record ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT Management Information Systems Chapter 6 Managing Data Resources File Organization Terms and Concepts (Continued) 7 MIS205: Database & Information Management
  • 8. ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT Entities and Attributes Management Information Systems Chapter 6 Managing Data Resources 8 MIS205: Database & Information Management
  • 9. Problems with the Traditional File Environment Data Redundancy and Inconsistency: • Data redundancy: The presence of duplicate data in multiple data files so that the same data are stored in more than one place or location • Data inconsistency: The same attribute may have different values. ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT Management Information Systems Chapter 6 Managing Data Resources 9 MIS205: Database & Information Management
  • 10. • The coupling of data stored in files and the specific programs required to update and maintain those files such that changes in programs require changes to the data Lack of flexibility: • A traditional file system can deliver routine scheduled reports after extensive programming efforts, but it cannot deliver ad-hoc reports or respond to unanticipated information requirements in a timely fashion. ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT Management Information Systems Chapter 6 Managing Data Resources Program-data dependence: Problems with the Traditional File Environment (Continued) 10 MIS205: Database & Information Management
  • 11. • Because there is little control or management of data, management will have no knowledge of who is accessing or even making changes to the organization’s data. Lack of data sharing and availability: • Information cannot flow freely across different functional areas or different parts of the organization. Users find different values of the same piece of information in two different systems, and hence they may not use these systems because they cannot trust the accuracy of the data. ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT Management Information Systems Chapter 6 Managing Data Resources Poor security: Problems with the Traditional File Environment (Continued) 11 MIS205: Database & Information Management
  • 12. ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT Traditional File Processing Management Information Systems Chapter 6 Managing Data Resources 12 MIS205: Database & Information Management
  • 13. Database Management System (DBMS) • Software for creating and maintaining databases • Permits firms to rationally manage data for the entire firm • Acts as interface between application programs and physical data files • Separates logical and design views of data • Solves many problems of the traditional data file approach THE DATABASE APPROACH TO DATA MANAGEMENT Management Information Systems Chapter 6 Managing Data Resources 13 MIS205: Database & Information Management
  • 14. The Contemporary Database Environment THE DATABASE APPROACH TO DATA MANAGEMENT Management Information Systems Chapter 6 Managing Data Resources 14 MIS205: Database & Information Management
  • 15. Components of DBMS: • Data definition language: Specifies content and structure of database and defines each data element • Data manipulation language: Used to process data in a database • Data dictionary: Stores definitions of data elements and data characteristics (data about data) THE DATABASE APPROACH TO DATA MANAGEMENT Management Information Systems Chapter 6 Managing Data Resources 15 MIS205: Database & Information Management
  • 16. Sample Data Dictionary Report THE DATABASE APPROACH TO DATA MANAGEMENT Management Information Systems Chapter 6 Managing Data Resources 16 MIS205: Database & Information Management
  • 17. Types of Databases: • Relational DBMS • Hierarchical and network DBMS • Object-oriented databases THE DATABASE APPROACH TO DATA MANAGEMENT Management Information Systems Chapter 6 Managing Data Resources 17 MIS205: Database & Information Management
  • 18. Relational DBMS: • Represents data as two-dimensional tables called relations • Relates data across tables based on common data element • Examples: DB2, Oracle, MS SQL Server THE DATABASE APPROACH TO DATA MANAGEMENT Management Information Systems Chapter 6 Managing Data Resources 18 MIS205: Database & Information Management
  • 19. The Relational Data Model THE DATABASE APPROACH TO DATA MANAGEMENT Management Information Systems Chapter 6 Managing Data Resources 19 MIS205: Database & Information Management
  • 20. Three Basic Operations in a Relational Database: • Select: Creates subset of rows that meet specific criteria • Join: Combines relational tables to provide users with information • Project: Enables users to create new tables containing only relevant information THE DATABASE APPROACH TO DATA MANAGEMENT Management Information Systems Chapter 6 Managing Data Resources 20 MIS205: Database & Information Management
  • 21. The Three Basic Operations of a Relational DBMS THE DATABASE APPROACH TO DATA MANAGEMENT Management Information Systems Chapter 6 Managing Data Resources 21 MIS205: Database & Information Management
  • 22. Hierarchical and Network DBMS • Organizes data in a tree-like structure • Supports one-to-many parent-child relationships • Prevalent in large legacy systems THE DATABASE APPROACH TO DATA MANAGEMENT Hierarchical DBMS: Management Information Systems Chapter 6 Managing Data Resources 22 MIS205: Database & Information Management
  • 23. A Hierarchical Database for a Human Resources System THE DATABASE APPROACH TO DATA MANAGEMENT Management Information Systems Chapter 6 Managing Data Resources 23 MIS205: Database & Information Management
  • 24. Hierarchical and Network DBMS • Depicts data logically as many-to-many relationships THE DATABASE APPROACH TO DATA MANAGEMENT Network DBMS: Management Information Systems Chapter 6 Managing Data Resources 24 MIS205: Database & Information Management
  • 25. The Network Data Model Management Information Systems Chapter 6 Managing Data Resources THE DATABASE APPROACH TO DATA MANAGEMENT 25 MIS205: Database & Information Management
  • 26. Hierarchical and Network DBMS • Outdated • Less flexible compared to RDBMS • Lack support for ad-hoc and English language- like queries Disadvantages: Management Information Systems Chapter 6 Managing Data Resources THE DATABASE APPROACH TO DATA MANAGEMENT 26 MIS205: Database & Information Management
  • 27. • Can well-handle graphic based and multimedia applications • Stores data and procedures as objects that can be retrieved and shared automatically • Hybrid Object-relational DBMS provides capabilities of both object-oriented and relational DBMS Object-Oriented DBMS: Management Information Systems Chapter 6 Managing Data Resources THE DATABASE APPROACH TO DATA MANAGEMENT 27 MIS205: Database & Information Management
  • 28. • Conceptual design: Abstract model of database from a business perspective • Physical design: Detailed description of business information needs CREATING A DATABASE ENVIRONMENT Designing Databases: Management Information Systems Chapter 6 Managing Data Resources 28 MIS205: Database & Information Management
  • 29. • Entity-Relationship (ER) diagram: Methodology for documenting databases illustrating relationships between database entities • Normalization: Process of creating small stable data structures from complex groups of data CREATING A DATABASE ENVIRONMENT Management Information Systems Chapter 6 Managing Data Resources Designing Databases: (Continued) 29 MIS205: Database & Information Management
  • 30. MIS205: Database & Information Management 30 An Entity-Relationship Diagram Management Information Systems Chapter 6 Managing Data Resources
  • 31. An Unnormalized Relation for ORDER CREATING A DATABASE ENVIRONMENT Management Information Systems Chapter 6 Managing Data Resources 31 MIS205: Database & Information Management
  • 32. Normalized Tables Created from ORDER CREATING A DATABASE ENVIRONMENT Management Information Systems Chapter 6 Managing Data Resources 32 MIS205: Database & Information Management
  • 33. Centralized database: • Used by single central processor or multiple processors in client/server network • There are advantages and disadvantages to having all corporate data in one location. • Security is higher in central environments, risks lower. • If data demands are highly decentralized, then a decentralized design is less costly, and more flexible. CREATING A DATABASE ENVIRONMENT Distributing Databases Management Information Systems Chapter 6 Managing Data Resources 33 MIS205: Database & Information Management
  • 34. • Databases can be decentralized either by partitioning or by replicating • Partitioned database: Database is divided into segments or regions. For example, a customer database can be divided into Eastern customers and Western customers, and two separate databases maintained in the two regions. CREATING A DATABASE ENVIRONMENT Distributed database: Management Information Systems Chapter 6 Managing Data Resources 34 MIS205: Database & Information Management
  • 35. • Duplicated database: The database is completely duplicated at two or more locations. The separate databases are synchronized in off hours on a batch basis. • Regardless of which method is chosen, data administrators and business managers need to understand how the data in different databases will be coordinated and how business processes might be effected by the decentralization. CREATING A DATABASE ENVIRONMENT Management Information Systems Chapter 6 Managing Data Resources 35 MIS205: Database & Information Management
  • 36. Distributed Databases CREATING A DATABASE ENVIRONMENT Management Information Systems Chapter 6 Managing Data Resources 36 MIS205: Database & Information Management
  • 37. Ensuring Data Quality: • Corporate and government databases have unexpectedly poor levels of data quality. • National consumer credit reporting databases have error rates of 20-35%. • 32% of the records in the FBI’s Computerized Criminal History file are inaccurate, incomplete, or ambiguous. • Gartner Group estimates that consumer data in corporate databases degrades at the rate of 2% a month. CREATING A DATABASE ENVIRONMENT Management Information Systems Chapter 6 Managing Data Resources 37 MIS205: Database & Information Management
  • 38. • The quality of decision making in a firm is directly related to the quality of data in its databases. • Data Quality Audit: Structured survey of the accuracy and level of completeness of the data in an information system. Statistical methods may be used in conducting data quality audit. • Data Cleansing: Consists of activities for detecting and correcting data in a database or file that are incorrect, incomplete, improperly formatted, or redundant CREATING A DATABASE ENVIRONMENT Management Information Systems Chapter 6 Managing Data Resources Ensuring Data Quality: (Continued) 38 MIS205: Database & Information Management
  • 39. Online Analytical Processing (OLAP): • Multidimensional data analysis • Supports manipulation and analysis of large volumes of data from multiple dimensions/perspectives DATABASE TRENDS Multidimensional Data Analysis Management Information Systems Chapter 6 Managing Data Resources 39 MIS205: Database & Information Management
  • 40. Multidimensional Data Model DATABASE TRENDS Management Information Systems Chapter 6 Managing Data Resources 40 MIS205: Database & Information Management
  • 41. Data warehouse: • Supports reporting and query tools • Stores current and historical data • Consolidates data for management analysis and decision making DATABASE TRENDS Data Warehousing and Data Mining Management Information Systems Chapter 6 Managing Data Resources 41 MIS205: Database & Information Management
  • 42. Components of a Data Warehouse: ETL process DATABASE TRENDS Management Information Systems Chapter 6 Managing Data Resources 42 MIS205: Database & Information Management
  • 43. Data mart: • Subset of data warehouse • Contains summarized or highly focused portion of data for a specified function or group of users DATABASE TRENDS Data mining: • Tools for analyzing large pools of data • Find hidden patterns and infer rules to predict trends Management Information Systems Chapter 6 Managing Data Resources 43 MIS205: Database & Information Management
  • 44. Benefits of Data Warehouses: • Improved and easy accessibility to information • Ability to model and remodel the data DATABASE TRENDS Management Information Systems Chapter 6 Managing Data Resources 44 MIS205: Database & Information Management
  • 45. The Web and Hypermedia database: • Organizes data as network of nodes • Links nodes in pattern specified by user • Supports text, graphic, sound, video, and executable programs DATABASE TRENDS Databases and the Web Management Information Systems Chapter 6 Managing Data Resources 45 MIS205: Database & Information Management
  • 46. A Hypermedia Database DATABASE TRENDS Management Information Systems Chapter 6 Managing Data Resources 46 MIS205: Database & Information Management
  • 47. Database server: • Computer in a client/server environment runs a DBMS to process SQL statements and perform database management tasks. Application server: • Software handling all application operations DATABASE TRENDS Management Information Systems Chapter 6 Managing Data Resources Databases and the Web 47 MIS205: Database & Information Management
  • 48. Linking Internal Databases to the Web DATABASE TRENDS Management Information Systems Chapter 6 Managing Data Resources 48 MIS205: Database & Information Management
  • 49. Management Opportunities: MANAGEMENT OPPORTUNITIES, CHALLENGES, AND SOLUTIONS Business firms have exceptional opportunities to exploit modern relational database technologies to improve decision making, and to increase the efficiency of their business processes. Management Information Systems Chapter 6 Managing Data Resources 49 MIS205: Database & Information Management
  • 50. MANAGEMENT OPPORTUNITIES, CHALLENGES, AND SOLUTIONS Management Information Systems Chapter 6 Managing Data Resources Management Challenges: • Organizational obstacles to a database environment Need for cooperation in developing corporate-wide data administration • Cost/benefit considerations Bringing about significant change in the database environment of a firm can be very expensive and time consuming. 50 MIS205: Database & Information Management
  • 51. Solution Guidelines: MANAGEMENT OPPORTUNITIES, CHALLENGES, AND SOLUTIONS The critical elements for creating a database environment are: Management Information Systems Chapter 6 Managing Data Resources • Data administration • Data-planning and modeling methodology • Database technology and management • Users 51 MIS205: Database & Information Management
  • 52. Key Organizational Elements in the Database Environment Management Information Systems Chapter 6 Managing Data Resources MANAGEMENT OPPORTUNITIES, CHALLENGES, AND SOLUTIONS 52 MIS205: Database & Information Management