SlideShare une entreprise Scribd logo
1  sur  52
7.1 © 2006 by Prentice Hall
Traditional File
Concepts
7.2 © 2006 by Prentice Hall
• 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
OBJECTIVES
7.3 © 2006 by Prentice Hall
• Evaluate new database trends
• Identify the challenges posed by data resource
management and management solutions
OBJECTIVES (Continued)
7.4 © 2006 by Prentice Hall
• 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
Virgin Mobile Australia Case
7.5 © 2006 by Prentice Hall
File Organization Terms and Concepts
• Bit: Smallest unit of data; binary digit (0,1)
• Byte: Group of 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
7.6 © 2006 by Prentice Hall
• Database: Group of related files
• Entity: Person, place, thing, event about which
information is maintained
• Attribute: Description of a particular entity
• Key field: Identifier field used to retrieve, update,
sort a record
ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT
File Organization Terms and Concepts (Continued)
7.7 © 2006 by Prentice Hall
ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT
The Data Hierarchy
Figure 7-1
7.8 © 2006 by Prentice Hall
ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT
Entities and Attributes
Figure 7-2
7.9 © 2006 by Prentice Hall
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
7.10 © 2006 by Prentice Hall
• 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
Program-data dependence:
Problems with the Traditional File Environment (Continued)
7.11 © 2006 by Prentice Hall
• 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
Poor security:
Problems with the Traditional File Environment (Continued)
7.12 © 2006 by Prentice Hall
ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT
Traditional File Processing
Figure 7-3
7.13 © 2006 by Prentice Hall
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
7.14 © 2006 by Prentice Hall
The Contemporary Database Environment
THE DATABASE APPROACH TO DATA MANAGEMENT
Figure 7-4
7.15 © 2006 by Prentice Hall
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
THE DATABASE APPROACH TO DATA MANAGEMENT
7.16 © 2006 by Prentice Hall
Sample Data Dictionary Report
THE DATABASE APPROACH TO DATA MANAGEMENT
Figure 7-5
7.17 © 2006 by Prentice Hall
Types of Databases:
• Relational DBMS
• Hierarchical and network DBMS
• Object-oriented databases
THE DATABASE APPROACH TO DATA MANAGEMENT
7.18 © 2006 by Prentice Hall
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
7.19 © 2006 by Prentice Hall
The Relational Data Model
THE DATABASE APPROACH TO DATA MANAGEMENT
Figure 7-6
7.20 © 2006 by Prentice Hall
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
7.21 © 2006 by Prentice Hall
The Three Basic Operations of a Relational DBMS
THE DATABASE APPROACH TO DATA MANAGEMENT
Figure 7-7
7.22 © 2006 by Prentice Hall
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:
7.23 © 2006 by Prentice Hall
A Hierarchical Database for a Human Resources System
THE DATABASE APPROACH TO DATA MANAGEMENT
Figure 7-8
7.24 © 2006 by Prentice Hall
Hierarchical and Network DBMS
• Depicts data logically as many-to-many
relationships
THE DATABASE APPROACH TO DATA MANAGEMENT
Network DBMS:
7.25 © 2006 by Prentice Hall
The Network Data Model
Figure 7-9
THE DATABASE APPROACH TO DATA MANAGEMENT
7.26 © 2006 by Prentice Hall
Hierarchical and Network DBMS
• Outdated
• Less flexible compared to RDBMS
• Lack support for ad-hoc and English language-
like queries
Disadvantages:
THE DATABASE APPROACH TO DATA MANAGEMENT
7.27 © 2006 by Prentice Hall
• Object-oriented DBMS: Stores data and
procedures as objects that can be retrieved and
shared automatically
• Object-relational DBMS: Provides capabilities of
both object-oriented and relational DBMS
Object-Oriented Databases:
THE DATABASE APPROACH TO DATA MANAGEMENT
7.28 © 2006 by Prentice Hall
• Conceptual design: Abstract model of database
from a business perspective
• Physical design: Detailed description of business
information needs
CREATING A DATABASE ENVIRONMENT
Designing Databases:
7.29 © 2006 by Prentice Hall
• Entity-relationship 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
Designing Databases: (Continued)
7.30 © 2006 by Prentice Hall
An Unnormalized Relation for ORDER
CREATING A DATABASE ENVIRONMENT
Figure 7-10
7.31 © 2006 by Prentice Hall
Normalized Tables Created from ORDER
CREATING A DATABASE ENVIRONMENT
Figure 7-11
7.32 © 2006 by Prentice Hall
An Entity-Relationship Diagram
CREATING A DATABASE ENVIRONMENT
Figure 7-12
7.33 © 2006 by Prentice Hall
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
7.34 © 2006 by Prentice Hall
• 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:
7.35 © 2006 by Prentice Hall
• 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
7.36 © 2006 by Prentice Hall
Distributed Databases
CREATING A DATABASE ENVIRONMENT
Figure 7-13
7.37 © 2006 by Prentice Hall
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
7.38 © 2006 by Prentice Hall
• 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
• 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
Ensuring Data Quality: (Continued)
7.39 © 2006 by Prentice Hall
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
7.40 © 2006 by Prentice Hall
Multidimensional Data Model
DATABASE TRENDS
Figure 7-14
7.41 © 2006 by Prentice Hall
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
7.42 © 2006 by Prentice Hall
Components of a Data Warehouse
DATABASE TRENDS
Figure 7-15
7.43 © 2006 by Prentice Hall
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
7.44 © 2006 by Prentice Hall
Benefits of Data Warehouses:
• Improved and easy accessibility to information
• Ability to model and remodel the data
DATABASE TRENDS
7.45 © 2006 by Prentice Hall
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
7.46 © 2006 by Prentice Hall
A Hypermedia Database
DATABASE TRENDS
Figure 7-16
7.47 © 2006 by Prentice Hall
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
Databases and the Web
7.48 © 2006 by Prentice Hall
Linking Internal Databases to the Web
DATABASE TRENDS
Figure 7-17
7.49 © 2006 by Prentice Hall
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.
7.50 © 2006 by Prentice Hall
MANAGEMENT OPPORTUNITIES, CHALLENGES, AND SOLUTIONS
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.
7.51 © 2006 by Prentice Hall
Solution Guidelines:
MANAGEMENT OPPORTUNITIES, CHALLENGES, AND SOLUTIONS
The critical elements for creating a database
environment are:
• Data administration
• Data-planning and modeling methodology
• Database technology and management
• Users
7.52 © 2006 by Prentice Hall
Key Organizational Elements in the Database Environment
MANAGEMENT OPPORTUNITIES, CHALLENGES, AND SOLUTIONS
Figure 7-18

