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.

Slides:



Advertisements
Similar presentations
Chapter 6 Storage and Multimedia
Advertisements

AS ICT. Identify suitable uses of common storage media understand the types of access and access speeds required for each use (e.g. serial/sequential,
Term Project Grade 9 Section B Due december 18 Find and research one Emerging technology not studied in class. It can be a prototype or already available.
Copyright © 2003 by Prentice Hall Computers: Tools for an Information Age Chapter 6 Storage and Multimedia: The Facts and More.
Chapter 2.7 Data management.
Copyright © 2014 Pearson Education, Inc. Publishing as Prentice Hall
File Management Chapter 3
Welcome to CMPE003 Personal Computer Concepts: Hardware and Software Winter 2003 UC Santa Cruz Instructor: Guy Cox.
Files  File organisation and usage A record is a group of logically related fields A file is a group of logically related records Files are used to store.
Secondary Storage Chapter 8 McGraw-Hill/Irwin
Welcome to CMPE003 Personal Computers: Hardware and Software Dr. Chane Fullmer Fall 2002 UC Santa Cruz.
What Is A Computer System?
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.
1 Chapter 6 Storage and Multimedia: The Facts and More.
McGraw-Hill/Irwin Copyright © 2008 by The McGraw-Hill Companies, Inc. All rights reserved. Chapter 8 Secondary Storage.
Information Processing Lecture 9B Criteria for File Organisation.
Databases and Processing Modes. Fundamental Data Storage Concepts and Definitions What is an entity? An entity is something about which information is.
Chapter 5 Secondary Storage
Intermediate GNVQ ICT Backing Storage Backing storage is used to store programs and data when they are not being used or when a computer is switched off.
Storage Devices and Media
Storage and Multimedia: The Facts and More
Chapter 8 Secondary Storage.
1 Introduction to Computers Day 5. 2 Magnetic Tapes Very popular with mainframe computers Storage density is expressed in ‘bytes per inch’ (bpi) or character.
Free Powerpoint Templates Page 1 Free Powerpoint Templates DBMS Unit -1 Overview of physical Storage Media.
Chapter 3 – Computer Hardware Computer Components – Hardware (cont.) Lecture 3.
Objectives Learn what a file system does
Programming Logic and Design Seventh Edition
Chapter 13 File Structures. Understand the file access methods. Describe the characteristics of a sequential file. After reading this chapter, the reader.
Module 6: Information storage Objective – The bird view of data and information storage – Benefits of secondary storage – Second storage device for personal.
© Paradigm Publishing Inc. 9-1 Chapter 9 Database and Information Management.
CHAPTER 7 Storage Katie Moody Storage Storage holds data, instructions, and information for future use. Every computer uses storage to hold software.
The McGraw-Hill Companies, Inc Information Technology & Management Thompson Cats-Baril Chapter 3 Content Management.
1 California State University, Fullerton Chapter 7 Information System Data Management.
Computers: Information Technology in Perspective By Long and Long Copyright 2002 Prentice Hall, Inc. Computers: Information Technology in Perspective.
Lecture 4: Secondary Storage. I. Secondary Storage (Hard Drives) Secondary Storage Secondary Storage: holds data and programs for future use by providing.
Objectives Overview Differentiate between storage and memory
© Paradigm Publishing Inc. 9-1 Chapter 9 Database and Information Management.
Data and its manifestations. Storage and Retrieval techniques.
GCSE Information Technology Storing data Data storage devices can be divided into 2 main categories: Backing storage is used to store programs and data.
1Module 6: Storage How do you explain how CPU works to a housewife.
©Brooks/Cole, 2003 Chapter 13 File Structures. ©Brooks/Cole, 2003 Understand the file access methods. Describe the characteristics of a sequential file.
13. File Structures. ACCESSMETHODSACCESSMETHODS 13.1.
Computers: Tools for an Information Age Chapter 6 Storage and Multimedia: The Facts and More.
Data resource management
Organization of Information. Files, records and fields Paper files  computer files E.g. customer accounts information stored in a bank Customer name,
Storage Devices 1. Objectives Overview Differentiate between storage devices and storage media Describe the characteristics of an internal hard disk including.
Storage of Data Instructions and data are held in main memory which is divided into millions of addressable storage.
Computers: Tools for an Information Age.  Separate from the computer itself  Software and data stored on a semipermanent basis  Unlike memory, not.
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.
Storage Devices.
FILE ORGANIZATION.
Storage devices 1. Storage Storage device : stores data and programs permanently its retained after the power is turned off. The most common type of storage.
Memory The term memory is referred to computer’s main memory, or RAM (Random Access Memory). RAM is the location where data and programs are stored (temporarily),
( ) 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.
Computers: Tools for an Information Age
Overview of Computers and Programming Chapter 1
Week 12 Option 3: Database Design
CHAPTER 4 Memory System Organization and Architecture
What is a Database and Why Use One?
Programming Logic and Design Eighth Edition
FILE ORGANIZATION.
Chapter 9 Database and Information Management.
Managing data Resources:
Computer Application Waseem Gulsher
Computers: Tools for an Information Age
5 Backing Storage Backing storage is used to store programs and data when they are not being used or when a computer is switched off. When programs and.
Presentation transcript:

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. Data is stored as extremely small magnetic spots. Types of tapes; –½ inch wide tape in reels –¼ inch wide tape in cartridges and cassettes –Tapes that look like ordinary music cassettes but are designed to store data. 2

Magnetic Tape Storage Amount of data in tapes are expressed in terms of density –Number of bytes per inch (bpi) stored on tape –Number of characters per inch (cpi) stored on tape Data on the tape is accessed sequentially while on the disk it is accessed directly. Used primarily for backup of data stored on disk systems as inexpensive backup medium. 3

Backup Systems It is very important to have copies of important data stored away from the computer –Disks rarely fail –Software installation can cause computer to crash –Users make mistakes entering data Tape is ideal backup medium –Can copy entire hard disk to single tape in minutes –Backup can be scheduled when you are not going to use the system 4

Organizing and Accessing Stored Data Organizations that store data usually need a lot of data on many subjects –Charity organization would need detailed information about donors, names and schedules of volunteers –A factory would need to keep track of inventory –A school would need detailed personal and academic records of students All this data is stored in a predefined organization. 5

Organizing and Accessing Stored Data Character –A letter, digit, or special character Field –A set of related characters –Describes one characteristic of a person, place, or thing For a university, a student’s first name would be stored in a field –Key field - a unique identifier for a record 6

Organizing and Accessing Stored Data Record –A collection of related fields For the university, all of the fields for one student constitute one record File –A collection of related records For university, all the student records compose a file 7

Organizing and Accessing Stored Data Database –A collection of related files stored with minimum redundancy (duplication) For university, student file, alumni file, faculty/staff file, courses file, financial file, etc. would make up a database –Organized to make retrieving data easier 8

File Plan Overview Must devise a plan for placing data on a storage unit Key factors –Whether users must access data directly (immediately) –How data must be organized on disk –Type of processing that will take place 9

File Organization Three major methods of organizing data files in secondary storage –Sequential –Direct –Indexed 10

Sequential File Organization Records are stored in order according to a key field –If a particular record is desired, all prior records must be read first –To update a record, a new sequential file must be created, with changed and unchanged records Tape storage uses sequential organization 11

Direct File Organization Also called random access Go directly to desired record by using a key –Computer does not have to read all prior records –Hashing algorithm used to determine address of given key Requires disk storage 12

Hashing Algorithm Applies mathematical formula to key to determine disk address of given record –Collision occurs when hashing algorithm produces same disk address for two different keys 13

Indexed File Organization Combines elements of sequential and direct methods –Records stored sequentially, but file also contains an index –Index stored sequentially, contains record key –Data accessed by record key 14

Processing Stored Data Transactions processed to update a master file –Transactions - a business event such as a sale –Master file - data that is updated when a transaction occurs, such as a sales file or inventory file Two main methods of processing data –Batch processing –Transaction processing 15

Batch Processing Transactions collected into groups or batches –Batch processed and master file updated in a regular basis Very efficient use of computer resources Master file current only immediately after processing 16

Transaction Processing Processing transactions as they occur –Also called real-time processing and online processing –Terminals must be connected directly to the computer Offers immediate updating of master file 17

Multimedia Presents information with text, illustrations, photos, narration, music, animation, and film clips Not practical until the advent of the optical disk 18

Multimedia 19

Requirements CD-ROM or DVD-ROM drive Sound card or sound chip Speakers –For high-quality sound, get good speakers and powered subwoofer Equipped to handle the appropriate format 20

Applications Education –Go on virtual tours –Study musical scores –Study a foreign language –Play educational games 21

References Capron, H. L. (2000). Computers Tools for an Information Age.(6th ed.). New Jersey, USA: Prentice Hall. Multimedia. (2009). Retrieved 27 December 2009 from 22