 So far in ICT we’ve covered how data is entered into computers (data capture) and how it’s checked (validation and verification).  In this section.

Slides:



Advertisements
Similar presentations
Organisation Of Data (1) Database Theory
Advertisements

DATA TYPES ICT DATATYPES. DATA TYPES ICT Numeric Data Numeric data simply means numbers. But, numbers come in a variety of different types... Integers.
Database Management: Getting Data Together Chapter 14.
Database Design Concepts Info 1408 Lecture 2 An Introduction to Data Storage.
Database Systems. What is a database? A database is an organised store of data items.
Databases and Database Management Systems
Information Storage and Retrieval CS French Chapter 3.
MS Access 2007 IT User Services - University of Delaware.
Databases Tom Morgan.
Software Development Unit 2 Databases What is a database? A collection of data organised in a manner that allows access, retrieval and use of that data.
Databases. Objectives Define what a database is. Understand the difference between a flat and relational database Design and create a relational database.
Relational Database Need to Knows. What is a database? Data - is just a pile of numbers or stats. A business "organises" the data to be meaningful and.
Topics Covered: Data preparation Data preparation Data capturing Data capturing Data verification and validation Data verification and validation Data.
Microsoft Access Intro Class 1 Database Concepts.
 By the end of this, you should be able to state the difference between DATE and INFORMAITON.
Information and Data What’s the difference between two? Information systems = hardware and software working together… It will take DATA that has been put.
Unit 18: Database Modelling
AS Module 2 Information; Management and Management and Manipulation or what to do with data, how to do it, and……... ensure it provides useful information.
© Paradigm Publishing Inc. 9-1 Chapter 9 Database and Information Management.
 A databases is a collection of data organized to make it easy to search and easy to retrieve in a useful, usable form.
FatMax Licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 2.5 LicenseCreative Commons Attribution-NonCommercial-ShareAlike 2.5.
Chapter 7: Database Systems Succeeding with Technology: Second Edition.
To enhance learning, service, and research through an advanced information technology environment. Our Mission:To enhance learning, service,and research.
FatMax Licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 2.5 LicenseCreative Commons Attribution-NonCommercial-ShareAlike 2.5.
DATABASE. Computer-based filing systems Information in computer-based filing systems are stored in DATA FILES. A FILE is a collection of RELATED RECORDS.
Data Modelling. ICT5 Introduction Historical development with most organisations Small-scale origins Individual computers bought for particular applications.
Discovering Computers Fundamentals Fifth Edition Chapter 9 Database Management.
GCSE Computing#BristolMet Session Objectives# 20 MUST describe a database and discuss the legal implications of storing personal information SHOULD explain.
Information Systems & Databases 2.2) Organisation methods.
Databases ©
Database What is a database? A database is a collection of information that is typically organized so that it can easily be storing, managing and retrieving.
Data and information. Information and data By the end of this, you should be able to state the difference between DATE and INFORMAITON.
Database Management System (DBMS) an Introduction DeSiaMore 1.
DATABASE What exactly is a database How do databases work? What's the difference between a spreadsheet database and a "real" database?
Database Management Systems.  Database management system (DBMS)  Store large collections of data  Organize the data  Becomes a data storage system.
INFO1408 Database Design Concepts Week 15: Introduction to Database Management Systems.
FILES AND DATABASES. A FILE is a collection of records with similar characteristics, e.g: A Sales Ledger Stock Records A Price List Customer Records Files.
Databases.
3 / 12 Databases MIS105 Lec13 Irfan Ahmed Ilyas CHAPTER Prepared By:
ITGS Databases.
Database Fundamentals CSC105 Furman University Peggy Batchelor.
Relational Databases. Relational database  data stored in tables  must put data into the correct tables  define relationship between tables  primary.
Utilizing Databases to Manage Precision Ag Data Candice Johnson BAE 4213 Spring 2004.
Database Management Systems (DBMS)
0 / Database Management. 1 / Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.
Flat Files Relational Databases
CIS 250 Advanced Computer Applications Database Management Systems.
FatMax Licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 2.5 LicenseCreative Commons Attribution-NonCommercial-ShareAlike 2.5.
Adapted from: FatMax Licensed under a Creative Commons Attribution-NonCommercial- ShareAlike 2.5 LicenseCreative Commons Attribution-NonCommercial-
 A collection of data organized in a way that allows:  Easy access  Easy retrieval of specific data  Easy use of the data.
CSCI-235 Micro-Computers in Science Databases. Database Concepts Data is any unorganized text, graphics, sounds, or videos A database is a collection.
DATA TYPES.
Lesson 10 Databases.
Databases.
Databases Key Revision Points.
BASIC INFORMATION ABOUT DATABASE MANAGEMENT SOFTWARE
Database Database is a large collection of related data that can be stored, generally describes activities of an organization. An organised collection.
ICT Database Lesson 1 What is a Database?.
Databases A brief introduction….
Databases.
What is a Database and Why Use One?
Chapter 9 Database and Information Management.
GCSE Computing Databases.
Database Design Hacettepe University
Spreadsheets, Modelling & Databases
OBSERVER DATA MANAGEMENT PRINCIPLES AND BEST PRACTICE (Agenda Item 4)
Database management systems
Presentation transcript:

 So far in ICT we’ve covered how data is entered into computers (data capture) and how it’s checked (validation and verification).  In this section of the course we’ll look at how data is organised/stored so that it can be retrieved effectively Capturing DataData Checking Storage & Retrieval

 A collection of organised data  Data has structure  Can be paper-based  More common to talk about electronic databases i.e. computer-based

 A flat-file database is a simple database that stores all data in a single table  A flat-file database can be stored in a text file, such as a tab-delimited file; a spreadsheet; or in a database file that contains one or more unrelated tables.

 Flat file example FatMax Licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 2.5 LicenseCreative Commons Attribution-NonCommercial-ShareAlike 2.5 License Record A single record will hold all the data relating to one unit of processing. e.g a track Field A field stores one item of data for the record File Data file contains a number of records

Data types (Access specific)  There are 5 main data types Text Date Numeric Boolean Counter CharactersTrue/FalseNumbersVarious formatsAuto-inserted no.

 Useful for simple lists: Address book/contact list CD collection  But many problems You’ll usually be asked to identify FOUR problems with flat files in the exam so pay attention to the next few slides!

Redundancy  Large amounts of duplicated data  Makes data entry slower  Uses disk space  Leads to other problems…

Reduced data integrity  More likely to be inaccurate!  Due to: Data input errors Inconsistent data entry

Difficult to update If entries change all instances have to be updated Security All users have access to the same set of data Program-Data Dependence The user interface (amongst other things) is tied to a specific file. To create new views of data you would need to create new data files

 The problems associated with flat files can be solved by moving some of the data out of the main table and accessing it when required A relational database (RDBMS) is a more complex database that stores data in multiple tables that are interrelated.

 In the example on the previous slide there is still a problem in the ORDERS table. How would you resolve it?  Relational databases are covered in more detail in another presentation. For now it is only important that you can identify the benefits of RDBMS over flat file systems…

 Reduced redundancy  Improved data consistency  Improved data integrity  Better security  Program-data independence

 Using your textbook (or web-based resources) make notes on the five benefits of RDBMS listed on the previous slide