Contenu connexe

Tendances

System Development Life Cycle (SDLC)
System Development Life Cycle (SDLC)System Development Life Cycle (SDLC)
System Development Life Cycle (SDLC)
fentrekin
 
Management Information Systems
Management  Information  SystemsManagement  Information  Systems
Management Information Systems
Ram Dutt Shukla
 

Tendances (20)

STRATEGIC ROLE OF ‎INFORMATION SYSTEMS
STRATEGIC ROLE OF ‎INFORMATION SYSTEMSSTRATEGIC ROLE OF ‎INFORMATION SYSTEMS
STRATEGIC ROLE OF ‎INFORMATION SYSTEMS
 
Implementation of MIS and its methods
Implementation of MIS and its methodsImplementation of MIS and its methods
Implementation of MIS and its methods
 
System Development Life Cycle (SDLC)
System Development Life Cycle (SDLC)System Development Life Cycle (SDLC)
System Development Life Cycle (SDLC)
 
Mis planning
Mis planningMis planning
Mis planning
 
6.1 concepts of information systems
6.1 concepts of information systems6.1 concepts of information systems
6.1 concepts of information systems
 
Implementation evaluation and maintenance of the mis
Implementation evaluation and maintenance of the misImplementation evaluation and maintenance of the mis
Implementation evaluation and maintenance of the mis
 
