Top Banner
1 / 28 10 Database Management
29

0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

Jan 19, 2016

Download

Documents

Franklin Harvey
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: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

1 / 28

10

Database Management

Page 2: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

2 / 28

10

Identify file maintenance techniques

Discuss the terms character, field, record, and table

Describe characteristics of relational and object-oriented databases

Explain how to use aquery language

Understand how Webdatabases work

Discuss the functions most common to DBMSs

Identify the qualities of valuable information

Understand the concept of a data warehouse

Page 3: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

3 / 28

10

Database

AKA Database Management System (DBMS)

Collection of Data Organized for Quick Access, Retrieval, & Use

Databases Allow You to

Create Database

Add, Change, & Delete Data

Sort & Query Database

Print Reports

Page 4: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

4 / 28

10

Data Integrity

Degree to Which Data is Correct

When Database Contains Errors, it Loses Integrity

GIGO (Garbage In, Garbage Out)

Cannot Create Correct Information From Incorrect Data

Page 5: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

5 / 28

10

Qualities of Valuable Information

Accurate Verifiable Timely Organized Accessible Useful Cost-effective

Page 6: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

6 / 28

10

Data Hierarchy

Database Contains Files File Contains Records Record Contains Fields Field Contains Characters

Page 7: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

7 / 28

10

Field

Combination of One or More Characters

Smallest Unit of Data User Accesses

Page 8: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

8 / 28

10

Field Characteristics

Field Name Uniquely Identifies Each Field Data Type

Text Numeric Autonumber Currency Date Memo Hyperlink Object

Field Size

Page 9: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

9 / 28

10

Record

Group of Related Fields

Key Field

AKA Primary Key

Uniquely Identifies Each Record

Page 10: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

10 / 28

10

Table / File

Collection of Related Records Stored on Disk

Each Record in File Contains Same Fields

Each Field Contains Different Data

Database Composed of Group of Related Tables / Files

Page 11: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

11 / 28

10

Popular DBMS

PC, midrange server, mainframeIBM CorporationDB2

PC, midrange server, mainframeIBM CorporationInformix

ServerMicrosoft CorporationSQL Server

PC, midrange server, PDASybase Inc.Sybase

PC, midrange server, mainframe, PDAOracle CorporationOracle

PC, midrange server, mainframeComputer Associates International, Inc.

Ingres

PC, server, PDAMicrosoft CorporationAccess

Computer TypeManufacturerDatabase

Page 12: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

12 / 28

10

File Maintenance

Procedure That Keeps Data Current Add Records

When You Obtain New Data Change Records

Correct Inaccurate Data Update Existing Data

Delete Records Record No Longer Needed

Page 13: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

13 / 28

10

Validation

Process of Comparing Data with a Set of Rules

Find Out if Data is Correct

Reduce Data Entry Errors

Enhance Data Integrity

Page 14: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

14 / 28

10

Validation

Types Alpha / Numeric

Correct Data Type Entered

Range Number is in Specified Range

Completeness Required Field Contains Data

Consistency

Check Digit

Page 15: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

15 / 28

10

Data Dictionary

Contains Data About Each File in Database Contains Data About Each Field in Those Files

Page 16: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

16 / 28

10

Form

On Screen Window Provides Areas for Entering / Changing Data in a

Single Record

Page 17: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

17 / 28

10

Report Generator

Generates Report Without User’s Knowledge of Programming

Page 18: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

18 / 28

10

Report Types

Detailed

Summary

Consolidates Data

Exception

Identifies Data Outside of Norm

Conditions Define Status Range

Page 19: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

19 / 28

10

Query

Request Specific Data from Database SQL (Structured Query Language)

Allow Users to Specify Data to Display, Print, or Store QBE (Query By Example)

Retrieves Records that Match Criteria Entered in Form Fields

QBE Criteria

Result

Page 20: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

20 / 28

10

File Processing System

Each Department Has Own Set of Files Records in One File May Not Relate to Records

in Other Files Weakness

Redundancy Same Fields Stored in Multiple Files

Isolated Difficult to Access

Page 21: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

21 / 28

10

Database System

Many Programs & Users Can Share Data Secures Data

Only Authorized Users Can Access Certain Data Can View Data But Not Update or Change It

Page 22: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

22 / 28

10

Storage Differences

Page 23: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

23 / 28

10

Database System Strengths

Reduced Redundancy

Improved Integrity

Shared Data

Easier Access

Reduced Development Time

Page 24: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

24 / 28

10

Data Model

How Database Organizes Data

Defines How Users View Data

Types

Relational

Object-oriented

Multidimensional

Page 25: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

25 / 28

10

Relational Database

Stores Data in Tables

Consist of Rows & Columns

Each Row has Primary Key

Related Tables Must Havea Common Field tabletable

columncolumn

relationshipsrelationships

rowrow

Page 26: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

26 / 28

10

Object-oriented Database (OODB)

Stores Data in Objects Can Contain Both Data & Activities That Read /

Process Data Advantages

Can Store More Types of Data Can Access Data Faster

Example Multimedia Database

Store Images, Audio, and/or Video

Page 27: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

27 / 28

10

Multidimensional Database

Stores Data in Dimensions

Multiple Dimensions Allow Users to Analyze Any View of Data

AKA Hypercube

Advantages

Consolidates Data Much Faster than Relational Database

Page 28: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

28 / 28

10

Multidimensional Database

Data Warehouse From Multiple Databases

Comprehensive Data Required to Analyze Data Across Enterprise

Examples Data Mining

Process of Finding Patterns & Relationships Among Data Click Stream

Collection of Every Action Users Makes in Web Site

Page 29: 0 / 28 10 Database Management. 1 / 28 10 Identify file maintenance techniques Discuss the terms character, field, record, and table Describe characteristics.

29 / 28

10

Database Development Guidelines