1 California State University, Fullerton Chapter 7 Information System Data Management.

Slides:



Advertisements
Similar presentations
C6 Databases.
Advertisements

Database Management3-1 L3 Database Management Santa R. Susarapu Ph.D. Student Virginia Commonwealth University.
Data Design The futureERD - CardinalityCODINGRelationshipsDefinition.
Accounting System Design
MIS DATABASE SYSTEMS, DATA WAREHOUSES, AND DATA MARTS MBNA
Managing data Resources: An information system provides users with timely, accurate, and relevant information. The information is stored in computer files.
Chapter 3 Database Management
Chapter Physical Database Design Methodology Software & Hardware Mapping Logical Design to DBMS Physical Implementation Security Implementation Monitoring.
Database Management: Getting Data Together Chapter 14.
Chapter 17 Designing Databases
Organizing Data & Information
Accounting Databases Chapter 2 The Crossroads of Accounting & IT
Mgt 20600: IT Management & Applications Databases
1212 CHAPTER DATABASES. © 2005 The McGraw-Hill Companies, Inc. All Rights Reserved Competencies Distinguish between the physical and logical view.
Managing data Resources:
Chapter 4: Database Management. Databases Before the Use of Computers Data kept in books, ledgers, card files, folders, and file cabinets Long response.
Chapter 14 The Second Component: The Database.
MIS DATABASE SYSTEMS, DATA WAREHOUSES, AND DATA MARTS CHAPTER 3
Databases Chapter 11.
Lead Black Slide. © 2001 Business & Information Systems 2/e2 Chapter 7 Information System Data Management.
Databases and Database Management Systems
Professor Michael J. Losacco CIS 1150 – Introduction to Computer Information Systems Databases Chapter 11.
Chapter 11 Databases.
MIS DATABASE SYSTEMS, DATA WAREHOUSES, AND DATA MARTS MBNA ebay
1 DATABASE TECHNOLOGIES BUS Abdou Illia, Fall 2007 (Week 3, Tuesday 9/4/2007)
5.1 © 2007 by Prentice Hall 5 Chapter Foundations of Business Intelligence: Databases and Information Management.
Computers Are Your Future Tenth Edition Chapter 12: Databases & Information Systems Copyright © 2009 Pearson Education, Inc. Publishing as Prentice Hall1.
Copyright © 2003 by Prentice Hall Computers: Tools for an Information Age Chapter 13 Database Management Systems: Getting Data Together.
Objectives Overview Define the term, database, and explain how a database interacts with data and information Define the term, data integrity, and describe.
The McGraw-Hill Companies, Inc Information Technology & Management Thompson Cats-Baril Chapter 3 Content Management.
STORING ORGANIZATIONAL INFORMATION— DATABASES CIS 429—Chapter 7.
PowerPoint Presentation for Dennis & Haley Wixom, Systems Analysis and Design, 2 nd Edition Copyright 2003 © John Wiley & Sons, Inc. All rights reserved.
CHAPTER 8: MANAGING DATA RESOURCES. File Organization Terms Field: group of characters that represent something Record: group of related fields File:
RELATIONSHIPS Generally there are two main database types: flat-file and relational.
311: Management Information Systems Database Systems Chapter 3.
Information Systems Today (©2006 Prentice Hall) 3-1 CS3754 Class Note 12 Summery of Relational Database.
I Information Systems Technology Ross Malaga 4 "Part I Understanding Information Systems Technology" Copyright © 2005 Prentice Hall, Inc. 4-1 DATABASE.
Database Design Part of the design process is deciding how data will be stored in the system –Conventional files (sequential, indexed,..) –Databases (database.
MIS DATABASE SYSTEMS, DATA WAREHOUSES, AND DATA MARTS CHAPTER 3
Lead Black Slide Powered by DeSiaMore1. 2 Chapter 7 Information System Data Management.
C6 Databases. 2 Traditional file environment Data Redundancy and Inconsistency: –Data redundancy: The presence of duplicate data in multiple data files.
Organizing Data and Information. What is Data?? Numbers, characters, images, or other method of recording, in a form which can be assessed by a human.
McGraw-Hill/Irwin ©2008,The McGraw-Hill Companies, All Rights Reserved Chapter 5 Data Resource Management.
Core Concepts of ACCOUNTING INFORMATION SYSTEMS Moscove, Simkin & Bagranoff John Wiley & Sons, Inc. Developed by: Marianne Bradford, Ph.D. Bryant College.
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.
Data resource management
1 Technology in Action Chapter 11 Behind the Scenes: Databases and Information Systems Copyright © 2010 Pearson Education, Inc. Publishing as Prentice.
Chapter 13 Designing Databases Systems Analysis and Design Kendall & Kendall Sixth Edition.
Organizing Data and Information
Advanced Accounting Information Systems Day 10 answers Organizing and Manipulating Data September 16, 2009.
GIS Data Models GEOG 370 Christine Erlien, Instructor.
Department of Industrial Engineering Sharif University of Technology Session# 9.
DATA RESOURCE MANAGEMENT
Use of ICT in Data Management AS Applied ICT. Back to Contents Back to Contents.
IS 320 Notes for April 15, Learning Objectives Understand database concepts. Use normalization to efficiently store data in a database. Use.
3/6: Data Management, pt. 2 Refresh your memory Relational Data Model
1 Chapter 9 Database Management. Objectives Overview Define the term, database, and explain how a database interacts with data and information Describe.
© 2006 Pearson Education Canada Inc. 3-1 Chapter 3 Database Management PowerPoint Presentation Jack Van Deventer Ward M. Eagen.
CIS 250 Advanced Computer Applications Database Management Systems.
© 2003 Prentice Hall, Inc.3-1 Chapter 3 Database Management Information Systems Today Leonard Jessup and Joseph Valacich.
Presentation on Database management Submitted To: Prof: Rutvi Sarang Submitted By: Dharmishtha A. Baria Roll:No:1(sem-3)
1 Management Information Systems M Agung Ali Fikri, SE. MM.
McGraw-Hill/Irwin ©2008,The McGraw-Hill Companies, All Rights Reserved Chapter 5 Data Resource Management.
3-1 Chapter 3 Data and Knowledge Management
Decision Support System by Simulation Model (Ajarn Chat Chuchuen)
Chapter 17 Designing Databases
Chapter 3 Database Management
Presentation transcript:

1 California State University, Fullerton Chapter 7 Information System Data Management

2 California State University, Fullerton File Processing Files consist of related records. Records consist of related fields. Fields consist of related characters. Files must contain a key field (primary key) – a field where each record’s occurrence is unique.

3 California State University, Fullerton File Organization A file can be organized in secondary storage as a: Sequential file – records are organized one after the other and can be accessed sequentially (based on the value of the primary key). In order to retrieve a record, each record must be examined until the desired record is located. Direct or Random file – records are not necessarily stored in sequence and can be accessed directly.

4 California State University, Fullerton File Organization (cont’d.) A file can be organized in secondary storage as a: Indexed file – records are stored in one file and the organization of those records is stored in a second file. To use an indexed file both files, the data file and the index file, must be used together.

5 California State University, Fullerton File Management Managing data files requires that the data be kept up to date. To do so requires: Modifying, or updating, records involves Adding records Deleting records Changing records Data Validation – ensuring the data is accurate (up to date) and secure.

6 California State University, Fullerton Advantages and Disadvantages of File Processing Advantages: Easy to use. Disadvantages: Data redundancy or duplication of data (updating). Difficult to access data from more than one file at a time. Dependency between programs and data.

7 California State University, Fullerton Database Processing To overcome some of the disadvantages of file processing, database processing is used instead. The database software is called a DataBase Management System (DBMS). A database is a collection of data and relationships between data stored in secondary storage.

8 California State University, Fullerton Data Relationships One-to-one relationship One group of data is related on only one other group of data. For example, the relationship between customers records to an account receivable record are one to one)

