Management Information Systems

Slides:



Advertisements
Similar presentations
Computer Studies Today Chapter 18 1 »Two main types of secondary storage devices: –Magnetic storage devices –Optical storage devices.
Advertisements

Chapter 2.7 Data management.
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.
Information Processing Lecture 9B Criteria for File Organisation.
7-1 PowerPoint Presentation by Douglas Cloud Professor Emeritus of Accounting Pepperdine University © Copyright 2007 Thomson South-Western, a part of The.
Databases and Processing Modes. Fundamental Data Storage Concepts and Definitions What is an entity? An entity is something about which information is.
Unit  Candidates should have an understanding of how organizations use ICT, including  sequential file systems (batch processing e.g. payroll);
Information Storage and Retrieval CS French Chapter 3.
Management Information Systems
Microsoft Visual Basic 2012 CHAPTER ONE Introduction to Visual Basic 2012 Programming.
File Organization Techniques
1 C omputer information systems Design Instructor: Mr. Ahmed Al Astal IGGC1202 College Requirement University Of Palestine.
Storage and Multimedia Part II Bayram Güzer. Magnetic Tape Storage It is similar to tape used in music cassettes –Plastic tape with a magnetic coating.
Chapter 13 Sequential File Processing. Master Files Set of files used to store companies data in areas like payroll, inventory Usually processed by batch.
1 California State University, Fullerton Chapter 7 Information System Data Management.
The Fun That Is File Structures Pages By: Christine Zeitschel.
Sequential Files Chapter 13. Master Files Set of files used to store companies data in areas like payroll, inventory Set of files used to store companies.
Now, please open your book to page 60, and let’s talk about chapter 9: How Data is Stored.
INFORMATION MANAGEMENT Unit 2 SO 4 Explain the advantages of using a database approach compared to using traditional file processing; Advantages including.
13. File Structures. ACCESSMETHODSACCESSMETHODS 13.1.
SUPPLEMENTAL B An Overview of The General Ledger Architecture.
Chapter 9 Database Systems Introduction to CS 1 st Semester, 2014 Sanghyun Park.
3 / 12 Databases MIS105 Lec13 Irfan Ahmed Ilyas CHAPTER Prepared By:
7-1 Computerized Accounting Systems Electronic Presentation by Douglas Cloud Pepperdine University Chapter F7.
An Overview of The General Ledger Architecture.  Files are used to store data and processing instruction. The two types of files computer users use most.
Ch6. Introduction to Database. What is a Database? Database is a collection of related information. It is organized so that it can easily be accessed,
System design : files. Data Design Concepts  Data Structures  A file or table contains data about people, places or events that interact with the system.
13-1 Sequential File Processing Chapter Chapter Contents Overview of Sequential File Processing Sequential File Updating - Creating a New Master.
Use of ICT in Data Management AS Applied ICT. Back to Contents Back to Contents.
Code DescriptionColourSelling PriceNo. Sold C105MattPrimrose£ C106MattLilac£ C120SilkPrimrose£ C121SilkLilac£ C123SilkPlum£9.00.
CIS 250 Advanced Computer Applications Database Management Systems.
FILE ORGANIZATION.
Presentation on Database management Submitted To: Prof: Rutvi Sarang Submitted By: Dharmishtha A. Baria Roll:No:1(sem-3)
Management Information Systems 1 Charles Parker 2 nd Edition Prepared By: Hamad Raza (Lecturer GCUF) Chapter 1: Introduction to Management Information.
DATA MANAGEMENT 1) File StructureFile Structure 2) Physical OrganisationPhysical Organisation 3) Logical OrganisationLogical Organisation 4) File OrganisationFile.
( ) 1 Chapter # 8 How Data is stored DATABASE.
 At the end of the class students should:  distinguish between data and information.  explain the characteristics and forms of Information Processing.
Introduction To Database IT-402
Learning Objectives Today we will Learn:
GO! with Microsoft Office 2016
CS522 Advanced database Systems
Introduction to Visual Basic 2008 Programming
Chapter 9 Database Systems
Administration The Administration system forms part of the Basic System and has seven modules; the Translation Manager, Mandatory Fields Setup, Payroll.
Made By:- Aslam B Voc(SD)-I
Operating Systems (CS 340 D)
Ch. 8 File Structures Sequential files. Text files. Indexed files.
Operating Systems (CS 340 D)
GO! with Microsoft Access 2016
Week 12 Option 3: Database Design
Secondary Storage Devices…. What is a Secondary Storage
Modern Systems Analysis and Design Third Edition
Information System and Management
What is a Database and Why Use One?
Programming Logic and Design Eighth Edition
FILE ORGANIZATION.
Agenda Test next Week! SI or no SI? File Update Techniques – Review.
Managing data Resources:
MSIS 670: Object-Oriented Software Engineering
CIS16 Application Development – Programming with Visual Basic
Databases Lesson 2.
Computer Application Waseem Gulsher
RDBMS Chapter 4.
Files Management – The interfacing
Unit Databases.
File System Implementation
Management Information Systems
DBMS Physical Design Physical design is concerned with the placement of data and selection of access methods for efficiency and ongoing maintenance.
PROGRAMMING CONCEPTS CHAPTER 8
Presentation transcript:

Management Information Systems Charles Parker 2nd Edition Chapter 7: Data Management Prepared By: Hamad Raza (Lecturer GCUF)

Data Access & Organization Methods Organizing & accessing data are two of the driving forces behind data management. Organizing data involves arranging data in storage so that they may be easily accessed. Accessing data refers to retrieving data from storage. Data organization and access are important determinants of how easily managers and users can obtain the information they need to do their jobs. As some organization & access schemes provide faster or more flexible ways to locate individual records than others, it is important for managers to anticipate what data they and their subordinates will need when designing files and databases.

Data Access & Organization Methods There are different types of Data Access & Organization methods: Serial: The simplest organization scheme is serial. With serial organization, records are arranged one after another, in no particular order. Serial organization is commonly found with transaction data, where records are created in a file in the order in which transactions take place. For Example: File consisting of daily purchase & payment transaction data. It may often used to update records in a master account file at night.

Data Access & Organization Methods Serial:

Data Access & Organization Methods Sequential: Sequential access is a method whereby the records of file are accessed in sequential order. The records in a sequential file appear one after another in the order in which they were entered into the computer and subsequently stored on the medium. Access to any record requires access to all of the preceding records. The field on which records are sequentially organized is often called primary key. For Example: Magnetic tape is a storage medium that is sequential in nature. To access a particular record on magnetic tape, you must read all of the preceding records first. You could use the sequential access method to record the individual student grades each week because you must access and update all of the records of the student anyway.

Data Access & Organization Methods Indexed: Records in an indexed file may be physically stored sequentially, serially, or even randomly. A second file known as an index – makes it possible to access individual records directly, no matter how the records are physically stored. To directly access individual records, users consult an index to select the records of interest.

Data Access & Organization Methods Indexed-Sequential: Indexed sequential organization is a file organization scheme that allows both sequential & direct access to data. Thus file organized in this manner must be on a direct access storage device (DASD) such as disk. With indexed-sequential organization, records are usually physically arranged on a storage medium by their primary key, just as they are with sequential organization. The difference is however, that an index also exists for the file, it can be used to look up & directly access individual records.

Data Access & Organization Methods Direct Access: Direct access is also called random access is a method in which the records in a file are stored and accessed in random order. A direct access file has a key, called a key field or access key, that lets the computer locate, retrieve and update any record in the file without reading each preceding record. A key field is a field that uniquely identifies each record. Account numbers, employee identification number and social security numbers are examples of key fields.