Managing data resources
Managing  data resourcesManaging  data resources
Managing data resources
 
System Development Life Cycle (SDLC)
System Development Life Cycle (SDLC)System Development Life Cycle (SDLC)
System Development Life Cycle (SDLC)
 
Mis structure of digital firm
Mis structure of digital firmMis structure of digital firm
Mis structure of digital firm
 
Transaction processing system
Transaction processing systemTransaction processing system
Transaction processing system
 
Types dbms
Types dbmsTypes dbms
Types dbms
 
Hrd culture
Hrd cultureHrd culture
Hrd culture
 
Human resource information systems (1)
Human resource information systems (1)Human resource information systems (1)
Human resource information systems (1)
 
System design
System designSystem design
System design
 
Rdbms
RdbmsRdbms
Rdbms
 
Management Information Systems
Management  Information  SystemsManagement  Information  Systems
Management Information Systems
 
Data Dictionary
Data DictionaryData Dictionary
Data Dictionary
 
End user development approach mis
End user development approach mis End user development approach mis
End user development approach mis
 
Multiple approaches to structure of mis
Multiple approaches to structure of misMultiple approaches to structure of mis
Multiple approaches to structure of mis
 
Management Information System Types
Management Information System TypesManagement Information System Types
Management Information System Types
 

Similaire à Traditional File Concepts.ppt

Foundations_of_Business_Intelligence.ppt
Foundations_of_Business_Intelligence.pptFoundations_of_Business_Intelligence.ppt
Foundations_of_Business_Intelligence.ppt
Septama1
 
6. Sim Fanji database dan manajemen informasi
6. Sim Fanji database dan manajemen informasi 6. Sim Fanji database dan manajemen informasi
6. Sim Fanji database dan manajemen informasi
Yoyo Sudaryo
 
Database Management.pptxqqwwqwqwqqweqwqw
Database Management.pptxqqwwqwqwqqweqwqwDatabase Management.pptxqqwwqwqwqqweqwqw
Database Management.pptxqqwwqwqwqqweqwqw
adrianantopina1
 
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
 
Week 1 and 2 Getting started with DBMS.pptx
Week 1 and 2 Getting started with DBMS.pptxWeek 1 and 2 Getting started with DBMS.pptx
Week 1 and 2 Getting started with DBMS.pptx
Riannel Tecson
 

Similaire à Traditional File Concepts.ppt (20)

Foundations_of_Business_Intelligence.ppt
Foundations_of_Business_Intelligence.pptFoundations_of_Business_Intelligence.ppt
Foundations_of_Business_Intelligence.ppt
 
6. Sim Fanji database dan manajemen informasi
6. Sim Fanji database dan manajemen informasi 6. Sim Fanji database dan manajemen informasi
6. Sim Fanji database dan manajemen informasi
 
Mis11e ch06
Mis11e ch06Mis11e ch06
Mis11e ch06
 
Managing data resources
Managing data resourcesManaging data resources
Managing data resources
 
Dbms9
Dbms9Dbms9
Dbms9
 
Management information system database management
Management information system database managementManagement information system database management
Management information system database management
 
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
 
HYBRID DATABASE SYSTEM FOR BIG DATA STORAGE AND MANAGEMENT
HYBRID DATABASE SYSTEM FOR BIG DATA STORAGE AND MANAGEMENTHYBRID DATABASE SYSTEM FOR BIG DATA STORAGE AND MANAGEMENT
HYBRID DATABASE SYSTEM FOR BIG DATA STORAGE AND MANAGEMENT
 
HYBRID DATABASE SYSTEM FOR BIG DATA STORAGE AND MANAGEMENT
HYBRID DATABASE SYSTEM FOR BIG DATA STORAGE AND MANAGEMENTHYBRID DATABASE SYSTEM FOR BIG DATA STORAGE AND MANAGEMENT
HYBRID DATABASE SYSTEM FOR BIG DATA STORAGE AND MANAGEMENT
 
