Managing data Resources:

Slides:



Advertisements
Similar presentations
C6 Databases.
Advertisements

Technology Guide 3 Data and Database T3-1. IT for Management Prof. Efraim Turban T3-2 File Management Hierarchy of data for a computer-based file Record.
Lecture-7/ T. Nouf Almujally
Introduction to Databases
Managing Data Resources
Managing data Resources: An information system provides users with timely, accurate, and relevant information. The information is stored in computer files.
Predecessor to the Database: Traditional File Processing Records are stored in files. Programs are customized to process the data.
IT ARCHITECTURE © Holmes Miller BUILDING METAPHOR 3CUSTOMER’S CONCERN Has vision about building that will meet needs and desires 3ARCHITECT’S CONCERN.
File Systems and Databases
7.1 © 2006 by Prentice Hall 7 Chapter Managing Data Resources.
ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT
Managing data Resources:
Chapter 8 Managing Data Resources. Chapter 82 Managing Data Resources 8.1 Organizing Data in a Traditional File Environment –An effective information.
Information Technology in Organizations
Managing Data Resources. File Organization Terms and Concepts Bit: Smallest unit of data; binary digit (0,1) Byte: Group of bits that represents a single.
Database Management Infsy 540 Dr. R. Ocker.
Database Design and Introduction to SQL
COMPUTING FOR BUSINESS AND ECONOMICS-III. Lecture no.6 COURSE INSTRUCTOR- Ms. Tehseen SEMESTER- Summer 2010.
Database Design - Lecture 1
1 California State University, Fullerton Chapter 7 Information System Data Management.
CHAPTER 8: MANAGING DATA RESOURCES. File Organization Terms Field: group of characters that represent something Record: group of related fields File:
7.1 Managing Data Resources Chapter 7 Essentials of Management Information Systems, 6e Chapter 7 Managing Data Resources © 2005 by Prentice Hall.
6 Chapter Databases and Information Management. File Organization Terms and Concepts Bit: Smallest unit of data; binary digit (0,1) Byte: Group of bits.
Files, Databases, & E-Commerce 1 Using Information Technology Chapter 8 Files, Databases, & E-Commerce.
Chapter Chapter 13-2 Accounting Information Systems, 1 st Edition Data and Databases.
1.file. 2.database. 3.entity. 4.record. 5.attribute. When working with a database, a group of related fields comprises a(n)…
C6 Databases. 2 Traditional file environment Data Redundancy and Inconsistency: –Data redundancy: The presence of duplicate data in multiple data files.
5-1 McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies, Inc. All rights reserved.
Data Resource Management
5 - 1 Copyright © 2006, The McGraw-Hill Companies, Inc. All rights reserved.
INFORMATION MANAGEMENT Unit 2 SO 4 Explain the advantages of using a database approach compared to using traditional file processing; Advantages including.
6.1 © 2010 by Prentice Hall 6 Chapter Foundations of Business Intelligence: Databases and Information Management.
MANAGING DATA RESOURCES ~ pertemuan 7 ~ Oleh: Ir. Abdul Hayat, MTI.
Data resource management
Managing Data Resources. File Organization Terms and Concepts Bit: Smallest unit of data; binary digit (0,1) Byte: Group of bits that represents a single.
DATA RESOURCE MANAGEMENT
Foundations of Business Intelligence: Databases and Information Management.
Chapter 6.  Problems of managing Data Resources in a Traditional File Environment  Effective IS provides user with Accurate, timely and relevant information.
CIS 250 Advanced Computer Applications Database Management Systems.
2/20: Ch. 6 Data Management What is data? How is it stored? –Traditional management storage techniques; problems –DBMS.
1 Geog 357: Data models and DBMS. Geographic Decision Making.
Introduction to Databases Angela Clark University of South Alabama.
6.1 © 2007 by Prentice Hall Chapter 6 (Laudon & Laudon) Foundations of Business Intelligence: Databases and Information Management.
Data Resource Management Lecture 8. Traditional File Processing Data are organized, stored, and processed in independent files of data records In traditional.
Managing Data Resources File Organization and databases for business information systems.
© 2017 by McGraw-Hill Education. This proprietary material solely for authorized instructor use. Not authorized for sale or distribution in any manner.
Copyright © 2013 Dorling Kindersley (India) Pvt. Ltd. Management Information Systems: Managing the Digital Firm, 12eAuthors: Kenneth C. Laudon and Jane.
ACCOUNTING INFORMATION SYSTEMS
Managing Data Resources
Short History of Data Storage
Databases and DBMSs Todd S. Bacastow January
Intro to MIS – MGS351 Databases and Data Warehouses
Introduction to Computing Lecture # 13
Databases and Information Management
Chapter 9 Database Systems
Introduction to Information Technology
Databases and Data Warehouses Chapter 3
Basic Concepts in Data Management
MANAGING DATA RESOURCES
Database.
File Systems and Databases
Managing data Resources:
Managing data Resources:
Data Resource Management
MANAGING DATA RESOURCES
Databases.
Data Resource Management
Database & Information Systems
Databases and Information Management
Presentation transcript:

