Introduction to Databases

Slides:



Advertisements
Similar presentations
©G. Millbery 2003Data, Information, Knowledge and Processing Slide 1 Validation  Making sure that the data value entered is sensible and reasonable 
Advertisements

2.2 Validation & Verification
Validation and Verification Today will look at: The difference between accuracy and validity Explaining sources of errors and how they could be overcome.
Validation and Verification
RNJ 10/02/091 3 Computing System Fundamentals 3.6 Errors Prevention and Detection.
Microsoft Office 2003: Advanced 1 ADVANCED MICROSOFT ACCESS Lesson 7 – Modifying Table Design.
Chapter 8: Systems analysis and design
Verify your data entry You could use data types and field properties for adding any validation on your date: EX: Data type: number : allow the user to.
Encoding, Validation and Verification Chapter 1. Introduction This presentation covers the following: – Data encoding – Data validation – Data verification.
Database Evidence Elena Rybka. Field Names Entering Field Names 0 I entered all of the Field Names that were specified in the Data Item list provided.
GCSE ICT Checking data. Why do errors happen? Computers do not make mistakes. However if incorrect data is put in errors happen. In ICT this is called.
DATABASE. Computer-based filing systems Information in computer-based filing systems are stored in DATA FILES. A FILE is a collection of RELATED RECORDS.
Unit 5 Evidence Name: Corey jones. 1.What software did you use? When doing my unit 5 spreadsheet I used Microsoft excel. 2. Why did you use this rather.
Data entry: Validation
Checking data Chapter 7 Prepared by:Sir Mazhar Javed.
GCSE Computing#BristolMet Session Objectives# 20 MUST describe a database and discuss the legal implications of storing personal information SHOULD explain.
Database Evidence Eva O’Sullivan. Entering Field Names Once in design view, I entered the field names into the database according to the ‘Data Items List’
Creating a Database Designing Structure, Capturing and Presenting Data.
Collecting Data Types, coding, accuracy, file formats and the effect of data loss.
Systems Life Cycle. Know the elements of the system that are created Understand the need for thorough testing Be able to describe the different tests.
AS computing Validation and verification. Introduction It is important to maintain the integrity of any database of information. Any data item must always.
AS Level ICT Data entry: Problems with errors. Garbage in; Garbage out If incorrect data is entered into a data management system, the results of any.
Changing Your Password General Lesson 3. Objectives Following completion of this lesson you will be able to:. Define how often a password must be changed.
Verification & Validation. Batch processing In a batch processing system, documents such as sales orders are collected into batches of typically 50 documents.
1 3 Computing System Fundamentals 3.6 Errors Prevention and Recovery.
Data Verification and Validation
1 AQA ICT AS Level © Nelson Thornes 2008 Good quality data and information Data terms.
Data Validation while loops. Data validation Programs get input data from different sources All data should be ‘validated’ before the program tries to.
Lesson 4.  After a table has been created, you may need to modify it. You can make many changes to a table—or other database object—using its property.
AS Level ICT Data entry: Creating validation checks.
TIMOTHY SERVINSKY PROJECT MANAGER CENTER FOR SURVEY RESEARCH Data Preparation: An Introduction to Getting Data Ready for Analysis.
Data Management Data Verification Data Validation.
Testing.
Validation & Verification Today will look at: The difference between accuracy and validity Explaining sources of errors and how they could be overcome.
Software. Because databases can get very big, it is important to decide exactly what is going to be stored in each field. Fields can be text, number,
Input, Output and Processing.. What data needs to be input into the system? Identify the sources – i.e. where does the data come from? What is the volume.
Data Capture Forms What are they?. Example 1 Example 2.
GCSE ICT LESSON 5 Booklet Sections: 6 & 7 Data Capture & Checking Data.
Validation and verification 1.2
DATA TYPES.
Microsoft Office Access 2010 Lab 2
Data Validation and Protecting Workbook
Handling Data Designing Structure, Capturing and Presenting Data
Validation Rules BCS-CA2-4 Students will use database software to create, edit & publish industry appropriate files.
Testing a Solution.
Unit 2.3 Robust Programs Lesson 1 - Defensive Design Consideration
Validation Bury College.
Systems Life Cycle: Testing
Building Configurable Forms
Databases.
Setting up an online account
IT Applications Theory Slideshows
How can errors in data occur when using an ICT system?
Databases Software This icon indicates the slide contains activities created in Flash. These activities are not editable. For more detailed instructions,
Lesson 5: Epic Appointment Scheduling Referrals
Handling Data Designing Structure, Capturing and Presenting Data
Lesson 5: Epic Appointment Scheduling Referrals
Group 2 module 2 obj 15 explain the meaning of terms related to the security of Information Technology Systems.
Verification and Validation
Entering Records.
Validation and Verification
Instructor Materials Chapter 5: Ensuring Integrity
Validation Rules BCS-CA2-4 Students will use database software to create, edit & publish industry appropriate files.
Presentation transcript:

Introduction to Databases Software Photo credit: ©2007 JupiterImages Corporation

Learning objectives Understand what a database is and how it works. Understand the purpose of data validation and the procedures involved. Be able to name organizations that use databases and the reasons why they do so. 2 of 16 © Boardworks Ltd 2007

What else can it do? Validation is where the database looks for mistakes in data being entered. The database checks the data against the validation rules, and if the data is not valid, it gives the user an error message. Validation cannot prevent all data entry mistakes, but it can find some.

Validation In our database, one way we could validate the ‘Date of Birth’ field is to make it only accept dates after 1910. We could validate the Number of GCSE Passes field to be less than 20. That wouldn’t stop us entering Jerome’s passes as 1 instead of 7, because 1 and 7 would both be valid. To find that mistake, we would have to verify the data by checking it against the source.

Types of validation Format check – e.g. two letters followed by two numbers – PR15 would be valid but PRX71 would not. Presence check – checking that the field contains any data. Range check –checking that the data is between certain numbers or letters, e.g. A–E. Lookup check – checking that only values from a set list can be entered, e.g. M or F. Size check – checking data falls within a minimum or maximum number of characters.

Error messages If data is entered and it breaks the validation rules, the database can give an error message to explain what is wrong. It is best if error messages are written in plain language to help the user understand what is wrong. For instance, if a field can only contain the data ‘M’ or ‘F’, the message: Entry not valid is not nearly as helpful as: Please enter M or F