Presentation is loading. Please wait.

Presentation is loading. Please wait.

CHAPTER 4 DATABASES AND DATA WAREHOUSES A Gold Mine of Information.

Similar presentations


Presentation on theme: "CHAPTER 4 DATABASES AND DATA WAREHOUSES A Gold Mine of Information."— Presentation transcript:

1 CHAPTER 4 DATABASES AND DATA WAREHOUSES A Gold Mine of Information

2 Today, Organizations Need... l Information to compete effectively Information just to stay alive in the information age l Information organized in such a way that you can easily and quickly get to it l Information-processing tools that help you work with information Introduction4-2

3 Using Databases and Data Warehouses Instead of Shopping Carts l Mervyn 抯 l Data warehouse and data mining tools

4 YOUR FOCUS IN THIS CHAPTER l The Difference Between Logical and Physical Views of Information l Databases and Database Management Systems l How You Can Develop Database Applications l Data Warehouses and Data Mining Tools Introduction4-3

5 THREE THINGS ORGANIZATIONS DO WITH INFORMATION 1.Process information in the form of transactions 2.Use information to make a decision 3.Manage information while it 抯 used Information Revisited4-4

6 PROCESSING INFORMATION IN THE FORM OF TRANSACTIONS l Such as payroll processing, order processing, and handling your registration requests for classes. l This is called ONLINE TRANSACTION PROCESSING (OLTP) - the gathering of input information, processing that information, and updating existing information to reflect the gathered and processed information. l Operational databases support OLTP. Information Revisited4-5

7 USING INFORMATION TO MAKE A DECISION For answering such questions as, 揌 ow many senior-level marketing majors have not taken statistics? l This is called ONLINE ANALYTICAL PROCESSING (OLAP) - the manipulation of information to support decision making. l Data warehouses support OLAP. Information Revisited 4-6

8 MANAGING INFORMATION WHILE IT 扴 USED l Determining who can view or use information l Specifying how to back up information l Identifying what storage technologies to use Information Revisited4-7 Most importantly, managing information includes organizing it so that people can logically use it without having to know anything about its physical structure. The difference between logical and physical is key.

9 l In managing information, physical deals with the structure of information as it resides on various storage media. l Logical deals with how knowledge workers view their information needs, and includes such terms as: – CHARACTER - our smallest unit of information. – FIELD - group of related characters. – RECORD - group of related fields. – FILE - group of related records. – DATABASE - group of logically associated files. – DATA WAREHOUSE - information from many databases. Information Revisited 4-8

10 DATABASE A database is actually composed of two parts: 1. the information itself – the files that are logically associated 2. the logical structure of the information – called the data dictionary Databases a collection of information that you organize and access according to the logical structure of that information. 4-9

11 A Database Is a Collection of Information l Most databases contain two or more files with related information. l The Inventory database (Figure 4.4, page 125) contains two files - Part and Facility. l These two files are logically related because parts are stored in facilities and because you would use both of these files to manage your inventory. Databases4-10

12 A Database Contains a Logical Structure l You organize and access a database by its logical structure, not its physical position. l DATA DICTIONARY - contains the logical structure of information in a database. l The data dictionary contains the logical properties that describe information in a database. l See Figure 4.5 (page 126) for the data dictionary of the Percentage Markup field in the Inventory database. Databases4-11

13 A Database Has Logical Ties Among the Information l A PRIMARY KEY is a field in a database file that uniquely describes each record. l A FOREIGN KEY is a primary key of one file that also appears in another file. So, foreign keys specify how files are logically related. For example, the Part and Facility files are logically related. So, in Figure 4.4 you can see that Facility Number (the primary key for the Facility file) exists in the Part file (where it 抯 a foreign key). Databases4-12

