2/20: Ch. 6 Data Management What is data? How is it stored? –Traditional management storage techniques; problems –DBMS.

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.
Muhamad AbduhInstitut Teknologi Bandung5.1 W e e k 5 5 DATABASE.
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.
Managing Data Resources
7.1 © 2002 by Prentice Hall c h a p t e r 7 7 MANAGING DATA DATARESOURCES.
7.1 © 2006 by Prentice Hall 7 Chapter Managing Data Resources.
ORGANIZING DATA IN A TRADITIONAL FILE ENVIRONMENT
Organizing Data & Information
Managing data Resources:
Introduction to Database Management
Managing Data Resources
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.
Chapter 4 Relational Databases Copyright © 2012 Pearson Education, Inc. publishing as Prentice Hall 4-1.
SESSION 7 MANAGING DATA DATARESOURCES. File Organization Terms and Concepts Field: Group of words or a complete number Record: Group of related fields.
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.
Managing Data Resources
Chapter 4 Relational Databases Copyright © 2012 Pearson Education 4-1.
6.1 CHAPTER 6. MANAGING DATA RESOURCES. 6.2 LEARNING OBJECTIVES COMPARE TRADITIONAL FILE ORGANIZATION & MANAGEMENT TECHNIQUESCOMPARE TRADITIONAL FILE.
Management Information Systems
D ATA, D ATABASE, DBMS, DBMS SOFTWARE, R ELATION, A PPLICATION, ENVIRONMENT, BENEFITS. Week 8 Mr.Mohammed Rahmath.
7.1 Copyright © 2005 Pearson Education Canada Inc. Management Information Systems, Second Canadian Edition Chapter 7: Managing Data Resources MANAGING.
Database System Concepts and Architecture Lecture # 3 22 June 2012 National University of Computer and Emerging Sciences.
COMPUTING FOR BUSINESS AND ECONOMICS-III. Lecture no.6 COURSE INSTRUCTOR- Ms. Tehseen SEMESTER- Summer 2010.
5.1 © 2007 by Prentice Hall 5 Chapter Foundations of Business Intelligence: Databases and Information Management.
Intro to MIS – MGS351 Databases and Data Warehouses Chapter 3.
Managing Data Resources
Essentials of Management Information Systems, 6e Chapter 7 Managing Data Resources 7.1 © 2005 by Prentice Hall Managing Data Resources Chapter 7.
STORING ORGANIZATIONAL INFORMATION— DATABASES CIS 429—Chapter 7.
2005 SPRING CSMUIntroduction to Information Management1 Organizing Data John Sum Institute of Technology Management National Chung Hsing University.
Chapter 7: Database Systems Succeeding with Technology: Second Edition.
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.
8. 8.MANAGINGDATARESOURCES MANAGINGDATARESOURCES 8.1.
7.1 © 2004 by Prentice Hall Management Information Systems 8/e Chapter 7 Managing Data Resources 7 7 MANAGING DATA DATARESOURCES Chapter.
6 Chapter Databases and Information Management. File Organization Terms and Concepts Bit: Smallest unit of data; binary digit (0,1) Byte: Group of bits.
Chapter 6.
File Systems and Databases Lecture 1. Files and Databases File: A collection of records or documents dealing with one organization, person, area or subject.
Database A database is a collection of data organized to meet users’ needs. In this section: Database Structure Database Tools Industrial Databases Concepts.
Oleh Munawar Asikin. Principles of Information Systems, Seventh Edition 2  Database management system (DBMS): group of programs that manipulate database.
1.file. 2.database. 3.entity. 4.record. 5.attribute. When working with a database, a group of related fields comprises a(n)…
Storing Organizational Information - Databases
Announcements. Data Management Chapter 12 Traditional File Approach  Structure Field  Record  File  Fixed All records have common fields, and a field.
C6 Databases. 2 Traditional file environment Data Redundancy and Inconsistency: –Data redundancy: The presence of duplicate data in multiple data files.
MANAGING DATA DATARESOURCES Chapter. 7.2 File Organization Terms and Concepts Bit: Smallest unit of data; binary digit (0,1)Bit: Smallest unit.
Module 2: Information Technology Infrastructure Chapter 5: Databases and Information Management.
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
Database Fundamentals CSC105 Furman University Peggy Batchelor.
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.
Foundations of Business Intelligence: Databases and Information Management.
3/6: Data Management, pt. 2 Refresh your memory Relational Data Model
6.1 FILE ORGANIZATION BIT: Binary Digit (0,1; Y,N; On,Off)BIT: Binary Digit (0,1; Y,N; On,Off) BYTE: Combination of BITS which represent a CHARACTERBYTE:
Chapter 13.3: Databases Invitation to Computer Science, Java Version, Second Edition.
6-1 Copyright © 2013 Pearson Canada Inc. Databases and Information Management CHAPTER SIX.
6.1 © 2007 by Prentice Hall Chapter 6 (Laudon & Laudon) Foundations of Business Intelligence: Databases and Information Management.
3.1 © 2006 by Prentice Hall 1 Chapter Managing Data Resources.
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.
Intro to MIS – MGS351 Databases and Data Warehouses
Databases and Data Warehouses Chapter 3
MANAGING DATA RESOURCES
Managing data Resources:
Managing data Resources:
MANAGING DATA RESOURCES
Presentation transcript:

