Top Banner
Introduction to Computers Lesson 10B Lesson 10B
23

Introduction to Computers Lesson 10B. home Database A collection of related data or facts.

Jan 03, 2016

Download

Documents

Charlene Lloyd
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Introduction to Computers Lesson 10B. home Database A collection of related data or facts.

Introduction to Computers

Lesson 10BLesson 10B

Page 2: Introduction to Computers Lesson 10B. home Database A collection of related data or facts.

homehome

Database

A collection of related data or facts

Page 3: Introduction to Computers Lesson 10B. home Database A collection of related data or facts.

homehome

Database Management System (DBMS)

A software tool that lets you store,

access and process data or facts into

useful information

Page 4: Introduction to Computers Lesson 10B. home Database A collection of related data or facts.

homehome

Important Database Terms

Fields

Records

Tables

Page 5: Introduction to Computers Lesson 10B. home Database A collection of related data or facts.

homehome

Two Kinds of Databases

Flat-file

Relational

Page 6: Introduction to Computers Lesson 10B. home Database A collection of related data or facts.

homehome

Flat-file Database

A database file that has a single data

table

Page 7: Introduction to Computers Lesson 10B. home Database A collection of related data or facts.

homehome

Relational Database

A database made up of a set of tables

A common field in two tables creates a

relationship between the tables

Page 8: Introduction to Computers Lesson 10B. home Database A collection of related data or facts.

homehome

Three Categories of Data Management

Entering data into the database

Sorting the data

Obtaining data subsets

Page 9: Introduction to Computers Lesson 10B. home Database A collection of related data or facts.

homehome

Data Management Interface Tools

Creating tables

Viewing records

Sorting records

Creating queries

Generating reports

Page 10: Introduction to Computers Lesson 10B. home Database A collection of related data or facts.

homehome

Steps for Creating Fields

Name the field

Specify the field type

Specify the field size

Page 11: Introduction to Computers Lesson 10B. home Database A collection of related data or facts.

homehome

Types of Fields

Text

Numeric

Date or time

Logical

Binary

Counter

Memo

Page 12: Introduction to Computers Lesson 10B. home Database A collection of related data or facts.

homehome

Form

Custom view of the table that shows

one record at a time

Page 13: Introduction to Computers Lesson 10B. home Database A collection of related data or facts.

homehome

Mask

Also known as picture or field format

Accepts only valid characters and

controls the entry’s display format

Page 14: Introduction to Computers Lesson 10B. home Database A collection of related data or facts.

homehome

Filter

Displays a selected list or subset of

records from a table

Page 15: Introduction to Computers Lesson 10B. home Database A collection of related data or facts.

homehome

Query

User instructions that describe data and

set criteria for the DBMS, which then

constructs information based on the

instructions

Page 16: Introduction to Computers Lesson 10B. home Database A collection of related data or facts.

homehome

Examples of Queries

Allow the DBMS to locate records

Establish relationships or links between tables to update records

List a subset of records

Perform calculations

Delete obsolete records

Perform other data management tasks

Page 17: Introduction to Computers Lesson 10B. home Database A collection of related data or facts.

homehome

Ways to Perform Queries

SQL

Xbase

QBE

Page 18: Introduction to Computers Lesson 10B. home Database A collection of related data or facts.

homehome

SQL

English-like query language that lets the

user query a database without knowing

much about the underlying database

structure

Page 19: Introduction to Computers Lesson 10B. home Database A collection of related data or facts.

homehome

Xbase

Generic query language derived from

the query/programming language used

in Ashton Tate’s Dbase family of

database products

Page 20: Introduction to Computers Lesson 10B. home Database A collection of related data or facts.

homehome

Query by Example (QBE)

Graphic query interface using a form or

a grid

Page 21: Introduction to Computers Lesson 10B. home Database A collection of related data or facts.

homehome

Report

Printed information that, like a query result, is assembled by gathering data based on user-supplied criteria

Report generators in most DBMSs create reports from queries

Page 22: Introduction to Computers Lesson 10B. home Database A collection of related data or facts.

Lesson 10BLesson 10B

Database Management Database Management SystemsSystems

Page 23: Introduction to Computers Lesson 10B. home Database A collection of related data or facts.

homehome

Review Questions

What is a DBMS?

What are the two kinds of databases?

What is a form?

What is a query?