14 A Database Contains Built-in Integrity Constraints l An INTEGRITY CONSTRAINT is a rule that helps assure the quality of the information in a database. l A registration database at your school includes integrity constraints concerning prerequisites for certain classes. l Our Inventory database includes an integrity constraint that says a part in the Part file cannot be assigned to a facility that does not exist in the Facility file. Databases4-13

15 DATABASE MANAGEMENT SYSTEM (DBMS) A DBMS contains 5 software components: 1. DBMS engine 2. Data definition subsystem 3. Data manipulation subsystem 4. Application generation subsystem 5. Data administration subsystem Database Management Systems the software you use to specify the logical organization for a database and access it. 4-14

16 DBMS ENGINE Recall that: l PHYSICAL VIEW deals with how information is physically arranged, stored, and accessed on some type of secondary storage device. l LOGICAL VIEW focuses on how you need to arrange and access information to meet your particular business needs. DBMSs accepts logical requests from the various other DBMS subsystems, converts them to their physical equivalent, and actually accesses the database and data dictionary as they exist on a storage device. 4-15

17 DATA DEFINITION SUBSYSTEM l You use this subsystem to define the information logical structure when you first create a database. Once you 抳 e created a database, you use this subsystem to define new fields, delete fields, or change field properties. l Figure 4.5 (page 126) contains this subsystem screen for the Part file. DBMSs helps you create and maintain the data dictionary and define the structure of the files in a database. 4-16

18 DATA MANIPULATION SUBSYSTEM l This subsystem is most often the primary interface between you as a user and the information contained in a database. l Tools in this subsystem include views, report generators, query-by-example tools, and structured query language. DBMSs helps you add, change, and delete information in a database and mine it for valuable information. 4-17

19 DATA MANIPULATION TOOLS l VIEW - allows you to see the content of a database file, make whatever changes you want, perform simple sorting, and query to find the location of specific information. See Figure 4.7 page 129. l REPORT GENERATOR - helps you quickly define formats of reports and what information you want to see in a report. See Figures 4.8 and 4.9 page 130. DBMSs4-18

20 DATA MANIPULATION TOOLS l QUERY-BY-EXAMPLE (QBE) TOOL - helps you graphically design the answer to a question. Figure 4.10 (page 130) shows the QBE for displaying the names and phone numbers of facility managers in charge of parts that cost more than $10. l STRUCTURED QUERY LANGUAGE (SQL) - a standardized fourth-generation language found in most database environments. SQL is the same as QBE, except that you perform a query by creating a statement instead of pointing, clicking, dragging. DBMSs4-19

21 APPLICATION GENERATION SUBSYSTEM l Tools for creating data entry screens (See Figure 4.12 page 131 for an example) l Programming languages specific to a particular DBMS l Interfaces to commonly used programming languages that are independent of any DBMS. DBMSs contains facilities to help you develop transaction-intensive applications. This subsystem includes: 4-20

22 DATA ADMINISTRATION SUBSYSTEM l Backup and recovery l Security management l Query optimization l Reorganization l Concurrency control l Change management DBMSs helps you manage the overall database environment by providing facilities for: 4-21

23 THE RELATIONAL DATABASE MODEL l This is the most popular model. l Each table is called a RELATION. l A relation contains information about a particular ENTITY CLASS (a concept - people, places, or things - about which you wish to store information and that you can identify with a unique key). Database Models a database model that uses a series of two- dimensional tables or files to store information. 4-22

24 l Figure 4.14 (page 136) shows a relational database for a video rental store. l The entity classes are Customer, Video, Video Rental, and Distributor. l Notice how these tables are related to each other through the use of foreign keys. In the Video Rental relation, you 抣 l find a primary key that uses more than one one field to create a unique description. This is called a COMPOSITE PRIMARY KEY. l A primary key that uses only one field is called an ATOMIC PRIMARY KEY. Database Models4-23

25 THE OBJECT-ORIENTED (O-O) DATABASE MODEL l An OBJECT-ORIENTED DATABASE MANAGEMENT SYSTEM (O-O DBMS) is the DBMS software that allows you to develop and work with an O-O database. Database Models a database model that brings together, stores, and allows you to work with both information and procedures that act on the information. 4-24

