Technology in Action. Alan Evans Kendall Martin Mary Anne Poatsy. Eleventh Edition. Copyright 2015 Pearson Education, Inc.

Size: px
Start display at page:

Download "Technology in Action. Alan Evans Kendall Martin Mary Anne Poatsy. Eleventh Edition. Copyright 2015 Pearson Education, Inc."

Transcription

1 Copyright 2015 Pearson Education, Inc. Technology in Action Alan Evans Kendall Martin Mary Anne Poatsy Eleventh Edition

2 Copyright 2015 Pearson Education, Inc. Technology in Action Chapter 9 Behind the Scenes: Databases and Information Systems

3 Copyright 2015 Pearson Education, Inc. 2 Chapter Topics Database Basics Database Building Blocks Database Types Database Functions How Businesses Use Databases Database Warehousing and Storage Business Intelligence Systems Data Mining

4 Copyright 2015 Pearson Education, Inc. Database Basics Database Building Blocks Database Types Database Functions

5 Database Building Blocks A database is a collection of related data, which can be Stored Sorted Organized Queried Databases make data more meaningful and useful Databases turn data into information Copyright 2015 Pearson Education, Inc. 4

6 Database Building Blocks Databases Versus Lists Databases are not needed for managing all types of data Lists are adequate for simple tasks Other applications have tools to create lists Word Excel Copyright 2015 Pearson Education, Inc. 5

7 Database Building Blocks Databases Versus Lists When a list is not sufficient for organizing data Complex information When multiple people need to access information Copyright 2015 Pearson Education, Inc. 6

8 Database Building Blocks Databases Versus Lists Lists can lead to inconsistencies Repetition of data Errors from inconsistently entered or updated data Data redundancy - unnecessary extra copies of data Lists have other problems Copyright 2015 Pearson Education, Inc. 7

9 Database Building Blocks Databases Versus Lists Copyright 2015 Pearson Education, Inc. 8

10 Database Building Blocks Advantages of Using Databases Databases make our lives easier Databases can manage large amounts of data efficiently Databases make information sharing possible Databases promote data integrity Copyright 2015 Pearson Education, Inc. 9

11 Database Building Blocks Advantages of Using Databases Copyright 2015 Pearson Education, Inc. 10

12 Database Building Blocks Disadvantages of Using Databases Disadvantages of databases Can be more time consuming and expensive to set up and administer Care is needed to insure they function as intended Administrator is responsible for designing, constructing, and maintaining databases Copyright 2015 Pearson Education, Inc. 11

13 Database Building Blocks Database Management Systems How databases are created Database management system (DBMS) is designed to capture and analyze data Four main operations of a DBMS Creating databases and entering data Viewing (or browsing) and sorting data Querying (extracting) data Outputting data Copyright 2015 Pearson Education, Inc. 12

14 Database Building Blocks Database Terminology How data is stored in a database All the records representing student information is a table in this database The city column represents one field in this database Julio s contact data is one record Copyright 2015 Pearson Education, Inc. 13

15 Database Building Blocks Planning and Creating the Database How to create a database with a DBMS Describe the data to be captured Data dictionary & Metadata Copyright 2015 Pearson Education, Inc. 14

16 Database Building Blocks Planning and Creating the Database How data tables are created Step 1: Input unique field names Step 2: Define the data type Step 3: Set a maximum field size Step 4: Set a default value if necessary Repeat for each field in the table Copyright 2015 Pearson Education, Inc. 15

17 Database Building Blocks Planning and Creating the Database How to know what fields are needed Careful planning is required Field should describe a unique piece of data Do not combine two pieces of data Allows for better filtering and sorting Fields can be added or deleted Copyright 2015 Pearson Education, Inc. 16

18 Database Building Blocks Planning and Creating the Database Rules for establishing field names Must be unique within a table Do not use spaces Use underscores or CamelCase can be used Use caption field to display spaces Creating a data dictionary will help you plan Copyright 2015 Pearson Education, Inc. 17

19 Database Building Blocks Planning and Creating the Database Determining what type of data can be entered in a field Data type indicates what type of data can be stored in the fields Prevents wrong type of data from being entered Copyright 2015 Pearson Education, Inc. 18

20 Database Building Blocks Planning and Creating the Database Copyright 2015 Pearson Education, Inc. 19

21 Database Building Blocks Planning and Creating the Database Amount of data which can be entered into a field Field size determines maximum number of characters Tailor field size to match maximum length of data Truncated data can result from field size set too small Copyright 2015 Pearson Education, Inc. 20

22 Database Building Blocks Using Primary Keys Having the same values in the same table It is possible for fields to have the same values Each record must have a unique value, the primary key Primary keys make it impossible to duplicate records Copyright 2015 Pearson Education, Inc. 21

23 Database Building Blocks Using Primary Keys A good primary key Must be unique Doesn t have to represent something AutoNumber data type (Microsoft Access) is often used Copyright 2015 Pearson Education, Inc. 22

24 Copyright 2015 Pearson Education, Inc. 23 Database Types Three major types of databases are in use Relational Object-oriented Multidimensional Relational databases have the largest market share Multidimensional databases are growing

25 Database Types Relational Databases Relational database Organizes data in table format Logically groups similar data into a relation (a table that contains related data) Links data between tables through relationships on common keys Copyright 2015 Pearson Education, Inc. 24

26 Database Types Relational Databases Common field in one table (primary key) linked to common field (foreign key) in second table Need to keep data in related tables synchronized Copyright 2015 Pearson Education, Inc. 25

27 Database Types Relational Databases Relational database Referential integrity: Each value in the foreign table has a corresponding value in the primary table Prevents orphan records Copyright 2015 Pearson Education, Inc. 26

28 Database Types Relational Databases Different types of relationships in relational databases One-to-many One-to-one Many-to-many Copyright 2015 Pearson Education, Inc. 27

29 Database Types Object-Oriented Databases Store data in objects rather than tables Contain methods for processing or manipulating data Can store more types of data than relational databases Can access data faster Copyright 2015 Pearson Education, Inc. 28

30 Database Types Object-Oriented Databases Unstructured data include audio clips, video clips, pictures, and extremely large documents Binary large object (BLOB) is unstructured data encoded in binary form Becoming more popular because of variety of data Costly to convert data but can provide many advantages Copyright 2015 Pearson Education, Inc. 29

31 Database Types Multidimensional Databases Stored data can be analyzed from different perspectives (dimensions) Relational database has only two dimensions (fields and records) Multidimensional databases organize in cube format Copyright 2015 Pearson Education, Inc. 30

32 Database Types Multidimensional Databases Data cube Measure attribute: Main type of data that cube is tracking Feature attributes: Describe measure attribute in meaningful ways Copyright 2015 Pearson Education, Inc. 31