Arinda oktaviana 11353204810 vii lokal g
Arinda oktaviana 11353204810   vii lokal gArinda oktaviana 11353204810   vii lokal g
Arinda oktaviana 11353204810 vii lokal g
 
Database Management.pptxqqwwqwqwqqweqwqw
Database Management.pptxqqwwqwqwqqweqwqwDatabase Management.pptxqqwwqwqwqqweqwqw
Database Management.pptxqqwwqwqwqqweqwqw
 
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
 
computer fund-database presentation
 computer fund-database presentation computer fund-database presentation
computer fund-database presentation
 
PHP/MySQL First Session Material
PHP/MySQL First Session MaterialPHP/MySQL First Session Material
PHP/MySQL First Session Material
 
Traditional BI vs. Business Data Lake – A Comparison
Traditional BI vs. Business Data Lake – A ComparisonTraditional BI vs. Business Data Lake – A Comparison
Traditional BI vs. Business Data Lake – A Comparison
 
7 - Enterprise IT in Action
7 - Enterprise IT in Action7 - Enterprise IT in Action
7 - Enterprise IT in Action
 
Week 1 and 2 Getting started with DBMS.pptx
Week 1 and 2 Getting started with DBMS.pptxWeek 1 and 2 Getting started with DBMS.pptx
Week 1 and 2 Getting started with DBMS.pptx
 
1-introduction to DB.pdf
1-introduction to DB.pdf1-introduction to DB.pdf
1-introduction to DB.pdf
 
INTRODUCTION TO DATABASE
INTRODUCTION TO DATABASEINTRODUCTION TO DATABASE
INTRODUCTION TO DATABASE
 
MIS Wk-5.ppt
MIS Wk-5.pptMIS Wk-5.ppt
MIS Wk-5.ppt
 

Plus de AnshikaGoel42 (15)

Service Purchase Model.pptx
Service Purchase Model.pptxService Purchase Model.pptx
Service Purchase Model.pptx
 
Intranet and Extranet ppt.pptx
Intranet and Extranet ppt.pptxIntranet and Extranet ppt.pptx
Intranet and Extranet ppt.pptx
 
Cost Benefit analysis.pptx
Cost Benefit analysis.pptxCost Benefit analysis.pptx
Cost Benefit analysis.pptx
 
1-Intro_MIS.ppt
1-Intro_MIS.ppt1-Intro_MIS.ppt
1-Intro_MIS.ppt
 
ER Modeling.ppt
ER Modeling.pptER Modeling.ppt
ER Modeling.ppt
 
Data Models.ppt
Data Models.pptData Models.ppt
Data Models.ppt
 
InformationSecurity.ppt
InformationSecurity.pptInformationSecurity.ppt
InformationSecurity.ppt
 
The Reserve Bank of India.pptx
The Reserve Bank of India.pptxThe Reserve Bank of India.pptx
The Reserve Bank of India.pptx
 
ERP Features and Implementation.pptx
ERP Features and Implementation.pptxERP Features and Implementation.pptx
ERP Features and Implementation.pptx
 
Service Recovery.pptx
Service Recovery.pptxService Recovery.pptx
Service Recovery.pptx
 
Service Quality.pptx
Service Quality.pptxService Quality.pptx
Service Quality.pptx
 
Enterprise Systems Types.ppt
Enterprise Systems Types.pptEnterprise Systems Types.ppt
Enterprise Systems Types.ppt
 
Enterprise Systems Architecture.ppt
Enterprise Systems Architecture.pptEnterprise Systems Architecture.ppt
Enterprise Systems Architecture.ppt
 
Financial Intermediation.ppt
Financial Intermediation.pptFinancial Intermediation.ppt
Financial Intermediation.ppt
 
Monetary Policy & Inflation.pptx
Monetary Policy & Inflation.pptxMonetary Policy & Inflation.pptx
Monetary Policy & Inflation.pptx
 

