database processing applications and business intelligence chapter seven david m. kroenke and david...

61
Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

Upload: dorthy-francis

Post on 17-Dec-2015

230 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

Database Processing Applications andBusiness Intelligence

Chapter Seven

DAVID M. KROENKE and DAVID J. AUER

DATABASE CONCEPTS, 3rd Edition

Page 2: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-2

Chapter Objectives

• Understand and be able to set up Web database processing

• Learn the basic concepts of Extensible Markup Language (XML)

• Learn the basic concepts of business intelligence (BI) systems

• Learn the basic concepts of OLAP and data mining

Page 3: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-3

Heather Sweeney Designs:Database Design

Page 4: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-4

Heather Sweeney Designs:HSD Database Diagram in SQL Server 2005

Page 5: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-5

Database Processing Environment

• A database processing environment is complicated and multi-faceted– Multiple users– Multiple queries– Multiple forms– Multiple reports– Multiple application programs

Page 6: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-6

The Database Processing Environment

Page 7: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-7

Queries, Forms, and Reports

Microsoft Access is being used to create forms and reports for a database running in SQL Server 2005 Express Edition

Page 8: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-8

Processing Constraints

• Enforcing referential integrity• Cascading deletion• Cascading modifications• Data type constraints• Data size constraints• Data value constraints• Null constraints• Uniqueness constraints

Page 9: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-9

Triggers and Stored Procedures

• A trigger is a stored procedure that is automatically invoked by the DBMS when a specified activity occurs– BEFORE, AFTER and INSTEAD OF

• A stored procedure is a module similar to subroutine or function that performs database actions– Stored in the database itself

Page 10: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-10

Internet Application Processing

• Internet Application Processing is more complicated than traditional application processing

• Specifically, with Internet Application Processing …– The network becomes an integral part

of the application

Page 11: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-11

Internet Application Processing Environment

Page 12: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-12

APIs

• Every DBMS product has an application program interface (API)– An API is a collection of objects, methods, and

properties for executing DBMS functions from program code

– Each DBMS has its own API, and APIs vary from one DBMS product to another.

• To simplify this situation, the computer industry has developed standards for database access

• API interface standards are used to make it easier for programmers – they write to the interface standard instead of the DBMS API– ODBC – Open Database Connectivity– JDBC – Java Database Connectivity

Page 13: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-13

OBDC and OLE DB

• The Open Database Connectivity (ODBC) standard was developed in the early 1990s– Provides a DBMS-independent means for processing

relational database data

• OLE DB was created by Microsoft in the mid-1990s– An object-oriented interface– Encapsulates data-server functionality– Designed not just for access to relational databases,

but also for accessing many other types of data as well– Readily accessible to programming languages such as

C, C#, and Java– Not as accessible to Visual Basic and scripting

languages

Page 14: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-14

ADO and ADO.NET

• Microsoft developed Active Data Objects (ADO)– A set of objects for utilizing OLE DB– Designed for use by any language, including VB,

VBScript, and Jscript

• ADO has been followed by ADO.NET– An improved version of ADO developed as part of

Microsoft’s .NET initiative

Page 15: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-15

ODBC, OLE DB, and ADOin the Web Database Processing Environment

Page 16: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-16

N-Tier Architecture

• Tiers refers to the number of computers involved in the Web database application– The workstation with Web browser is the first

tier– Two-tier architecture means that the Web

server and the DBMS are on the same server– Three-tier architecture means that the Web

server and the DBMS are on separate servers

Page 17: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-17

Typical Web Server Setups

Microsoft

Windows

Linux or Unix

Web Server Internet Information Server (IIS)

Apache