9 California State University, Fullerton Data Relationships One-to-many relationship One group of data is related to one or more other groups of data. For example, the relationship between customers records to sales order records are one to many.

10 California State University, Fullerton Data Relationships Many-to-many relationship One or more groups of data is related to one or more other groups of data. For example, the relationship between Inventory records and suppliers records are many to many.

11 California State University, Fullerton Advantages and Disadvantages of Database Processing Advantages: Duplication of data is reduced. Easier to process different groups of data. No dependency between data and programs. Disadvantages: Expensive. More vulnerable than file processing. Can be complex to develop.

12 California State University, Fullerton Types of Databases Hierarchical database Network database Relational database

13 California State University, Fullerton Types of Databases Personal databases are generally used by only one person. Shared databases are used by many users at one time. To prevent users from accessing data they do not need, the database is divided into views (Sub-schemas).

14 California State University, Fullerton Data Warehouses A data warehouse is a collection of data drawn from other databases used by the business. A data mart represents the specific data from a data warehouse which a user needs. Data mining is the technique of searching for patterns in the data.

15 California State University, Fullerton On-Line Analytical Processing On-Line Analytical Processing (OLAP) permits users to “slice and dice” large amounts of data in databases, data warehouses, and multidimensional databases using a variety of techniques, including statistical techniques.

16 California State University, Fullerton Database Administration An organization with large databases often has a Database Administrator (DBA) who is responsible for managing the organization’s database. The DBA designs the databases based on the needs of the users.