Managing data Resources: An information system provides users with timely, accurate, and relevant information. The information is stored in computer files. When files are properly arranged and maintained, users can easily access and retrieve the information when they need. If the files are not properly managed, they can lead to chaos in information processing. Even if the hardware and software are excellent, the information system can be very inefficient because of poor file management.

File Organization Terms and Concepts A computer system organizes data in a hierarchy that starts with the bit. Bit represents 0 or 1. 8 bits are grouped to form a byte. Each byte represents one character, number , or symbol. Bytes can be grouped to form a field. It can represents a person’s name or age. Related fields can be grouped to form a record. Related fields can be student’s name, course taken and the grade. Related records can be grouped to form a file. Related files can be grouped to form a database

The Data Hierarchy Course File Financial File Database Student database Personal History File Cynthia Lokker CIS 500 A Daniel Boles IST 203 B File attribute NAME COURSE GRADE Record Cynthia Lokker CIS 500 A Field Cynthia Lokker (NAME field) Byte 01000001 (letter A in ASCII) 0 or 1 Bit

Accessing Records from Computer Files Computer stores files on secondary storage devices. Records can be arranged in several ways on storage media. How individual record scan be accessed or retrieved depends on how they are arranged on storage media. There are mainly two ways to organize records: sequentially or randomly. In sequential file organization, data records must be retrieved in the same physical sequence in which they are stored. In direct or random file organization, data records can be accessed in any sequence as users desire, without regard to actual physical order on the storage media. Sequential file organization is the only file organization that can be used on magnetic tape. Example: Payroll Direct or random file organization is utilized with magnetic disk. Most computer applications utilize this method.

Database and Database Management System Database => A database is a collection of data organized to service many applications efficiently by centralizing the data and minimizing redundant data. Database management System => A database management system is a special software that permits an organization to centralize data, manage it efficiently, and provide access to the stored data by application programs.

Logical and Physical View of Data A logical view of data is the way data is perceived by end users or business specialists. A physical view of data is the way the data are actually organized and structured on physical storage media.

Advantages of a DBMS Complexity of the information system environment can be reduced. Data redundancy and inconsistency can be reduced. Data confusion can be eliminated. Program-data dependency can be reduced. Program development and maintenance costs can be reduced. Flexibility of IS can be enhanced. Access and availability of information system can be increased.

Database Models Three principal database models are: Hierarchical database model Network data model Relational database model

Hierarchical Database Model The hierarchical database model stores data logically in a vertical hierarchy resembling a tree-like structure. An upper record is connected logically to a lower record in a parent-child relationship. A parent segment can have more than one child but a child can only have one parent. This model is good for treating one-to-many relationships. They can store large numbers of segments and process efficiently, but they can only deliver information if a request follows the linkages of the hierarchy. The disadvantages are their low user-friendliness, inflexibility, and complexity of programming . Advantages: They are good for high volume rapid response systems, such as airline reservation systems.

Network Database Model The network model stores data logically in a structure that permits many-to-many relationships. Through extensive use of pointers, child segment can have more than one parent. Network DBMS reduce redundancy and they process information efficiently. However, they are inflexible and very complex to maintain and program.

Relational Database Model The relational model overcomes many of the limitations of the previous models. Data are organized into two-dimensional tables, each of which can be considered a file. The relational model can relate any piece of information in one file to any piece in another file as long as the two tables share a common data element. For this reason, they are very flexible. Access paths to data are not predefined, so that they can easily respond to ad-hoc queries with less programming. The main problem with RDBMS is poor processing efficiency. Response time can be very slow if large number of accesses are required to select, join, and extract data from tables.

Data Warehouse A data warehouse is a read-only analytical database that is used as the foundation of a decision support system. It is subject-oriented, integrated, nonvolatile, and time-variant Subject-oriented=> It is organized around the major subjects of the enterprise while operational world is designed around applications, functions, and process. Integrated=> Data from different sources is stored in data warehouse in a single, easy to understand, globally accepted fashion. Non-volatile=>Generally , updating is not done in data warehouse environment; update is done in operational environment. Time-variant=> It is a time variant collection of data. Time variant means that every unit of data in the warehouse is relevant to some moment of time.

Successful Database Environment Data administration=> the policies, procedures, and tools for managing and planning for information as a corporate source. A data planning and modeling methodology from an enterprise-wide perspective. Users=> end users have a wide role with DBMS than in traditional systems and they must be trained. Database technology and management=> DBMS software maintained by firm’s database administration group.