+ All Categories
Home > Documents > Lead Black Slide

Lead Black Slide

Date post: 25-Feb-2016
Category:
Upload: janice
View: 37 times
Download: 0 times
Share this document with a friend
Description:
Lead Black Slide. Chapter 7. Information System Data Management. Our Agenda. File Processing Database Processing Database Organization Common Database Software Using Database Software Database Use in Information Systems. Our Agenda (cont’d.). Data Warehouses Multidimensional Databases - PowerPoint PPT Presentation
Popular Tags:
39
Lead Black Slide Powered by DeSiaMore 1
Transcript
Page 1: Lead Black Slide

Lead Black Slide

Page 2: Lead Black Slide

Powered by DeSiaMore 2

Chapter 7

Information SystemData Management

Page 3: Lead Black Slide

Powered by DeSiaMore 3

Our Agenda File Processing Database Processing Database Organization Common Database Software Using Database Software Database Use in Information

Systems

Page 4: Lead Black Slide

Powered by DeSiaMore 4

Our Agenda (cont’d.) Data Warehouses Multidimensional Databases Database Administration

Page 5: Lead Black Slide

Powered by DeSiaMore 5

Learning Objectives List advantages and disadvantages

of file processing. Explain what a database is and

what a database management system does.

List advantages and disadvantages of database processing.

Identify the main types of relationships in database processing.

Page 6: Lead Black Slide

Powered by DeSiaMore 6

Learning Objectives (cont’d.) Explain the organization of

relational databases. Describe the differences between

database software for personal computers, multiple-user computers and networked computers.

Describe several ways of using database software.

Page 7: Lead Black Slide

Powered by DeSiaMore 7

Learning Objectives (cont’d.) Describe the use of databases in

different types of information systems.

Explain what a data warehouse is and what is meant by data mining.

Describe multidimensional databases and explain on-line analytical processing.

Page 8: Lead Black Slide

Powered by DeSiaMore 8

File Processing

Information SystemData Management

Page 9: Lead Black Slide

Powered by DeSiaMore 9

File Processing Files consist of related records. Records consist of related fields. Fields consist of related characters. Files must contain a key field – a

field where each record’s occurrence is unique.

Page 10: Lead Black Slide

Powered by DeSiaMore 10

File Organization A file can be organized in

secondary storage as a: Sequential file – records are organized

one after the other and each record must be scanned to until the desired record is located.

Direct or Random file – records are not necessarily stored in sequence and can be accessed directly.

Page 11: Lead Black Slide

Powered by DeSiaMore 11

File Organization (cont’d.) A file can be organized in

secondary storage as a: Indexed file – records are stored in

one file and the organization of those records is stored in a second file. To use an indexed file both files, the data file and the index file, must be used together.

Page 12: Lead Black Slide

Powered by DeSiaMore 12

File Management Managing data files requires that

the data be kept up to date. To do so requires: Modifying, or updating, records

involves Adding records Deleting records Changing records

Data Validation – ensuring the data is accurate and secure.

Page 13: Lead Black Slide

Powered by DeSiaMore 13

Advantages and Disadvantages of File Processing Advantages

Simple to use. Disadvantages

Processing data in more than one related file.

Difficult to access data from more than one file at a time.

Dependency between programs and data.

Page 14: Lead Black Slide

Powered by DeSiaMore 14

Database Processing

Information SystemData Management

Page 15: Lead Black Slide

Powered by DeSiaMore 15

Database Processing To overcome some of the

disadvantages of file processing, database processing is used instead.

The database software is called a DataBase Management System (DBMS).

A database is a collection of data and relationships between data stored in secondary storage.

Page 16: Lead Black Slide

Powered by DeSiaMore 16

Advantages and Disadvantages of Database Processing Advantages

Duplication of data is reduced. Easier to process different groups of

data. Not dependent on the organization of

data in the database. Disadvantages

Expensive. More vulnerable than file processing. Can be complex to develop.

Page 17: Lead Black Slide

Powered by DeSiaMore 17

Database Organization

Information SystemData Management

Page 18: Lead Black Slide

Powered by DeSiaMore 18