33 Database Types Multidimensional Databases Advantages of multidimensional databases Customized to provide information to variety of users Process data faster Critical for larger databases Especially when accessed via the Internet Copyright 2015 Pearson Education, Inc. 32

34 Copyright 2015 Pearson Education, Inc. 33 Database Functions Functions Populate the database by creating records Allow users to extract subsets of data from the database Output the data in a meaningful and presentable format

35 Database Functions Inputting Data How to get data into the database Can be directly keyed into the database Can import from other files Saves time Reduces data error Must match the format of the database exactly Filters are often applied Nonconforming data is flagged Copyright 2015 Pearson Education, Inc. 34

36 Database Functions Inputting Data How to make manual entry into a database more efficient Input forms used to control data input Each field has a label Data is inputted into the blank boxes Existing data can be changed through forms Ensures that correct record is changed Copyright 2015 Pearson Education, Inc. 35

37 Database Functions Inputting Data Copyright 2015 Pearson Education, Inc. 36

38 Database Functions Data Validation Ensuring that only valid data is entered Process of ensuring that data meets specified guidelines Rule is defined in data dictionary Specified in field properties for each field Violations result in error message with suggested action Common validation rules Copyright 2015 Pearson Education, Inc. 37

39 Database Functions Data Validation Copyright 2015 Pearson Education, Inc. 38

40 Database Functions Data Validation Data entered that falls outside the range of acceptable values No value entered in a required field Copyright 2015 Pearson Education, Inc. 39

41 Database Functions Viewing and Sorting Data Viewing the data in a database Displaying all data at one time is an option Many times data is viewed one record at a time Forms display individual records From only one table From related tables Copyright 2015 Pearson Education, Inc. 40

42 Database Functions Viewing and Sorting Data Reordering records in a database Easy to sort data in ascending or descending order Highlight a column Click Ascending or Descending on the Ribbon Copyright 2015 Pearson Education, Inc. 41

43 Database Functions Viewing and Sorting Data View records by browsing Sort records by field name Copyright 2015 Pearson Education, Inc. 42

44 Database Functions Extracting or Querying Data Displaying a subset of data Use a filter or create a query Query language Structured Query Language (SQL) is the most popular Modern systems provide wizards for creating queries Copyright 2015 Pearson Education, Inc. 43

45 Database Functions Extracting or Querying Data Copyright 2015 Pearson Education, Inc. 44

46 Database Functions Outputting Data Retrieving data from of a database Most common output is viewable or printable report Can generate reports from data in tables or from queries Adjustments can be made to the report Copyright 2015 Pearson Education, Inc. 45

47 Copyright 2015 Pearson Education, Inc. 46 Database Functions Outputting Data Transferring data from a database to another software application Exporting: Putting data into format that another application can understand Data can be imported and exported as well as converted to and from other formats

48 Copyright 2015 Pearson Education, Inc. 47 Check Your Understanding 1. What is a database, and why is using one beneficial? A database is a collection of related data that can be stored, sorted, organized, and queried. Many actions we do every day (use an ATM, shop online, make an airplane reservation) generate data that needs to be stored, managed, and used by others. By creating an organized structure for data, databases make data more meaningful and therefore more useful. Databases effectively turn data into information.

49 Copyright 2015 Pearson Education, Inc. 48 Check Your Understanding 2. What do database management systems do? Databases are created and managed using a database management system (DBMS). A DBMS is specially designed application software (such as Oracle Database or Microsoft Access) that interacts with the user, other applications, and the database to capture and analyze data. The four main operations of a DBMS are as follows: 1. Creating databases and entering data 2. Viewing (or browsing) and sorting data 3. Querying (extracting) data 4. Outputting data

50 Copyright 2015 Pearson Education, Inc. 49 Check Your Understanding 3. What components make up a database? Understanding how databases store information requires knowing the unique terminology developed to describe databases. Databases have three main components: 1. Fields: A database stores each category of information in a field. Fields are displayed in columns. Each field is identified by a field name, which is a way of describing the information in the field. 2. Records: A group of related fields is called a record. 3. Tables (Files): A group of related records is called a table (or file). Tables are usually organized by a common subject.

51 Copyright 2015 Pearson Education, Inc. 50 Check Your Understanding 4. What types of databases are there? The three major types of databases currently in use are relational, object-oriented, and multidimensional. Relational databases operate by organizing data into various tables based on logical groupings. In relational databases, a link between tables that defines how the data is related is referred to as a relationship. An object-oriented database stores data in objects rather than in tables. Objects contain not only data but also methods for processing or manipulating that data. A multidimensional database stores data that can be analyzed from different perspectives, called dimensions. This distinguishes it from a relational database, which stores data in tables that have only two dimensions (fields and records).

52 Copyright 2015 Pearson Education, Inc. 51 Check Your Understanding 5. What are the functions of a relational database? How do relational databases organize and manipulate data? Input (populate) data directly by keying in, or by importing from other sources. Input forms control how new data is entered. Data validation rules help prevent improper data from being entered. Data is viewed/displayed through forms showing individual records, or through tables displaying all related records Queries display a subset of data that match certain criteria. Reports used to output data. Data can be aggregated and sorted. Data can be outputted to other applications to be further manipulated.

53 Copyright 2015 Pearson Education, Inc. How Businesses Use Databases Database Warehousing and Storage Business Intelligence Systems Data Mining

54 Copyright 2015 Pearson Education, Inc. 53 Data Warehousing and Storage Problems arise when Organization gets much larger Data is stored in separate databases Benefits of accessing data from all databases are being recognized Data warehouses and data marts are large storage repositories

55 Data Warehousing and Storage Data Warehouses Large-scale collection of data Contains and organizes data in one place Data comes from multiple databases Consolidate information from various systems Present enterprise-wide view of operations Copyright 2015 Pearson Education, Inc. 54

56 Data Warehousing and Storage Data Warehouses Data is organized as in a normal database Data is organized by subject Focus is on one specific aspect of an operation Can contain information from multiple databases Copyright 2015 Pearson Education, Inc. 55

57 Data Warehousing and Storage Data Warehouses Does not capture data from only one time period Populated with data Internal sources External sources Clickstream data Copyright 2015 Pearson Education, Inc. 56

58 Data Warehousing and Storage Data Staging Fitting source data into the warehouse Data must be staged before being entered into a data warehouse Many programs and procedures might be needed to extract and reformat data Nature and complexity of data determines complexity of process Copyright 2015 Pearson Education, Inc. 57

59 Data Warehousing and Storage Data Staging Copyright 2015 Pearson Education, Inc. 58