2/20: Ch. 6 Data Management What is data? How is it stored? –Traditional management storage techniques; problems –DBMS

What is data? The Data Hierarchy BIT: binary digit (0,1; Y,n; On,off) BYTE: combination of BITS which represent a CHARACTER FIELD: collection of BYTES which represent a DATUM or fact RECORD: collection of FIELDS which reflect a TRANSACTION FILE: A collection of similar RECORDS DATABASE: an organization’s electronic library of FILES

How is data stored? ENTITY: person, place, thing, event about which data must be kept ATTRIBUTE: description of a particular ENTITY KEY FIELD: field used to retrieve, update, or sort RECORD

How is Data Stored? The Key Field Field in each record that uniquely identifies a record for –Retrieval –Updating –Sorting

How is data stored? File Organization Sequential –Tape oriented –One file follows another –Follows physical sequence –ISAM: Indexed Sequential Access Method Index tracks key fields, where each record is stored. Speeds up access to records

How is data stored? File Organization Direct (or Random) –Disk oriented –Can be accessed without regard to physical sequence –Transform algorithm Translates the key field into the physical location on disk.

So What’s the Problem? History Traditional management storage techniques Each application was created independently –Each application had its own database created –Applications cannot share data Duplicate data exists across the organization Inefficiency & Independence reign supreme

What’s the Problem? Data Redundancy –“Duplicate data exists across the organization” Program-Data Dependence –“Each application had its own database created” Lack of Flexibility & Data-Sharing –Too expensive to mine the data for undiscovered relationships or information Poor security –Who knows how many places your SSN is stored?

The Database Organization’s electronic library Stores & manages data in a convenient form

Database Management System Software to create & maintain data Enables business applications to extract data Independent of specific computer programs

The 3 Key Components of a DBMS Data definition language: –Defines data elements in database Data manipulation language: –Manipulates data for applications –SQL: Structured Query Language Emerging standard data manipulation language for relational databases Data dictionary: –Formal definitions of all variables in database; Controls variety of database contents

So What’s the Big Deal? The DBMS separates the physical location and conceptual (or logical) location of data in the file system. You don’t have to know where the data is to access or manipulate it. PHYSICAL VIEW: where is data physically? –Drive, disk, surface, track, sector, record –Tape, block, record number (key) LOGICAL VIEW: what data is needed by application? –Succession of facts needed by application –Name, type, length of field

Next Time: Guest speaker: Jeff Till, programmer Using MS Excel Pick up database concepts again after Midterm Exam.