Data Relationships One-to-one relationship

One group of data is related on only one other group of data.

One-to-many relationship One group of data is related to one or

more other groups of data. Many-to-many relationship

One or more groups of data is related to one or more other groups of data.

Page 19: Lead Black Slide

Powered by DeSiaMore 19

Types of Databases Hierarchical database Network database Relational database Object-oriented database Object-relational database

Page 20: Lead Black Slide

Powered by DeSiaMore 20

Common Database Software

Information SystemData Management

Page 21: Lead Black Slide

Powered by DeSiaMore 21

Common Database Software Personal Computer

dBASE Access FoxPro Approach Fourth Dimension Oracle

Networked Systems Oracle Sybase SQL Server Informix GemStone ObjectStore Versant ODBMS

Page 22: Lead Black Slide

Powered by DeSiaMore 22

Using Database Software

Information SystemData Management

Page 23: Lead Black Slide

Powered by DeSiaMore 23

Using Database Software Query languages – allows a user to

query a database. SQL is a widely used query language.

Query-By-Example (QBE) – is a graphical approach to query languages.

A host language is a programming language for writing application programs containing commands from a query language.

Page 24: Lead Black Slide

Powered by DeSiaMore 24

Database Use in Information Systems

Information SystemData Management

Page 25: Lead Black Slide

Powered by DeSiaMore 25

Types of Databases Personal databases are generally

used by only one person. Shared databases are used by

many users at one time. To prevent users from processing

data they do not need, the database is divided into views.

Page 26: Lead Black Slide

Powered by DeSiaMore 26

Data Warehouses

Information SystemData Management

Page 27: Lead Black Slide

Powered by DeSiaMore 27

Data Warehouses A data warehouse is a collection of

data drawn from other databases used by the business.

A data mart represents the specific data from a data warehouse which a user needs.

Data mining is the technique of searching for patterns in the data.

Page 28: Lead Black Slide

Powered by DeSiaMore 28

Multidimensional Databases

Information SystemData Management

Page 29: Lead Black Slide

Powered by DeSiaMore 29

Multidimensional Databases A multidimensional database

presents the data to the user in several dimensions. A three dimensional database might present the information by Sales Region Season Product Line

Page 30: Lead Black Slide

Powered by DeSiaMore 30

On-Line Analytical Processing On-Line Analytical Processing

(OLAP) permits users to “slice and dice” large amounts of data in databases, data warehouses, and multidimensional databases using a variety of techniques, including statistical techniques.

Page 31: Lead Black Slide

Powered by DeSiaMore 31

Database Administration

Information SystemData Management

Page 32: Lead Black Slide

Powered by DeSiaMore 32

Database Administration An organization with large

databases often has a Database Administrator (DBA) who is responsible for managing the organization’s database.

The DBA designs the databases based on the needs of the users.

Page 33: Lead Black Slide

Powered by DeSiaMore 33

Information Systems Data Management

Key Terms

Page 34: Lead Black Slide

Powered by DeSiaMore 34

Key Terms Application Generator Database Database Administrator (DBA) Database Management System (DBMS) Data Mart Data Mining Data Warehouse

Data Validation Direct (Random) File Distributed Database Hierarchical Database Host Language Indexed File Key Field Many-to-Many Relationship

Page 35: Lead Black Slide

Powered by DeSiaMore 35

Key Terms (cont’d.) Multidimensional Database Network Database Object-Oriented Database Object-Relational Database One-to-Many Relationship

One-to-One Relationship On-line Analytical Processing (OLAP) Personal Database Primary Key Query-by-Example (QBE) Query Language

Page 36: Lead Black Slide

Powered by DeSiaMore 36

Key Terms (cont’d.) Relational Database Relationship Sequential File Shared Database SQL View

Page 37: Lead Black Slide

Powered by DeSiaMore 37

Summary File Processing Database Processing Database Organization Common Database Software Using Database Software Database Use in Information

Systems

Page 38: Lead Black Slide

Powered by DeSiaMore 38

Summary (cont’d.) Data Warehouses Multidimensional Databases Database Administration

Page 39: Lead Black Slide

Final Black Slide


Recommended