60 Data Warehousing and Storage Data Marts How to handle smaller amounts of data Data mart: Small slices of data warehouse Analyze related group of data separated from the main body Pertains to single component of business Vital because different data can be extracted and reformatted Can be stored in specialized data marts Copyright 2015 Pearson Education, Inc. 59

61 Copyright 2015 Pearson Education, Inc. 60 Business Intelligence Systems Software-based solution to gather and analyze information Delivers up-to-the-minute data Integral because they store the functional information All perform similar functions

62 Business Intelligence Systems Copyright 2015 Pearson Education, Inc. 61

63 Business Intelligence Systems Office Support Systems What an office support system accomplishes Office support system (OSS) is designed to improve communications and assist employees in accomplishing tasks Copyright 2015 Pearson Education, Inc. 62

64 Business Intelligence Systems Transaction-Processing Systems Keeps track of everyday business activities Early computers hosted TPSs Copyright 2015 Pearson Education, Inc. 63

65 Business Intelligence Systems Transaction-Processing Systems Batch processing Data is accumulated then several transactions are processed at once Appropriate for activities that are not time sensitive Often more efficient Copyright 2015 Pearson Education, Inc. 64

66 Business Intelligence Systems Transaction-Processing Systems When TPS transactions are processed Most transactions are processed in real-time Real-time processing is when the database is updated while the transaction is taking place Online transaction processing (OLTP) ensures that data in the TPS is current Copyright 2015 Pearson Education, Inc. 65

67 Business Intelligence Systems Management Information Systems Management information system (MIS) Provides timely and accurate information Enables managers to make critical decisions Directs outgrowth of TPSs Powerful if organized and outputted in useful form Often included as a feature of TPSs Can generate various reports Copyright 2015 Pearson Education, Inc. 66

68 Business Intelligence Systems Decision Support Systems Decision Support System (DSS) Another type of business intelligence system Designed to help managers develop solutions for specific problems Uses information from databases and data warehouses Users can add own insights and experiences to solution Copyright 2015 Pearson Education, Inc. 67

69 Business Intelligence Systems Decision Support Systems How DSSs get data Copyright 2015 Pearson Education, Inc. 68

70 Business Intelligence Systems Decision Support Systems What function a model management system performs Assists in building management models Analysis tool provides view of a particular business situation Aids in decision making Used to analyze data to create additional models Copyright 2015 Pearson Education, Inc. 69

71 Business Intelligence Systems Decision Support Systems How a knowledge-based system helps in the decision-making process Fuzzy logic enables the interjection of experiential learning into the equation by considering probabilities Enables a system to be more flexible Consider a wider range of possibilities Copyright 2015 Pearson Education, Inc. 70

72 Business Intelligence Systems Enterprise Resource Planning Systems What an Enterprise Resource Planning (ERP) system does Accumulates relevant information Makes information available Uses a common database Copyright 2015 Pearson Education, Inc. 71

73 Copyright 2015 Pearson Education, Inc. 72 Data Mining Data mining Process by which great amounts of data are analyzed and investigated Objective is to spot significant patterns and trends that would not be obvious

74 Copyright 2015 Pearson Education, Inc. 73 Data Mining Why businesses mine their data Understand customers better Effective marketing by concentrating efforts Data is classified, then cluster analysis allows managers to determine trends How businesses mine their data Classification, Estimation, Affinity grouping, Clustering, Description and Visualization

75 Data Mining Copyright 2015 Pearson Education, Inc. 74

76 Copyright 2015 Pearson Education, Inc. 75 Check Your Understanding 6. What are data warehouses and data marts, and how are they used? A data warehouse is a large-scale collection of data that contains and organizes in one place all the data from an organization s multiple databases. Small slices of the data warehouse, each called a data mart, are often created so that companies can analyze a related set of data that are grouped together and separated out from the main body of data in the data warehouse.

77 Check Your Understanding 7. What is a business intelligence system, and what types of business intelligence systems are used by decision makers? An information system is a software-based solution used to gather and analyze information. Databases, data warehouses, and data marts are integral parts of information systems because they store the information that makes information systems functional. All information systems perform similar functions, including acquiring data, processing that data into information, storing the data, and providing the user with a number of output options with which to make the information meaningful and useful. Office Support System, Transaction Processing Systems, Management Information Systems, Decision Support Systems, and Enterprise Resource Planning Systems are types of business intelligence systems. Copyright 2015 Pearson Education, Inc. 76

78 Copyright 2015 Pearson Education, Inc. 77 Check Your Understanding 8. What is data mining, and how does it work? Data mining is the process by which great amounts of data are analyzed and investigated. Data mining enables managers to sift through data in several ways. Each technique produces different information on which managers can then base their decisions. Classification: Before mining, managers define data classes they think will be helpful in spotting trends. Estimation: Estimation enables managers to assign a value to data based on some criterion. Affinity grouping (or association rules): When mining data, managers can determine which data goes together. Clustering: Clustering involves organizing data into similar subgroups, or clusters. It s different from classification in that there are no predefined classes. Description and visualization: Often, the purpose of data mining is to describe data so that managers can interpret it in new and different ways.

79 All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise, without the prior written permission of the publisher. Printed in the United States of America. Copyright 2015 Pearson Education, Inc

Foundations of Business Intelligence: Databases and Information Management

Foundations of Business Intelligence: Databases and Information Management Chapter 5 Foundations of Business Intelligence: Databases and Information Management 5.1 Copyright 2011 Pearson Education, Inc. Student Learning Objectives How does a relational database organize data,

More information

5.5 Copyright 2011 Pearson Education, Inc. publishing as Prentice Hall. Figure 5-2

5.5 Copyright 2011 Pearson Education, Inc. publishing as Prentice Hall. Figure 5-2 Class Announcements TIM 50 - Business Information Systems Lecture 15 Database Assignment 2 posted Due Tuesday 5/26 UC Santa Cruz May 19, 2015 Database: Collection of related files containing records on

More information

Foundations of Business Intelligence: Databases and Information Management

Foundations of Business Intelligence: Databases and Information Management Chapter 6 Foundations of Business Intelligence: Databases and Information Management 6.1 2010 by Prentice Hall LEARNING OBJECTIVES Describe how the problems of managing data resources in a traditional

More information

TIM 50 - Business Information Systems

TIM 50 - Business Information Systems TIM 50 - Business Information Systems Lecture 15 UC Santa Cruz March 1, 2015 The Database Approach to Data Management Database: Collection of related files containing records on people, places, or things.

More information

Topics. Database Essential Concepts. What s s a Good Database System? Using Database Software. Using Database Software. Types of Database Programs