26 l This model takes advantage of the concept of an OBJECT - a software module containing information that describes an entity class along with a list of procedures that can act on the information describing the entity class. l Figure 4.15 (page 138) shows the same video rental store using the O-O database model. l Notice that the objects (entity classes) - which include Customer, Video Rental, Video, and Distributor - contain both information and procedures for working with that information. l See Appendix C for more on objects. Database Models4-25

27 DEVELOPING YOUR OWN DATABASE l Being able to develop your own database is a part of knowledge worker computing. l Building a database for your personal needs includes the following 4 steps: 1. Defining entity classes and primary keys 2. Defining relationships among entity classes 3. Defining information (fields) for each relation 4. Using a data definition language to create the database l Follow along as we build the database to support the report in Figure 4.16 on page 140. Developing Databases4-26

28 l You own a small business and are interested in tracking employees by the department in which they work, job assignment, and the number of hours assigned. l Each of your employees can be assigned to only one department, but a department may have many employees (a department, however, may not have any employees assigned to it). Each employee can be assigned to any number of jobs and a job can have many employees assigned to it, but it 抯 not necessary that any employees be assigned to a certain job.

29 #1 - DEFINING ENTITY CLASSES AND PRIMARY KEYS l From the report in Figure 4.16, you can identify the entity classes as Employee, Department, and Job. l Now, for each entity class, you must define a primary key that provides a unique description. These include: Employee entity class - Emp ID (e.g., 2345 for Smith) Department entity class - Dept (e.g., 15) Job entity class - Job (e.g., 14 for Acct) Developing Databases4-27

30 #2 - DEFINING RELATIONSHIPS AMONG ENTITY CLASSES l For this step, use an ENTITY-RELATIONSHIP (E-R) DIAGRAM, a graphical method of representing entity classes and their relationships. l See Figure 4.17 (page 140) for the initial E-R diagram of our database and a listing of E-R diagram symbols. Developing Databases4-28

31 l An Employee must be assigned to a Department. An Employee cannot be assigned to more than one Department. l A Department may have many Employees assigned to it. l A Department is not required to have any Employees assigned to it. Developing Databases EMPLOYEEDEPARTMENTM:1 4-29

32 l After building the initial E-R diagram, you must follow the process of normalization. l NORMALIZATION is a process of assuring that a relational database structure can be implemented as a series of two-dimensional tables. l Normalization includes the following 3 steps: 1.Eliminate repeating groups or M:M relationships 2.Assure that each field in a relation depends only on the primary key of that relation 3.Remove all derived fields from the relations. Developing Databases4-30

33 l The first rule of normalization states that no M:M relationships can exist. l There is an M:M between Employee and Job. l You eliminate this by creating an INTERSECTION RELATION - a relation you create to eliminate a repeating group. l An intersection relation will have a composite primary key that consists of the primary key fields from the two intersecting relations. l In Figure 4.18 (page 142), we created an intersection relation called Employee-Job to eliminate the M:M relationship. Developing Databases4-31

34 #3 - DEFINING INFORMATION (FIELDS) FOR EACH RELATION l In this step, you follow rules #2 and #3 of normalization. l Your goal here is two-fold: 1.Make sure that the information in each relation is indeed in the correct relation 2.Make sure that the information cannot be derived from other information. Developing Databases4-32

35 l To determine if information is in the correct relation, ask: 揇 oes this piece of information depend only on the primary key for this relation? l If the answer is yes, the information is in the correct relation. l In the Employee relation (Figure 4.20 page 144), we currently store Dept Sup. Does Dept Sup depend on Emp ID? l The answer is no - Dept Sup depends on Dept, so it should be in the Department relation. Developing Databases4-33