Scripting Languages (Interpreted

ASP Pages with VBScript or JScript (PHP also works)

PHP

Object Oriented Languages (Complied)

ASP.NET pages with VisualBasic.Net, C#.Net or others

JSP pages with Java

(Also see the Mono project)

Page 18: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-18

Typical Web DBMS Servers

Microsoft

Windows

Linux or Unix

Web Server Internet Information Server (IIS)

Apache

DBMSs Microsoft

SQL Server

Oracle

MySQL

API Interface Standard

ODBC JDBC

Page 19: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-19

ODBC:Three-tier Web Server Architecture

Page 20: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-20

ODBC Architecture

• The application program, the ODBC driver manager, and the ODBC DBMS driver all reside on the Web server

• The DBMS driver sends requests to data sources on the database server– A data source is the database, its

associated DBMS, operating system, and network platform

Page 21: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-21

ODBC Architecture:The Application Program

• The application program issues requests– To create a connection with a data source– To issue SQL statements and receive results– To process errors– To start, commit, and roll back transactions

• ODBC– Provides a standard means for each of these

requests– Defines a standard set of error codes and

messages

Page 22: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-22

ODBC Architecture:The ODBC Driver Manager

• The ODBC driver manager– Serves as an intermediary between the

application and the DBMS drivers– When the application requests a

connection, the driver• Determines the type of DBMS that

processes a given ODBC data source• Loads the appropriate driver into memory (if

it is not already loaded)

Page 23: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-23

ODBC Architecture:The ODBC Driver

• A ODBC driver– Processes ODBC requests– Submits specific SQL statements to a given

type of data source• There is a different driver for each data source type• It is the responsibility of the driver to ensure that

standard ODBC commands execute correctly

– Converts data source error codes and messages into the ODBC standard codes and messages

Page 24: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-24

ODBC Architecture:ODBC Data Sources

• An ODBC data source– Is an ODBC data structure that identifies a database

and the DBMS that processes it– There are three types of data sources

• A file data source is a file that can be shared among database users—The only requirement is that the users have the same DBMS driver and privilege to access the database.

• A system data source is one that is local to a single computer—The operating system and any user on that system (with proper permissions) can use a system data source

• A user data source is available only to the user who created it

– Each created data source is given a data source name (DSN) that is used to reference the data source.

Page 25: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-25

ODBC Architecture:Creating an ODBC Data Source I

Page 26: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-26

ODBC Architecture:Creating an ODBC Data Source II

Page 27: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-27

ODBC Architecture:Creating an ODBC Data Source III

Page 28: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-28

IIS:The wwwroot Folder

Page 29: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-29

IIS:The IIS Management Program

Page 30: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-30

IIS:The IIS Localstart Web Page

Page 31: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-31

Web Pages:HTML Code for default.htm

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">

<title>Heather Sweeney Designs Demonstration Pages Home Page</title> </head> <body> <P align="center">

<font face="" color="#0000ff" size="6"> Database Concepts (3rd Edition) </font></P><p align="center"> <b>David M. Kroenke (University of Washington)</b></p><p align="center"> <b>David J. Auer (Western Washington University)</b></p><hr><p align="center"> <font size="5">

Welcome to the Heather Sweeney Designs Home Page </font></p><hr><p>Chapter 7 Demonstration Pages from Figures in the Text:</p><p>Example 1:&nbsp;&nbsp;&nbsp; <a href="ReadSeminar.asp">

Display the SEMINAR Table (No surrogate key) </a></p><hr>

</body></html>

Page 32: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-32

Web Pages:The default.htm Web Page

Page 33: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-33

Web Pages:The ReadSeminar.asp Web Page

Page 34: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-34

Active Data Objects (ADO):Abstractions, Objects and Collections

• An abstraction is a generalization of something– ODBC interfaces are abstractions of native DBMS access methods

• When we abstract something, we lose detail, but we gain the ability to work with a broader range of types

• An object-oriented programming object is an abstraction that is defined by its properties and methods

– Properties represent characteristics or attributes of the object– Methods are actions that the object can perform

• A collection is an object that contains a group of other objects– Being an object, a collection has properties and methods– In ADO, collections are named as the plural of the objects they collect

• One of the properties of all collections is Count, which is the number of objects in the collection.

• An important method of a collection is an iterator, which is a method that can be used to pass through or otherwise identify the items in the collection

Page 35: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-35

Active Data Objects (ADO):

The ADO Object Model I

Page 36: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-36

Active Data Objects (ADO):

The ADO Object Model II• The Connection object is the first ADO object to

be created and is the basis for the others• From a connection, a developer can create one

or more RecordSet objects and one or more Command objects– Each RecordSet object has a Fields collection

• Each Field element corresponds to a column in the recordset

– Each Command object has a Parameters Collection• Contains Parameter objects which are the parameters

needed by the command

• In the process of creating or working with any of these objects, ADO will place any errors (error objects) that are generated in the Errors collection

Page 37: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-37

Active Data Objects (ADO):ADO Constants in the ADOVBS.inc File

• Isolation levels

Page 38: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-38

Active Data Objects (ADO):ADO Constants in the ADOVBS.inc File

• Cursor types

Page 39: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-39

Active Data Objects (ADO):ADO Constants in the ADOVBS.inc File

• Lock types

Page 40: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-40

Active Data Objects (ADO):Referencing the ADOVBS.inc File

Adovbs.inc is referenced in this line

Page 41: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-41

Active Data Objects (ADO):

The Connection Object

The ADO adXactReadCommitted isolation level in Adovbs.inc is referenced in this line

Page 42: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-42

Active Data Objects (ADO):

The RecordsetObject

The ADO adOpenStatic cursor type Adovbs.inc is referenced in this line

The ADO adLockReadOnly lock type in Adovbs.inc is referenced in this line

Page 43: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-43

Active Data Objects (ADO):

The Fields CollectionThe ADO Count property

The ADO iteration method

Page 44: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-44

Active Data Objects (ADO):

The Errors Collection

In current code:

More complete version:

Page 45: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-45

Database Processing with XML

• Extensible Markup Language (XML) is a standard for defining the structure of documents and communicating the documents among computers

• It provides user definable tags that can be used in Web pages and other documents

Page 46: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-46

Sample XML document

Page 47: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-47

XML Schema Documents

• XML schema documents define allowable tags and their relationships

Page 48: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-48

XML Document Validation

• An XML document can declare the name and location of the schema that defines its tags

• XML documents that conform to their XML schemas are schema-valid documents

• XML schema documents are XML documents, and can be validated against their designated schema

• The “Schema of all schemas” is at www.w3.org/2001/XMLSchema

Page 49: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-49

Sample XML Schema

Page 50: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-50

XML and Database Processing

• DBMS programs are incorporating means to read and create XML documents

• SQL Server 2005 example:SELECT *FROM ARTIST FOR XML AUTO, ELEMENTS;

Page 51: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-51

SQL for XML Processing

SQL statement using XML

The results are in one cell

Page 52: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-52

Results ofSQL for XML Processing

The expanded results

Page 53: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-53

Text Results ofSQL for XML Processing

Page 54: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-54

XLM Web Services

• XML Webs Services allows application functionality on one Web server to be shared and incorporated into Web applications on other Web servers

Page 55: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-55

Business Intelligence Systems

• Business intelligence (BI) systems are information systems that– Assist managers and other professionals in the analysis

of current and past activities and in the prediction of future events

– Do not support operational activities, such as the recording and processing of orders

• These are supported by transactin proccessing systems– Support management assessment, analysis, planning,

and control• BI systems fall into two broad categories

– Reporting systems that sort, filter, group, and make elementary calculations on operational data

– Data mining applications that perform sophisticated analyses on data, analyses that usually involve complex statistical and mathematical processing

Page 56: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-56

The Relationship Among Operational and BI Applications

Page 57: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-57

OLAP and Data Mining

• OnLine Analytical Processing (OLAP) is a technique for dynamically examining database data– OLAP uses arithmetic functions such as Sum

and Average

• Data Mining is a mathematically sophisticated technique for analyzing database data– Data mining use mathematical and statistical

techniques

Page 58: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-58

OLAP

• OLAP uses a table called an OLAP cube

• The OLAP cube uses inputs called dimensions

• The OLAP cube calculates outputs called measures

Page 59: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-59

Sample OLAP Cube

Page 60: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

KROENKE and AUER - DATABASE CONCEPTS (3rd Edition)© 2008 Pearson Prentice Hall 7-60

Data Mining Techniques

• Data Mining mathematical and statistical techniques include:– Cluster analysis– Regression analysis– Time-series analysis– Factor analysis– Nonparametric Monte Carlo analysis

Page 61: Database Processing Applications and Business Intelligence Chapter Seven DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3 rd Edition

Database Processing Applications andBusiness Intelligence

End of Presentation on Chapter Seven

DAVID M. KROENKE and DAVID J. AUER

DATABASE CONCEPTS, 3rd Edition