Topics. Database Essential Concepts. What s s a Good Database System? Using Database Software. Using Database Software. Types of Database Programs Topics Software V:. Database concepts: records, fields, data types. Relational and objectoriented databases. Computer maintenance and operation: storage health and utilities; back-up strategies; keeping

More information

Course 103402 MIS. Foundations of Business Intelligence

Course 103402 MIS. Foundations of Business Intelligence Oman College of Management and Technology Course 103402 MIS Topic 5 Foundations of Business Intelligence CS/MIS Department Organizing Data in a Traditional File Environment File organization concepts Database:

More information

Foundations of Business Intelligence: Databases and Information Management

Foundations of Business Intelligence: Databases and Information Management Foundations of Business Intelligence: Databases and Information Management Content Problems of managing data resources in a traditional file environment Capabilities and value of a database management

More information

Chapter 6. Foundations of Business Intelligence: Databases and Information Management

Chapter 6. Foundations of Business Intelligence: Databases and Information Management Chapter 6 Foundations of Business Intelligence: Databases and Information Management VIDEO CASES Case 1a: City of Dubuque Uses Cloud Computing and Sensors to Build a Smarter, Sustainable City Case 1b:

More information

Chapter 6 FOUNDATIONS OF BUSINESS INTELLIGENCE: DATABASES AND INFORMATION MANAGEMENT Learning Objectives

Chapter 6 FOUNDATIONS OF BUSINESS INTELLIGENCE: DATABASES AND INFORMATION MANAGEMENT Learning Objectives Chapter 6 FOUNDATIONS OF BUSINESS INTELLIGENCE: DATABASES AND INFORMATION MANAGEMENT Learning Objectives Describe how the problems of managing data resources in a traditional file environment are solved

More information

Alexander Nikov. 5. Database Systems and Managing Data Resources. Learning Objectives. RR Donnelley Tries to Master Its Data

Alexander Nikov. 5. Database Systems and Managing Data Resources. Learning Objectives. RR Donnelley Tries to Master Its Data INFO 1500 Introduction to IT Fundamentals 5. Database Systems and Managing Data Resources Learning Objectives 1. Describe how the problems of managing data resources in a traditional file environment are

More information

CHAPTER SIX DATA. Business Intelligence. 2011 The McGraw-Hill Companies, All Rights Reserved

CHAPTER SIX DATA. Business Intelligence. 2011 The McGraw-Hill Companies, All Rights Reserved CHAPTER SIX DATA Business Intelligence 2011 The McGraw-Hill Companies, All Rights Reserved 2 CHAPTER OVERVIEW SECTION 6.1 Data, Information, Databases The Business Benefits of High-Quality Information

More information

Chapter 6 8/12/2015. Foundations of Business Intelligence: Databases and Information Management. Problem:

Chapter 6 8/12/2015. Foundations of Business Intelligence: Databases and Information Management. Problem: Foundations of Business Intelligence: Databases and Information Management VIDEO CASES Chapter 6 Case 1a: City of Dubuque Uses Cloud Computing and Sensors to Build a Smarter, Sustainable City Case 1b:

More information

Foundations of Business Intelligence: Databases and Information Management

Foundations of Business Intelligence: Databases and Information Management Chapter 5 Foundations of Business Intelligence: Databases and Information Management 5.1 See Markers-ORDER-DB Logically Related Tables Relational Approach: Physically Related Tables: The Relationship Screen

More information

Foundations of Business Intelligence: Databases and Information Management

Foundations of Business Intelligence: Databases and Information Management Foundations of Business Intelligence: Databases and Information Management Problem: HP s numerous systems unable to deliver the information needed for a complete picture of business operations, lack of

More information

Databases and Information Management

Databases and Information Management Databases and Information Management Reading: Laudon & Laudon chapter 5 Additional Reading: Brien & Marakas chapter 3-4 COMP 5131 1 Outline Database Approach to Data Management Database Management Systems

More information

INFO 1400. Koffka Khan. Tutorial 6

INFO 1400. Koffka Khan. Tutorial 6 INFO 1400 Koffka Khan Tutorial 6 Running Case Assignment: Improving Decision Making: Redesigning the Customer Database Dirt Bikes U.S.A. sells primarily through its distributors. It maintains a small customer

More information

Chapter 14: Databases and Database Management Systems

Chapter 14: Databases and Database Management Systems 15 th Edition Understanding Computers Today and Tomorrow Comprehensive Chapter 14: Databases and Database Management Systems Deborah Morley Charles S. Parker Copyright 2015 Cengage Learning Learning Objectives

More information

Foundations of Business Intelligence: Databases and Information Management

Foundations of Business Intelligence: Databases and Information Management Foundations of Business Intelligence: Databases and Information Management Wienand Omta Fabiano Dalpiaz 1 drs. ing. Wienand Omta Learning Objectives Describe how the problems of managing data resources

More information

Decision Support and Business Intelligence Systems. Chapter 1: Decision Support Systems and Business Intelligence

Decision Support and Business Intelligence Systems. Chapter 1: Decision Support Systems and Business Intelligence Decision Support and Business Intelligence Systems Chapter 1: Decision Support Systems and Business Intelligence Types of DSS Two major types: Model-oriented DSS Data-oriented DSS Evolution of DSS into

More information

CHAPTER 5: BUSINESS ANALYTICS

CHAPTER 5: BUSINESS ANALYTICS Chapter 5: Business Analytics CHAPTER 5: BUSINESS ANALYTICS Objectives The objectives are: Describe Business Analytics. Explain the terminology associated with Business Analytics. Describe the data warehouse

More information

Data Hierarchy. Traditional File based Approach. Hierarchy of Data for a Computer-Based File

Data Hierarchy. Traditional File based Approach. Hierarchy of Data for a Computer-Based File Management Information Systems Data and Knowledge Management Dr. Shankar Sundaresan (Adapted from Introduction to IS, Rainer and Turban) LEARNING OBJECTIVES Recognize the importance of data, issues involved

More information

- Suresh Khanal. http://mcqsets.com. http://www.psexam.com Microsoft Excel Short Questions and Answers 1

- Suresh Khanal. http://mcqsets.com. http://www.psexam.com Microsoft Excel Short Questions and Answers 1 - Suresh Khanal http://mcqsets.com http://www.psexam.com Microsoft Excel Short Questions and Answers 1 Microsoft Access Short Questions and Answers with Illustrations Part I Suresh Khanal Kalanki, Kathmandu

More information

CHAPTER 4: BUSINESS ANALYTICS

CHAPTER 4: BUSINESS ANALYTICS Chapter 4: Business Analytics CHAPTER 4: BUSINESS ANALYTICS Objectives Introduction The objectives are: Describe Business Analytics Explain the terminology associated with Business Analytics Describe the