Dernier

Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine ServiceHot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
sexy call girls service in goa
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
Diya Sharma
 
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
soniya singh
 
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
soniya singh
 

Dernier (20)

Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine ServiceHot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
 
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
 
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
 
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls DubaiDubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
 
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
 
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
 
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
 
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
'Future Evolution of the Internet' delivered by Geoff Huston at Everything Op...
 
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
 
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
 
Al Barsha Night Partner +0567686026 Call Girls Dubai
Al Barsha Night Partner +0567686026 Call Girls  DubaiAl Barsha Night Partner +0567686026 Call Girls  Dubai
Al Barsha Night Partner +0567686026 Call Girls Dubai
 
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
 
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night StandHot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
 
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
 
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
 
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
 
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
 
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort ServiceBusty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
 

Traditional File Concepts.ppt

  • 1. 7.1 © 2006 by Prentice Hall Traditional File Concepts
  • 2. 7.2 © 2006 by Prentice Hall • 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 OBJECTIVES
  • 3. 7.3 © 2006 by Prentice Hall • Evaluate new database trends • Identify the challenges posed by data resource management and management solutions OBJECTIVES (Continued)
  • 4. 7.4 © 2006 by Prentice Hall • 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 Virgin Mobile Australia Case
  • 5. 7.5 © 2006 by Prentice Hall File Organization Terms and Concepts • Bit: Smallest unit of data; binary digit (0,1) • Byte: Group of 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
  • 6. 7.6 © 2006 by Prentice Hall • Database: Group of related files • Entity: Person, place, thing, event about which information is maintained • Attribute: Description of a particular entity • Key field: Identifier field used to retrieve, update, sort a record ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT File Organization Terms and Concepts (Continued)
  • 7. 7.7 © 2006 by Prentice Hall ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT The Data Hierarchy Figure 7-1
  • 8. 7.8 © 2006 by Prentice Hall ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT Entities and Attributes Figure 7-2
  • 9. 7.9 © 2006 by Prentice Hall 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
  • 10. 7.10 © 2006 by Prentice Hall • 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 Program-data dependence: Problems with the Traditional File Environment (Continued)
  • 11. 7.11 © 2006 by Prentice Hall • 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 Poor security: Problems with the Traditional File Environment (Continued)
  • 12. 7.12 © 2006 by Prentice Hall ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT Traditional File Processing Figure 7-3
  • 13. 7.13 © 2006 by Prentice Hall 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
  • 14. 7.14 © 2006 by Prentice Hall The Contemporary Database Environment THE DATABASE APPROACH TO DATA MANAGEMENT Figure 7-4
  • 15. 7.15 © 2006 by Prentice Hall 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 THE DATABASE APPROACH TO DATA MANAGEMENT
  • 16. 7.16 © 2006 by Prentice Hall Sample Data Dictionary Report THE DATABASE APPROACH TO DATA MANAGEMENT Figure 7-5
  • 17. 7.17 © 2006 by Prentice Hall Types of Databases: • Relational DBMS • Hierarchical and network DBMS • Object-oriented databases THE DATABASE APPROACH TO DATA MANAGEMENT
  • 18. 7.18 © 2006 by Prentice Hall 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
  • 19. 7.19 © 2006 by Prentice Hall The Relational Data Model THE DATABASE APPROACH TO DATA MANAGEMENT Figure 7-6
  • 20. 7.20 © 2006 by Prentice Hall 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
  • 21. 7.21 © 2006 by Prentice Hall The Three Basic Operations of a Relational DBMS THE DATABASE APPROACH TO DATA MANAGEMENT Figure 7-7
  • 22. 7.22 © 2006 by Prentice Hall 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:
  • 23. 7.23 © 2006 by Prentice Hall A Hierarchical Database for a Human Resources System THE DATABASE APPROACH TO DATA MANAGEMENT Figure 7-8
  • 24. 7.24 © 2006 by Prentice Hall Hierarchical and Network DBMS • Depicts data logically as many-to-many relationships THE DATABASE APPROACH TO DATA MANAGEMENT Network DBMS:
  • 25. 7.25 © 2006 by Prentice Hall The Network Data Model Figure 7-9 THE DATABASE APPROACH TO DATA MANAGEMENT
  • 26. 7.26 © 2006 by Prentice Hall Hierarchical and Network DBMS • Outdated • Less flexible compared to RDBMS • Lack support for ad-hoc and English language- like queries Disadvantages: THE DATABASE APPROACH TO DATA MANAGEMENT
  • 27. 7.27 © 2006 by Prentice Hall • Object-oriented DBMS: Stores data and procedures as objects that can be retrieved and shared automatically • Object-relational DBMS: Provides capabilities of both object-oriented and relational DBMS Object-Oriented Databases: THE DATABASE APPROACH TO DATA MANAGEMENT
  • 28. 7.28 © 2006 by Prentice Hall • Conceptual design: Abstract model of database from a business perspective • Physical design: Detailed description of business information needs CREATING A DATABASE ENVIRONMENT Designing Databases:
  • 29. 7.29 © 2006 by Prentice Hall • Entity-relationship 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 Designing Databases: (Continued)
  • 30. 7.30 © 2006 by Prentice Hall An Unnormalized Relation for ORDER CREATING A DATABASE ENVIRONMENT Figure 7-10
  • 31. 7.31 © 2006 by Prentice Hall Normalized Tables Created from ORDER CREATING A DATABASE ENVIRONMENT Figure 7-11
  • 32. 7.32 © 2006 by Prentice Hall An Entity-Relationship Diagram CREATING A DATABASE ENVIRONMENT Figure 7-12
  • 33. 7.33 © 2006 by Prentice Hall 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
  • 34. 7.34 © 2006 by Prentice Hall • 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:
  • 35. 7.35 © 2006 by Prentice Hall • 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
  • 36. 7.36 © 2006 by Prentice Hall Distributed Databases CREATING A DATABASE ENVIRONMENT Figure 7-13
  • 37. 7.37 © 2006 by Prentice Hall 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
  • 38. 7.38 © 2006 by Prentice Hall • 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 • 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 Ensuring Data Quality: (Continued)
  • 39. 7.39 © 2006 by Prentice Hall 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
  • 40. 7.40 © 2006 by Prentice Hall Multidimensional Data Model DATABASE TRENDS Figure 7-14
  • 41. 7.41 © 2006 by Prentice Hall 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
  • 42. 7.42 © 2006 by Prentice Hall Components of a Data Warehouse DATABASE TRENDS Figure 7-15
  • 43. 7.43 © 2006 by Prentice Hall 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
  • 44. 7.44 © 2006 by Prentice Hall Benefits of Data Warehouses: • Improved and easy accessibility to information • Ability to model and remodel the data DATABASE TRENDS
  • 45. 7.45 © 2006 by Prentice Hall 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
  • 46. 7.46 © 2006 by Prentice Hall A Hypermedia Database DATABASE TRENDS Figure 7-16
  • 47. 7.47 © 2006 by Prentice Hall 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 Databases and the Web
  • 48. 7.48 © 2006 by Prentice Hall Linking Internal Databases to the Web DATABASE TRENDS Figure 7-17
  • 49. 7.49 © 2006 by Prentice Hall 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.
  • 50. 7.50 © 2006 by Prentice Hall MANAGEMENT OPPORTUNITIES, CHALLENGES, AND SOLUTIONS 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.
  • 51. 7.51 © 2006 by Prentice Hall Solution Guidelines: MANAGEMENT OPPORTUNITIES, CHALLENGES, AND SOLUTIONS The critical elements for creating a database environment are: • Data administration • Data-planning and modeling methodology • Database technology and management • Users
  • 52. 7.52 © 2006 by Prentice Hall Key Organizational Elements in the Database Environment MANAGEMENT OPPORTUNITIES, CHALLENGES, AND SOLUTIONS Figure 7-18