36 l Derived information - information that can be mathematically determined from other information - should not be stored in your database. l For example, # Emp is a field in the Department relation. l However, we can simply count the number of occurrences of each Dept in the Employee relation and determine the number of employees. l So, we remove # Emp from the database. Developing Databases4-34

37 #4 - USING A DATA DEFINITION LANGUAGE TO CREATE THE DATABASE l The final step is to actually create the relations you identified in steps 1-3. l You do this with a data definition language. l This step includes: – Developing a data dictionary – Defining the various relations – Defining primary keys and relationships Developing Databases4-35

38

39

40 DATA WAREHOUSE l are a logical extension of databases l support OLAP l are among the newest and hottest buzz words and concepts in the IT field. Data Warehouses a logical collection of information - gathered from many different operational databases - that supports business analysis activities and decision-making tasks. Data warehouses... 4-36

41 DATA WAREHOUSE FEATURES l Data warehouses combine information from different databases – Making them a true repository of all an organization 抯 information l Data warehouses are multi-dimensional – As opposed to 2 dimensions in the relational model – Often called hypercubes (See Figure 4.23 page 148) l Data warehouses support decision making – While databases support OLTP, data warehouses support OLAP Data Warehouses4-37

42 DATA MINING TOOLS l QUERY-AND-REPORTING TOOLS - QBE tools, SQL, and report generators. INTELLIGENT AGENTS - various artificial intelligence tools that form the basis for 搃 nformation discovery?in OLAP. l MULTIDIMENSIONAL ANALYSIS (MDA) TOOLS - slice-and-dice techniques that allow you to view multidimensional information from different perspectives. Data Warehouses the software tools you use to query information in a data warehouse. 4-38

43 IMPORTANT CONSIDERATIONS IN USING A DATA WAREHOUSE l Do you need a data warehouse? l Do you already have a data warehouse? l Who will the users be? l How up-to-date must the information be? l What data mining tools do you need? Data Warehouses4-39

44 l How will changes in technology affect organizing and managing information l What types of database model and databases are most appropriate

45 MANAGING THE INFORMATION RESOURCE l How will changes in technology affect organizing and managing information? l What types of database models and databases are most appropriate? Who should oversee the organization 抯 information? Managing Information4-40

46 OVERSEEING YOUR ORGANIZATION 扴 INFORMATION CHIEF INFORMATION OFFICER (CIO) is the IT manager who directs all IT systems and personnel while communicating directly with the highest levels of the organization. l DATA ADMINISTRATION plans for, oversees the development of, and monitors the information resource. l DATABASE ADMINISTRATION is responsible for the more technical and operational aspects of managing information in databases. Managing Information4-41

47 MANAGING THE INFORMATION RESOURCE l Is information ownership a consideration? l What are the ethics involved in organizing and managing information? l How should databases and database applications be developed and maintained? Managing Information4-42

48 TO SUMMARIZE l How we view information: – The physical view of information deals with how information is physically arranged, stored, and accessed on some type of secondary storage device. – The logical view of information focuses on how you need to arrange and access information to meet your particular business needs. l A database is a collection of information that you organize and access according to the logical structure of that information. l The data dictionary contains the logical structure of information in a database. 4-43

49 TO SUMMARIZE l A database management system is the software you use to specify the logical organization for a database and access it. l Popular database models include the relational model and the object-oriented model. l The four steps of developing a personal database application include: 1. Define entity classes and primary keys 2. Define relationships among entity classes 3. Define information (fields) for each relation 4. Use a data definition language to create the database 4-44

50 TO SUMMARIZE l Data warehouses are a logical collection of information - gathered from many different operational databases - that supports business analysis activities and decision-making tasks. l Data mining tools - the software tools you use to query information in a data warehouse - include query-and-reporting tools, intelligent agents, and multidimensional analysis (MDA) tools. 4-45


Download ppt "CHAPTER 4 DATABASES AND DATA WAREHOUSES A Gold Mine of Information."

Similar presentations


Ads by Google