More information

Copyright 2011 Pearson Education, Inc. Publishing as Prentice Hall. Objectives

Copyright 2011 Pearson Education, Inc. Publishing as Prentice Hall. Objectives Exploring Microsoft Access 2010 by Robert Grauer, Keith Mast, Mary Anne Poatsy Chapter 1 Introduction to Access Copyright 2011 Pearson Education, Inc. Publishing as Prentice Hall. 1 Objectives Navigate

More information

Exploiting Key Answers from Your Data Warehouse Using SAS Enterprise Reporter Software

Exploiting Key Answers from Your Data Warehouse Using SAS Enterprise Reporter Software Exploiting Key Answers from Your Data Warehouse Using SAS Enterprise Reporter Software Donna Torrence, SAS Institute Inc., Cary, North Carolina Juli Staub Perry, SAS Institute Inc., Cary, North Carolina

More information

When to consider OLAP?

When to consider OLAP? When to consider OLAP? Author: Prakash Kewalramani Organization: Evaltech, Inc. Evaltech Research Group, Data Warehousing Practice. Date: 03/10/08 Email: erg@evaltech.com Abstract: Do you need an OLAP

More information

Creating and Using Databases with Microsoft Access

Creating and Using Databases with Microsoft Access CHAPTER A Creating and Using Databases with Microsoft Access In this chapter, you will Use Access to explore a simple database Design and create a new database Create and use forms Create and use queries

More information

OLAP and OLTP. AMIT KUMAR BINDAL Associate Professor M M U MULLANA

OLAP and OLTP. AMIT KUMAR BINDAL Associate Professor M M U MULLANA OLAP and OLTP AMIT KUMAR BINDAL Associate Professor Databases Databases are developed on the IDEA that DATA is one of the critical materials of the Information Age Information, which is created by data,

More information

BENEFITS OF AUTOMATING DATA WAREHOUSING

BENEFITS OF AUTOMATING DATA WAREHOUSING BENEFITS OF AUTOMATING DATA WAREHOUSING Introduction...2 The Process...2 The Problem...2 The Solution...2 Benefits...2 Background...3 Automating the Data Warehouse with UC4 Workload Automation Suite...3

More information

2074 : Designing and Implementing OLAP Solutions Using Microsoft SQL Server 2000

2074 : Designing and Implementing OLAP Solutions Using Microsoft SQL Server 2000 2074 : Designing and Implementing OLAP Solutions Using Microsoft SQL Server 2000 Introduction This course provides students with the knowledge and skills necessary to design, implement, and deploy OLAP

More information

Integrating SAP and non-sap data for comprehensive Business Intelligence

Integrating SAP and non-sap data for comprehensive Business Intelligence WHITE PAPER Integrating SAP and non-sap data for comprehensive Business Intelligence www.barc.de/en Business Application Research Center 2 Integrating SAP and non-sap data Authors Timm Grosser Senior Analyst

More information

Databases in Organizations

Databases in Organizations The following is an excerpt from a draft chapter of a new enterprise architecture text book that is currently under development entitled Enterprise Architecture: Principles and Practice by Brian Cameron

More information

Ursuline College Accelerated Program

Ursuline College Accelerated Program Ursuline College Accelerated Program CRITICAL INFORMATION! DO NOT SKIP THIS LINK BELOW... BEFORE PROCEEDING TO READ THE UCAP MODULE, YOU ARE EXPECTED TO READ AND ADHERE TO ALL UCAP POLICY INFORMATION CONTAINED

More information

Business Intelligence: Effective Decision Making

Business Intelligence: Effective Decision Making Business Intelligence: Effective Decision Making Bellevue College Linda Rumans IT Instructor, Business Division Bellevue College lrumans@bellevuecollege.edu Current Status What do I do??? How do I increase

More information

Microsoft Access Basics

Microsoft Access Basics Microsoft Access Basics 2006 ipic Development Group, LLC Authored by James D Ballotti Microsoft, Access, Excel, Word, and Office are registered trademarks of the Microsoft Corporation Version 1 - Revision

More information

Review Easy Guide for Administrators. Version 1.0

Review Easy Guide for Administrators. Version 1.0 Review Easy Guide for Administrators Version 1.0 Notice to Users Verve software as a service is a software application that has been developed, copyrighted, and licensed by Kroll Ontrack Inc. Use of the

More information

Filter by Selection button. Displays records by degree to which they match the selected record. Click to view advanced filtering options

Filter by Selection button. Displays records by degree to which they match the selected record. Click to view advanced filtering options The Home Ribbon Sort Buttons: sort records into ascending or descending order by selected field Filter by Selection button. Displays records by degree to which they match the selected record. Display summary

More information

www.ducenit.com Self-Service Business Intelligence: The hunt for real insights in hidden knowledge Whitepaper

www.ducenit.com Self-Service Business Intelligence: The hunt for real insights in hidden knowledge Whitepaper Self-Service Business Intelligence: The hunt for real insights in hidden knowledge Whitepaper Shift in BI usage In this fast paced business environment, organizations need to make smarter and faster decisions

More information

B.Sc (Computer Science) Database Management Systems UNIT-V

B.Sc (Computer Science) Database Management Systems UNIT-V 1 B.Sc (Computer Science) Database Management Systems UNIT-V Business Intelligence? Business intelligence is a term used to describe a comprehensive cohesive and integrated set of tools and process used

More information

PROJECT ON MICROSOFT ACCESS (HOME TAB AND EXTERNAL DATA TAB) SUBMITTED BY: SUBMITTED TO: NAME: ROLL NO: REGN NO: BATCH:

PROJECT ON MICROSOFT ACCESS (HOME TAB AND EXTERNAL DATA TAB) SUBMITTED BY: SUBMITTED TO: NAME: ROLL NO: REGN NO: BATCH: PROJECT ON MICROSOFT ACCESS (HOME TAB AND EXTERNAL DATA TAB) SUBMITTED BY: SUBMITTED TO: NAME: ROLL NO: REGN NO: BATCH: INDEX Microsoft Access- An Overview 2 Datasheet view 4 Create a Table in Datasheet

More information

M2074 - Designing and Implementing OLAP Solutions Using Microsoft SQL Server 2000 5 Day Course

M2074 - Designing and Implementing OLAP Solutions Using Microsoft SQL Server 2000 5 Day Course Module 1: Introduction to Data Warehousing and OLAP Introducing Data Warehousing Defining OLAP Solutions Understanding Data Warehouse Design Understanding OLAP Models Applying OLAP Cubes At the end of

More information

An Introduction to Data Warehousing. An organization manages information in two dominant forms: operational systems of

An Introduction to Data Warehousing. An organization manages information in two dominant forms: operational systems of An Introduction to Data Warehousing An organization manages information in two dominant forms: operational systems of record and data warehouses. Operational systems are designed to support online transaction

More information

NEW FEATURES ORACLE ESSBASE STUDIO

NEW FEATURES ORACLE ESSBASE STUDIO ORACLE ESSBASE STUDIO RELEASE 11.1.1 NEW FEATURES CONTENTS IN BRIEF Introducing Essbase Studio... 2 From Integration Services to Essbase Studio... 2 Essbase Studio Features... 4 Installation and Configuration...

More information

Jet Data Manager 2012 User Guide

Jet Data Manager 2012 User Guide Jet Data Manager 2012 User Guide Welcome This documentation provides descriptions of the concepts and features of the Jet Data Manager and how to use with them. With the Jet Data Manager you can transform

More information

Business Intelligence

Business Intelligence Microsoft Dynamics NAV 2009 Business Intelligence Driving insight for more confident results White Paper November 2008 www.microsoft.com/dynamics/nav Table of Contents Overview... 3 What Is Business Intelligence?...

More information

Business Intelligence

Business Intelligence Microsoft Dynamics NAV 2009 Business Intelligence Driving insight for more confident results White Paper November 2008 www.microsoft.com/dynamics/nav Table of Contents Overview... 3 What Is Business Intelligence?...

More information

Microsoft Access 2007 Module 1

Microsoft Access 2007 Module 1 Microsoft Access 007 Module http://pds.hccfl.edu/pds Microsoft Access 007: Module August 007 007 Hillsborough Community College - Professional Development and Web Services Hillsborough Community College

More information

Microsoft Access 2003 Module 1

Microsoft Access 2003 Module 1 Microsoft Access 003 Module http://pds.hccfl.edu/pds Microsoft Access 003: Module June 005 006 Hillsborough Community College - Professional Development Services Hillsborough Community College - Professional

More information

Chapter 1 Databases and Database Users

Chapter 1 Databases and Database Users Chapter 1 Databases and Database Users Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 1 Outline Introduction An Example Characteristics of the Database Approach Actors

More information

ETL-EXTRACT, TRANSFORM & LOAD TESTING

ETL-EXTRACT, TRANSFORM & LOAD TESTING ETL-EXTRACT, TRANSFORM & LOAD TESTING Rajesh Popli Manager (Quality), Nagarro Software Pvt. Ltd., Gurgaon, INDIA rajesh.popli@nagarro.com ABSTRACT Data is most important part in any organization. Data

More information

Module 3: File and database organization

Module 3: File and database organization Module 3: File and database organization Overview This module introduces the basic concepts of files and databases, their components, and organization. Database characteristics, advantages, and disadvantages

More information

Fluency With Information Technology CSE100/IMT100

Fluency With Information Technology CSE100/IMT100 Fluency With Information Technology CSE100/IMT100 ),7 Larry Snyder & Mel Oyler, Instructors Ariel Kemp, Isaac Kunen, Gerome Miklau & Sean Squires, Teaching Assistants University of Washington, Autumn 1999

More information

Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Chapter 1 Outline

Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Chapter 1 Outline Chapter 1 Databases and Database Users Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Introduction Chapter 1 Outline An Example Characteristics of the Database Approach Actors

More information

Access Part 2 - Design

Access Part 2 - Design Access Part 2 - Design The Database Design Process It is important to remember that creating a database is an iterative process. After the database is created and you and others begin to use it there will

More information

Business Intelligence System for Monitoring, Analysis and Forecasting of Socioeconomic Development of Russian Territories

Business Intelligence System for Monitoring, Analysis and Forecasting of Socioeconomic Development of Russian Territories Business Intelligence System for Monitoring, Analysis and Forecasting of Socioeconomic Development of Russian Territories The Ministry of Economic Development of the Russian Federation is responsible for

More information

Microsoft Using an Existing Database Amarillo College Revision Date: July 30, 2008

Microsoft Using an Existing Database Amarillo College Revision Date: July 30, 2008 Microsoft Amarillo College Revision Date: July 30, 2008 Table of Contents GENERAL INFORMATION... 1 TERMINOLOGY... 1 ADVANTAGES OF USING A DATABASE... 2 A DATABASE SHOULD CONTAIN:... 3 A DATABASE SHOULD

More information

Chapter 5 Business Intelligence: Data Warehousing, Data Acquisition, Data Mining, Business Analytics, and Visualization

Chapter 5 Business Intelligence: Data Warehousing, Data Acquisition, Data Mining, Business Analytics, and Visualization Turban, Aronson, and Liang Decision Support Systems and Intelligent Systems, Seventh Edition Chapter 5 Business Intelligence: Data Warehousing, Data Acquisition, Data Mining, Business Analytics, and Visualization

More information

CHAPTER 7: DATABASE APPLICATIONS AND PRIVACY IMPLICATIONS

CHAPTER 7: DATABASE APPLICATIONS AND PRIVACY IMPLICATIONS CHAPTER 7: DATABASE APPLICATIONS AND PRIVACY IMPLICATIONS Multiple Choice: 1. Database programs can do all of the following EXCEPT: A. store and organize data. B. create graphics. C. communicate data.

More information

Tutorial 3. Maintaining and Querying a Database

Tutorial 3. Maintaining and Querying a Database Tutorial 3 Maintaining and Querying a Database Microsoft Access 2010 Objectives Find, modify, and delete records in a table Learn how to use the Query window in Design view Create, run, and save queries

More information

Microsoft Office 2010

Microsoft Office 2010 Access Tutorial 3 Maintaining and Querying a Database Microsoft Office 2010 Objectives Find, modify, and delete records in a table Learn how to use the Query window in Design view Create, run, and save

More information

SimCorp Solution Guide

SimCorp Solution Guide SimCorp Solution Guide Data Warehouse Manager For all your reporting and analytics tasks, you need a central data repository regardless of source. SimCorp s Data Warehouse Manager gives you a comprehensive,

More information

Data Warehousing and Data Mining in Business Applications

Data Warehousing and Data Mining in Business Applications 133 Data Warehousing and Data Mining in Business Applications Eesha Goel CSE Deptt. GZS-PTU Campus, Bathinda. Abstract Information technology is now required in all aspect of our lives that helps in business

More information

Data Warehouse Architecture Overview

Data Warehouse Architecture Overview Data Warehousing 01 Data Warehouse Architecture Overview DW 2014/2015 Notice! Author " João Moura Pires (jmp@di.fct.unl.pt)! This material can be freely used for personal or academic purposes without any

More information

Access Tutorial 2 Building a Database and Defining Table Relationships

Access Tutorial 2 Building a Database and Defining Table Relationships Access Tutorial 2 Building a Database and Defining Table Relationships Microsoft Office 2013 Objectives Session 2.1 Learn the guidelines for designing databases and setting field properties Create a table

More information

Data Warehouse and Business Intelligence Testing: Challenges, Best Practices & the Solution

Data Warehouse and Business Intelligence Testing: Challenges, Best Practices & the Solution Warehouse and Business Intelligence : Challenges, Best Practices & the Solution Prepared by datagaps http://www.datagaps.com http://www.youtube.com/datagaps http://www.twitter.com/datagaps Contact contact@datagaps.com

More information

IAF Business Intelligence Solutions Make the Most of Your Business Intelligence. White Paper November 2002

IAF Business Intelligence Solutions Make the Most of Your Business Intelligence. White Paper November 2002 IAF Business Intelligence Solutions Make the Most of Your Business Intelligence White Paper INTRODUCTION In recent years, the amount of data in companies has increased dramatically as enterprise resource

More information

TECHNOLOGY BRIEF: CA ERWIN SAPHIR OPTION. CA ERwin Saphir Option

TECHNOLOGY BRIEF: CA ERWIN SAPHIR OPTION. CA ERwin Saphir Option TECHNOLOGY BRIEF: CA ERWIN SAPHIR OPTION CA ERwin Saphir Option Table of Contents Executive Summary SECTION 1 2 Introduction SECTION 2: OPPORTUNITY 2 Modeling ERP Systems ERP Systems and Data Warehouses

More information

QAD Business Intelligence Data Warehouse Demonstration Guide. May 2015 BI 3.11

QAD Business Intelligence Data Warehouse Demonstration Guide. May 2015 BI 3.11 QAD Business Intelligence Data Warehouse Demonstration Guide May 2015 BI 3.11 Overview This demonstration focuses on the foundation of QAD Business Intelligence the Data Warehouse and shows how this functionality

More information

Business Intelligence. A Presentation of the Current Lead Solutions and a Comparative Analysis of the Main Providers

Business Intelligence. A Presentation of the Current Lead Solutions and a Comparative Analysis of the Main Providers 60 Business Intelligence. A Presentation of the Current Lead Solutions and a Comparative Analysis of the Main Providers Business Intelligence. A Presentation of the Current Lead Solutions and a Comparative

More information

INTRODUCTION TO BUSINESS INTELLIGENCE What to consider implementing a Data Warehouse and Business Intelligence

INTRODUCTION TO BUSINESS INTELLIGENCE What to consider implementing a Data Warehouse and Business Intelligence INTRODUCTION TO BUSINESS INTELLIGENCE What to consider implementing a Data Warehouse and Business Intelligence Summary: This note gives some overall high-level introduction to Business Intelligence and

More information

Dataset Management with Microsoft Access

Dataset Management with Microsoft Access The Institute for Economic Development Boston University Introduction Dataset Management with Microsoft Access The purpose of this document is to familiarize users with ways to import datasets and construct

More information

ORACLE BUSINESS INTELLIGENCE SUITE ENTERPRISE EDITION PLUS

ORACLE BUSINESS INTELLIGENCE SUITE ENTERPRISE EDITION PLUS ORACLE BUSINESS INTELLIGENCE SUITE ENTERPRISE EDITION PLUS PRODUCT FACTS & FEATURES KEY FEATURES Comprehensive, best-of-breed capabilities 100 percent thin client interface Intelligence across multiple

More information

DATA WAREHOUSING AND OLAP TECHNOLOGY

DATA WAREHOUSING AND OLAP TECHNOLOGY DATA WAREHOUSING AND OLAP TECHNOLOGY Manya Sethi MCA Final Year Amity University, Uttar Pradesh Under Guidance of Ms. Shruti Nagpal Abstract DATA WAREHOUSING and Online Analytical Processing (OLAP) are

More information

DATA WAREHOUSE CONCEPTS DATA WAREHOUSE DEFINITIONS

DATA WAREHOUSE CONCEPTS DATA WAREHOUSE DEFINITIONS DATA WAREHOUSE CONCEPTS A fundamental concept of a data warehouse is the distinction between data and information. Data is composed of observable and recordable facts that are often found in operational

More information

CONCEPTUALIZING BUSINESS INTELLIGENCE ARCHITECTURE MOHAMMAD SHARIAT, Florida A&M University ROSCOE HIGHTOWER, JR., Florida A&M University

CONCEPTUALIZING BUSINESS INTELLIGENCE ARCHITECTURE MOHAMMAD SHARIAT, Florida A&M University ROSCOE HIGHTOWER, JR., Florida A&M University CONCEPTUALIZING BUSINESS INTELLIGENCE ARCHITECTURE MOHAMMAD SHARIAT, Florida A&M University ROSCOE HIGHTOWER, JR., Florida A&M University Given today s business environment, at times a corporate executive

More information

ORACLE BUSINESS INTELLIGENCE SUITE ENTERPRISE EDITION PLUS

ORACLE BUSINESS INTELLIGENCE SUITE ENTERPRISE EDITION PLUS Oracle Fusion editions of Oracle's Hyperion performance management products are currently available only on Microsoft Windows server platforms. The following is intended to outline our general product

More information

9.1 SAS/ACCESS. Interface to SAP BW. User s Guide

9.1 SAS/ACCESS. Interface to SAP BW. User s Guide SAS/ACCESS 9.1 Interface to SAP BW User s Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2004. SAS/ACCESS 9.1 Interface to SAP BW: User s Guide. Cary, NC: SAS

More information

Lost in Space? Methodology for a Guided Drill-Through Analysis Out of the Wormhole

Lost in Space? Methodology for a Guided Drill-Through Analysis Out of the Wormhole Paper BB-01 Lost in Space? Methodology for a Guided Drill-Through Analysis Out of the Wormhole ABSTRACT Stephen Overton, Overton Technologies, LLC, Raleigh, NC Business information can be consumed many

More information

Advantages of Implementing a Data Warehouse During an ERP Upgrade

Advantages of Implementing a Data Warehouse During an ERP Upgrade Advantages of Implementing a Data Warehouse During an ERP Upgrade Advantages of Implementing a Data Warehouse During an ERP Upgrade Introduction Upgrading an ERP system represents a number of challenges

More information

Single Business Template Key to ROI

Single Business Template Key to ROI Paper 118-25 Warehousing Design Issues for ERP Systems Mark Moorman, SAS Institute, Cary, NC ABSTRACT As many organizations begin to go to production with large Enterprise Resource Planning (ERP) systems,

More information

IMPROVING DATA INTEGRATION FOR DATA WAREHOUSE: A DATA MINING APPROACH

IMPROVING DATA INTEGRATION FOR DATA WAREHOUSE: A DATA MINING APPROACH IMPROVING DATA INTEGRATION FOR DATA WAREHOUSE: A DATA MINING APPROACH Kalinka Mihaylova Kaloyanova St. Kliment Ohridski University of Sofia, Faculty of Mathematics and Informatics Sofia 1164, Bulgaria

More information

Course 803401 DSS. Business Intelligence: Data Warehousing, Data Acquisition, Data Mining, Business Analytics, and Visualization

Course 803401 DSS. Business Intelligence: Data Warehousing, Data Acquisition, Data Mining, Business Analytics, and Visualization Oman College of Management and Technology Course 803401 DSS Business Intelligence: Data Warehousing, Data Acquisition, Data Mining, Business Analytics, and Visualization CS/MIS Department Information Sharing

More information

Chapter 6 - Enhancing Business Intelligence Using Information Systems

Chapter 6 - Enhancing Business Intelligence Using Information Systems Chapter 6 - Enhancing Business Intelligence Using Information Systems Managers need high-quality and timely information to support decision making Copyright 2014 Pearson Education, Inc. 1 Chapter 6 Learning

More information

BUSINESS INTELLIGENCE

BUSINESS INTELLIGENCE BUSINESS INTELLIGENCE Microsoft Dynamics NAV BUSINESS INTELLIGENCE Driving better business performance for companies with changing needs White Paper Date: January 2007 www.microsoft.com/dynamics/nav Table

More information

Copyright 2007 Ramez Elmasri and Shamkant B. Navathe. Slide 29-1

Copyright 2007 Ramez Elmasri and Shamkant B. Navathe. Slide 29-1 Slide 29-1 Chapter 29 Overview of Data Warehousing and OLAP Chapter 29 Outline Purpose of Data Warehousing Introduction, Definitions, and Terminology Comparison with Traditional Databases Characteristics

More information

Participant Guide RP301: Ad Hoc Business Intelligence Reporting

Participant Guide RP301: Ad Hoc Business Intelligence Reporting RP301: Ad Hoc Business Intelligence Reporting State of Kansas As of April 28, 2010 Final TABLE OF CONTENTS Course Overview... 4 Course Objectives... 4 Agenda... 4 Lesson 1: Reviewing the Data Warehouse...

More information

Use Find & Replace Commands under Home tab to search and replace data.

Use Find & Replace Commands under Home tab to search and replace data. Microsoft Access 2: Managing Data in Tables and Creating Relationships You have created tables in an Access database. Data in Access tables can be added, deleted, and updated to be current (practiced in

More information

OLAP Cube Manual deployment and Error resolution with limited licenses and Config keys

OLAP Cube Manual deployment and Error resolution with limited licenses and Config keys Documented by - Sreenath Reddy G OLAP Cube Manual deployment and Error resolution with limited licenses and Config keys Functionality in Microsoft Dynamics AX can be turned on or off depending on license

More information

COURSE SYLLABUS COURSE TITLE:

COURSE SYLLABUS COURSE TITLE: 1 COURSE SYLLABUS COURSE TITLE: FORMAT: CERTIFICATION EXAMS: 55043AC Microsoft End to End Business Intelligence Boot Camp Instructor-led None This course syllabus should be used to determine whether the

More information

Creating tables in Microsoft Access 2007

Creating tables in Microsoft Access 2007 Platform: Windows PC Ref no: USER 164 Date: 25 th October 2007 Version: 1 Authors: D.R.Sheward, C.L.Napier Creating tables in Microsoft Access 2007 The aim of this guide is to provide information on using

More information

Data Domain Profiling and Data Masking for Hadoop

Data Domain Profiling and Data Masking for Hadoop Data Domain Profiling and Data Masking for Hadoop 1993-2015 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or

More information

Business Intelligence Tutorial

Business Intelligence Tutorial IBM DB2 Universal Database Business Intelligence Tutorial Version 7 IBM DB2 Universal Database Business Intelligence Tutorial Version 7 Before using this information and the product it supports, be sure

More information

Chapter 5. Warehousing, Data Acquisition, Data. Visualization

Chapter 5. Warehousing, Data Acquisition, Data. Visualization Decision Support Systems and Intelligent Systems, Seventh Edition Chapter 5 Business Intelligence: Data Warehousing, Data Acquisition, Data Mining, Business Analytics, and Visualization 5-1 Learning Objectives

More information

A database is a collection of data organised in a manner that allows access, retrieval, and use of that data.

A database is a collection of data organised in a manner that allows access, retrieval, and use of that data. Microsoft Access A database is a collection of data organised in a manner that allows access, retrieval, and use of that data. A Database Management System (DBMS) allows users to create a database; add,

More information

<Insert Picture Here> Extending Hyperion BI with the Oracle BI Server

<Insert Picture Here> Extending Hyperion BI with the Oracle BI Server Extending Hyperion BI with the Oracle BI Server Mark Ostroff Sr. BI Solutions Consultant Agenda Hyperion BI versus Hyperion BI with OBI Server Benefits of using Hyperion BI with the

More information

Oracle Database 10g: Introduction to SQL

Oracle Database 10g: Introduction to SQL Oracle University Contact Us: 1.800.529.0165 Oracle Database 10g: Introduction to SQL Duration: 5 Days What you will learn This course offers students an introduction to Oracle Database 10g database technology.

More information

release 240 Exact Synergy Enterprise CRM Implementation Manual

release 240 Exact Synergy Enterprise CRM Implementation Manual release 240 Exact Synergy Enterprise CRM Implementation Manual EXACT SYNERGY ENTERPRISE CRM IMPLEMENTATION MANUAL The information provided in this manual is intended for internal use by or within the organization

More information

OLAP. Business Intelligence OLAP definition & application Multidimensional data representation

OLAP. Business Intelligence OLAP definition & application Multidimensional data representation OLAP Business Intelligence OLAP definition & application Multidimensional data representation 1 Business Intelligence Accompanying the growth in data warehousing is an ever-increasing demand by users for

More information

IT1104- Information Systems & Technology (Compulsory)

IT1104- Information Systems & Technology (Compulsory) INTRODUCTION - Information Systems & Technology (Compulsory) This is one of the 4 courses designed for Semester 1 of Bachelor of Information Technology (BIT) Degree program. Information Systems and Technology

More information

Business Intelligence, Analytics & Reporting: Glossary of Terms

Business Intelligence, Analytics & Reporting: Glossary of Terms Business Intelligence, Analytics & Reporting: Glossary of Terms A B C D E F G H I J K L M N O P Q R S T U V W X Y Z Ad-hoc analytics Ad-hoc analytics is the process by which a user can create a new report

More information