Information Systems and Networks

Size: px
Start display at page:

Download "Information Systems and Networks"

Transcription

1 Information Systems and Networks by Samuel Rota Bulò Department of Management Università Ca' Foscari Venezia

2 Lesson 5 Databased and Information Management

3 Case study: RR Donnelley giant commercial printing and service company providing printing services, forms and labels, direct mail, and other services The company s recent expansion has been fueled by a series of acquisitions commercial printer Moore Wallace in 2005 printing and supply chain management company Banta in January 2007 RR Donnelley s revenue has jumped from $2.4 billion in 2003 to over $9.8 billion today

4 Case study: RR Donnelley all that growth created information management challenges Each acquired company had its own systems and its own set of customer, vendor, and product data The data were often inconsistent, duplicated, or incomplete Donnelley had to use time-consuming manual processes to reconcile the data stored in multiple systems in order to get a clear enterprise-wide picture of each of its customers, since they might be doing business with several different units of the company. These conditions heightened inefficiencies and costs Donnelley still needed a clear single set of data that was accurate and consistent for the entire enterprise

5 Case study: RR Donnelley RR Donnelley turned to master data management (MDM) MDM seeks to ensure that an organization does not use multiple versions of the same piece of data in different parts of its operations by merging disparate records into a single authenticated master file Once the master file is in place, employees and applications access a single consolidated view of the company s data It is especially useful for companies such as Donnelley that have data integration problems as a result of mergers and acquisitions

6 Case study: RR Donnelley Implementing MDM is a multi-step process that includes: business process analysis data cleansing data consolidation and reconciliation data migration into a master file of all the company s data Companies must identify what group in the company owns each piece of data and is responsible for resolving inconsistent definitions of data and other discrepancies Donnelley launched its MDM program in late 2005 and began creating a single set of identifiers for its customer and vendor data The company opted for a registry model using Purisma s Data Hub customer data continue to reside in the system where they originate but are registered in a master hub and cross-referenced so applications can find the data

7 Case study: RR Donnelley Nearly a year later, Donnelley brought up its Customer Master Data Store, which integrates the data from numerous systems from Donnelley acquisitions Data that are outdated, incomplete, or incorrectly formatted are corrected or eliminated A registry points to where the source data are stored By having a single consistent enterprise-wide set of data with common definitions and standards, management is able to easily find out what kind of business and how much business it has with a particular customer to identify top customers and sales opportunities when Donelley acquires a company, it can quickly see a list of overlapping customers

8 Case study: RR Donnelley

9 Organizing data An effective IS provides users with accurate, timely, and relevant information timely: it is available to decision makers when it is needed relevant: it is useful and appropriate for the types of work and decisions that require it many businesses don't have timely, accurate or relevant information because the data in their IS have been poorly organized an mantained

10 File organization terms and concepts

11 Problems of the traditional file environment

12 Problems of the traditional file environment Data redundancy: presence of duplicate data in multiple data files occurs when different groups in an organization independently collect the same piece of data and store it independently of each other Data inconsistency: same logical piece of data that is stored in different locations with different values data updated in some systems but not in others use of different coding systems for attributes

13 Problems of the traditional file environment Program-data dependence: coupling of data stored in files and the specific programs required to update and maintain those files changes in programs require changes to the data such changes could cost millions of dollars to implement properly Lack of flexibility: a traditional filesystem can deliver routine scheduled reports after extensive programming efforts it cannot deliver ad hoc reports or respond to unanticipated information requirements in a timely fashion

14 Problems of the traditional file environment Poor security: access and dissemination of information may be out of control management has no way of knowing who is accessing or even making changes to the organization's data Lack of data sharing and availability: pieces of information in different files and different parts of the organization cannot be related to one another virtually impossible for information to be shared or accessed in a timely manner information cannot flow freely across different functional areas of different parts of the organization finding inconsistent pieces of information discourages users form trusting the accuracy of their data

15 Database: The database approach to data management collection of data organized to serve many applications efficiently by centralizing the data and controlling redundant data data appears as being stored in one location Database Management System (DBMS): software that permits an organization to centralize data, manage them efficiently, and provide access to stored data by application programs acts as an interface between application programs and the physical data files separates the logical and the physical views of the data the logical view presents the data as they would be perceived by end users or business specialists the physical view shows how data are actually organized and structured on physical storage media

16 The database approach to data management

17 The database approach to data management a DBMS reduces redundancy by minimizing isolated files in which the same data are repeated helps control redundancy by ensuring that every occurrence has the same value uncouples programs and data, enabling data to stand on their own access and availability of information will be increased program development and maintenance costs reduced programmers can perform ad hoc queries of data in the database enables the organization to centralize their data management, their use and security

18 Relational DBMS The most popular type of DBMS is the relational DBMS Relational databases represent data as 2-dimensional tables (relations) Tables contain data on an entity and their attributes

19 Main DBMS Commercial vendors DB2 (IBM) Caché (InterSystems) FileMaker Pro (FileMaker Inc) Microsoft SQL Server (Microsoft) Microsoft Access (Microsoft) Oracle (Oracle Corporation) SQL Anywhere Studio (SyBase) SyBase SQL Server (SyBase) Open source or free software Firebird SQL (The FirebirdSQL Foundation) HSQL Database Engine MySQL PicoSQL PostgresSQL SQLite ZODB

20 The Entity-Relationship (ER) model graphical model that describes the organization of data that can be then implemented with a DBMS it is composed by three elements: entities relationships attributes

21 Entities An entity may be defined as a thing which is recognized as being capable of an independent existence and which can be uniquely identified it is an abstraction from the complexities of a domain entities can be thought of as nouns e.g., suppliers, parts, customers,... Student

22 Relationship A relationship captures how entities are related to one another. relationships can be thought of as verbs, linking two or more nouns Person owns Car

23 Attributes Attributed provide entities with properties e.g., the attributes of an entity car can be: producer, model, power, price, n. of cylinders attributes have: type: string, number, date dimension: length of the representation Person owns Car - Surname - Name - Title - Tax code - Producer - Model - Power - n. of cylinders - price

24 Ont-to-one relationships every element of the first entity has one and only one corresponding element of the second entity Employee 1 1 uses Workstation

25 One-to-many relationship every element of the first entity can have many corresponding elements of the second entity, but an element of the second entity has only one corresponding element of the first one Person 1 * owns Car

26 Many-to-many relationship every element of the first entity can have many corresponding elements of the second entity and vice versa Student * * follows Course

27 Relational DB. Tables A database consists of a set of tables Tables commonly correspond to entities Each table consists of rows (records), each encoding an element of the entity it represents Each column encodes an attribute of the entity field attribute record

28 Relational DB. Tables fields of the same attribute (column) come from the same domain (have the same type) rows are regarded as different elements, even if they have fields with the same values attributes have different names order of rows and columns is irrelevant a table can have one or more attributes that form a key for the table the key must identify uniquely each record of the table keys are used to establish relations among tables

29 Relational DBMS

30 Operations of a Relational DBMS database tables can be combined easily to deliver data required by users basic operations are used to develop useful sets of data: select: filters rows according to some given criteria join: links multiple tables project: restricts the set of attributes grouping: groups rows according to some given criteria

31 Operations of a Relational DBMS

32 Object-oriented DBMS (OODBMS) another type of DBMS, different from the relational one an object-oriented DBMS stores data and procedures that can act on those data as objects that can be automatically stored and shared they a relatively slow compared to the relational counterparts for processing large numbers of transactions hybrid systems exist that provide both relational and object-oriented capabilities

33 Databases in the cloud cloud computing providers offer database management services, but typically they have less functionality primary customers are Web-focused start-ups or small to medium-sized businesses looking database capabilities at lower price than a standard relational DBMS

34 Capabilities of DBMS DBMS provide capabilities and tools for organizing, managing, and accessing and manipulating the data in the database the most important are: data definition language allows to specify the structure of the content of the DB data dictionary automated or manual file that stores definitions of data elements and their characteristics data manipulation language used to add, change, delete, retrieve the data in the DB

35 Database-oriented languages Languages designed to manage a database should provide the following functionalities: Data Control Language (DDL) allow to specify database security and access control Data Definition Language (DDL) allow to specify the logical schema of the DB (tables structure) Data Manipulation Language (DML) allow to read, insert, modify and delete the database data Query language allows to perform complex queries The most famous is SQL (Structured Query Language)

36 Query results Results of a query expressed by means of a query language is a table

37 Structured Query Language (SQL) Initially every DBMS adopted its own language The need of standards to help integration and interoperability of applications forced the main relational systems to adopt the SQL language SQL is not a mere query language but allows also to manipulate data, as well as define the structure of the tables in the database

38 Structured Query Language (SQL) SELECT FROM WHERE C1,...,Cn T1,...,Tm P Generates a new table showing fields C1,...,Cn extracted from the tables T1,...,Tm and only the rows that satisfy property P. SELECT FROM WHERE Name, Surname Students BirthPlace = 'Venice'

39 SQL: data insertion/deletion INSERT INTO Students VALUES (12345,'Verdi','Paolo',' ','Pisa'), (23456,'Rossi','Marco',' ','Roma') Inserts new records in the table Students DELETE FROM WHERE Students id_number='12345' Deletes a record from the table Students having id_number 12345

40 SQL: table creation/deletion CREATE TABLE Students( id_number integer, surname varchar(50), name varchar(50), birthday date, birthplace varchar(50) ) Creates a table Student in the DB DROP TABLE Students Deletes the table Student

41 Databases to improve business performance and decision making Businesses use their DB to keep track of basic transactions, such as paying suppliers, processing orders, keeping track of customers, and paying employees they need databases also to provide information that will help the company run the business more efficiently and help managers and employees make better decisions e.g., find the most profitable customer, or the most popular product

42 Data warehouse A data warehouse is a database that stores current and historical data of potential interest to decision makers throughout the company the data originate in many core operational transaction systems, such as systems for sales, customer accounts, and manufacturing, and may include data from Web sites transactions the data warehouse consolidates and standardizes information from different operational databases so that the information can be used across the enterprise for management analysis and decision making the data warehouse makes the data available for anyone to access as needed, but it cannot be altered

43 Data warehouse

44 Data Marts a data marts is a subset of a data warehouse in which a summarized or highly focused portion of the organization's data is placed in a separate database for a specific population of users e.g., marketing and sales data marts to deal with customer information data marts are constructed more rapidly and at lower cost than an enterprise-wide data warehouse

45 Tools for business intelligence once data is collected in data warehouses and in data marts, they are available for further analysis using tools for business intelligence business intelligence tools enable users to analyse data to see new patterns, relationships, and insights that are useful for guiding decision making principal tools: software for database querying and reporting tools for multidimensional data analysis tools for data mining

46 Tools for business intelligence: Online Analytical Processing (OLAP) suppose your company sells four products nuts, bolts, washers and screws in the East, West and Central regions of US you can easily answer questions like how many washers where sold during the past quarter by querying the sales database but when we want to know how many washers were sold in each of your sales region and compare actual results with projected sales you need online analytical processing tools

47 Tools for business intelligence: Online Analytical Processing (OLAP) OLAP supports multidimensional data analysis, enabling users to view the same data in different ways using multiple dimensions dimensions are represented by different aspects of information, e.g., product, pricing, cost, region, time of period OLAP enables users to obtain online answers to ad hoc questions in a fairly rapid amount of time, even when the data are stored in very large databases, such as sale figures for multiple years

48 Tools for business intelligence: Data mining with OLAP and query-oriented data analysis, users need to have a good idea about the information for which they are looking data mining is more discovery-driven it provides insights into corporate data that cannot be obtained with OLAP by finding hidden patterns and relationships in larger databases and inferring rules from them to predict future behaviour patterns and rules are used to guide decision making and forecast the effect of those decisions

49 Tools for business intelligence: Data mining types of information obtainable from data mining: associations: occurrences linked to a single event e.g., supermarket purchasing pattern: 65% of the time a cola drink is bought with pop-corn, but when there is promotion, 85% of the time sequences: events linked over time e.g., if a house is purchased, a new refrigerator is bought within two weeks 65% of the time, and an oven within one month, 45% of the time classification: recognizes patterns that describe the group to which an item belongs by examining existing items that have been classified and by inferring a set of rules e.g., discover the characteristics of customer that are likely to leave clustering: similar to classification but without prior knowledge of the groups. Clustering finds several groupings of within data e.g., divide customers into groups based on demographics and types of personal investments forecasting: uses a series of existing values to forecast what other value will be e.g., predict sale figures

50 Text mining business intelligence tools deal primarily with data that have been structured in databases and files unstructured data, most in the form of text files, is believed to account for over 80% of an organization's useful information e.g., s, memos, call center transcripts, survey responses, legal cases, patent descriptions, service reports text mining tools are available to help businesses analyse these data they extract key element from large unstructured data sets, discover patterns and relationships and summarize the information

51 Web mining the Web is another rich source of valuable information, some of which can now be mined for patterns, trends and insights into customer behaviour web mining refers to the discovery and analysis of useful patterns and information from the WWW Google Trends and Google Insights for Search services allow to track the popularity of words and phrases in Google search queries to learn what people are interested in and what they are interested in buying web mining looks for patterns in data through content mining, structure mining and usage mining web content mining is the process of extracting knowledge from the content of Web pages which may include text, image, audio and video data web structure mining extracts useful information from the links embedded in the Web documents web usage mining examines user interaction data recorded by a Web server whenever requests for a Web site's resources are received

52 Databases and the web many companies use the Web to make some of the information in their internal databases available to customers and business partners user access internet using a browser through which they request data to from the organization's database using HTML to communicate

53 Databases and the web the web server receiving the user's request translate them from HTML into SQL so that they can be processed by the DBMS working with the database in a client/server environment, the DBMS resides on a dedicated database server between the web server and the database server we find an application server hosting a software that handles all application operations including transaction processing and data access the application server takes requests from the Web server, runs the business logic to process transactions based on those requests and provides connectivity to the organization's back-end system or databases

54 Managing data resources: information policy an information policy specifies the organization's rules for sharing, disseminating, acquiring, standardizing, classifying and inventorying information it lays out specific procedures and accountabilities, identifying which users and organizational units can share information, where information can be distributed, and who is responsible for updating and maintaining information e.g., only selected members of the payroll and human resources department would have the right to change and view sensitive employee data

55 Managing data resources: information policy in small businesses, information policy is established by the owner or managers in large businesses, there is a data administration, who is responsible for the specific policies and procedures through which data can be managed as an organizational resource he develops the information policy, plans for data, oversees logical database design and data dictionary development, and monitoring how IS specialists and end-user groups use data data governance deals with the policies and processes for managing the availability, usability, integrity and security of the data employed in an enterprise, with special emphasis on promoting privacy, security, data quality, and compliance with government regulations a large corporate has also a database administration responsible for defining and organizing the structure and content of the database, and maintaining it.

56 Managing data resources: data quality having data that is inaccurate, untimely, or inconsistent with other sources of information leads to incorrect decisions, product recalls and financial losses 20% of US main and commercial package deliveries were returned because of incorrect names or addresses 25% of the critical data in large Fortune 1000 companies' databases is inaccurate or incomplete including bad product codes, descriptions, faulty inventory description, erroneous financial data, incorrect supplier information, and incorrect employee data if a database is properly designed and enterprise-wide data standards established, duplicated or inconsistent data elements should be minimal

57 Managing data resources: data quality most errors however stem from incorrect data input the incidence of such errors increases as companies move to the web suppliers and customers enter their data and directly update internal systems before new databases are in place, organizations need to identify and correct their faulty data and establish better routines for editing data once their database is in operation data quality audit is a structured survey of the data accuracy and level of completeness of the data in an IS data cleansing (data scrubbing) consists of activities for detecting and correcting data in a database that are incorrect, incomplete, improperly formatted, or redundant specialized data cleansing software exist to automatically survey data files, correct errors in the data, and integrate the data in a consistent company-wide format

Management Information Systems MANAGING THE DIGITAL FIRM, 12 TH EDITION FOUNDATIONS OF BUSINESS INTELLIGENCE: DATABASES AND INFORMATION MANAGEMENT

Management Information Systems MANAGING THE DIGITAL FIRM, 12 TH EDITION FOUNDATIONS OF BUSINESS INTELLIGENCE: DATABASES AND INFORMATION MANAGEMENT MANAGING THE DIGITAL FIRM, 12 TH EDITION Chapter 6 FOUNDATIONS OF BUSINESS INTELLIGENCE: DATABASES AND INFORMATION MANAGEMENT VIDEO CASES Case 1: Maruti Suzuki Business Intelligence and Enterprise Databases

More information

by Prentice Hall

by Prentice Hall Chapter 6 Foundations of Business Intelligence: Databases and Information Management 6.1 2010 by Prentice Hall Organizing Data in a Traditional File Environment File organization concepts Computer system

More information

TIM 50 - Business Information Systems

TIM 50 - Business Information Systems TIM 50 - Business Information Systems Lecture 15 UC Santa Cruz May 20, 2014 Announcements DB 2 Due Tuesday Next Week The Database Approach to Data Management Database: Collection of related files containing

More information

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

Chapter 3. Foundations of Business Intelligence: Databases and Information Management Chapter 3 Foundations of Business Intelligence: Databases and Information Management THE DATA HIERARCHY TRADITIONAL FILE PROCESSING Organizing Data in a Traditional File Environment Problems with the traditional

More information

Chapter 6 VIDEO CASES

Chapter 6 VIDEO CASES 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

Managing Data Resources

Managing Data Resources Chapter 7 Managing Data Resources 7.1 2006 by Prentice Hall OBJECTIVES Describe basic file organization concepts and the problems of managing data resources in a traditional file environment Describe how

More information

Managing Data Resources

Managing Data Resources Chapter 7 OBJECTIVES Describe basic file organization concepts and the problems of managing data resources in a traditional file environment Managing Data Resources Describe how a database management system

More information

TIM 50 - Business Information Systems

TIM 50 - Business Information Systems TIM 50 - Business Information Systems Lecture 15 UC Santa Cruz Nov 10, 2016 Class Announcements n Database Assignment 2 posted n Due 11/22 The Database Approach to Data Management The Final Database Design

More information

Management Information Systems

Management Information Systems Foundations of Business Intelligence: Databases and Information Management Lecturer: Richard Boateng, PhD. Lecturer in Information Systems, University of Ghana Business School Executive Director, PearlRichards

More information

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

Management Information Systems Review Questions. Chapter 6 Foundations of Business Intelligence: Databases and Information Management Management Information Systems Review Questions Chapter 6 Foundations of Business Intelligence: Databases and Information Management 1) The traditional file environment does not typically have a problem

More information

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

Chapter 6. Foundations of Business Intelligence: Databases and Information Management VIDEO CASES 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

IT1105 Information Systems and Technology. BIT 1 ST YEAR SEMESTER 1 University of Colombo School of Computing. Student Manual

IT1105 Information Systems and Technology. BIT 1 ST YEAR SEMESTER 1 University of Colombo School of Computing. Student Manual IT1105 Information Systems and Technology BIT 1 ST YEAR SEMESTER 1 University of Colombo School of Computing Student Manual Lesson 3: Organizing Data and Information (6 Hrs) Instructional Objectives Students

More information

Fundamentals of Information Systems, Seventh Edition

Fundamentals of Information Systems, Seventh Edition Chapter 3 Data Centers, and Business Intelligence 1 Why Learn About Database Systems, Data Centers, and Business Intelligence? Database: A database is an organized collection of data. Databases also help

More information

Entities and Attributes. Image 6.2 Image 6.3

Entities and Attributes. Image 6.2 Image 6.3 Image. 6.1 Entities and Attributes Image 6.2 Image 6.3 Organizing Data in a Relational DataBase Estabilishing Relationships 6.4 6.5 6-2 What are the principles of a database management system? A database

More information

5-1McGraw-Hill/Irwin. Copyright 2007 by The McGraw-Hill Companies, Inc. All rights reserved.

5-1McGraw-Hill/Irwin. Copyright 2007 by The McGraw-Hill Companies, Inc. All rights reserved. 5-1McGraw-Hill/Irwin Copyright 2007 by The McGraw-Hill Companies, Inc. All rights reserved. 5 hapter Data Resource Management Data Concepts Database Management Types of Databases McGraw-Hill/Irwin Copyright

More information

WKU-MIS-B10 Data Management: Warehousing, Analyzing, Mining, and Visualization. Management Information Systems

WKU-MIS-B10 Data Management: Warehousing, Analyzing, Mining, and Visualization. Management Information Systems Management Information Systems Management Information Systems B10. Data Management: Warehousing, Analyzing, Mining, and Visualization Code: 166137-01+02 Course: Management Information Systems Period: Spring

More information

Lecture 18. Business Intelligence and Data Warehousing. 1:M Normalization. M:M Normalization 11/1/2017. Topics Covered

Lecture 18. Business Intelligence and Data Warehousing. 1:M Normalization. M:M Normalization 11/1/2017. Topics Covered Lecture 18 Business Intelligence and Data Warehousing BDIS 6.2 BSAD 141 Dave Novak Topics Covered Test # Review What is Business Intelligence? How can an organization be data rich and information poor?

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 TOPIC 1: Foundations of Business Intelligence: Databases and Information Management TOPIC 1: Foundations of Business Intelligence:

More information

Strategic Information Systems Systems Development Life Cycle. From Turban et al. (2004), Information Technology for Management.

Strategic Information Systems Systems Development Life Cycle. From Turban et al. (2004), Information Technology for Management. Strategic Information Systems Systems Development Life Cycle Strategic Information System Any information system that changes the goals, processes, products, or environmental relationships to help an organization

More information

DATA MINING AND WAREHOUSING

DATA MINING AND WAREHOUSING DATA MINING AND WAREHOUSING Qno Question Answer 1 Define data warehouse? Data warehouse is a subject oriented, integrated, time-variant, and nonvolatile collection of data that supports management's decision-making

More information

AVOIDING SILOED DATA AND SILOED DATA MANAGEMENT

AVOIDING SILOED DATA AND SILOED DATA MANAGEMENT AVOIDING SILOED DATA AND SILOED DATA MANAGEMENT Dalton Cervo Author, Consultant, Data Management Expert March 2016 This presentation contains extracts from books that are: Copyright 2011 John Wiley & Sons,

More information

Topics covered 10/12/2015. Pengantar Teknologi Informasi dan Teknologi Hijau. Suryo Widiantoro, ST, MMSI, M.Com(IS)

Topics covered 10/12/2015. Pengantar Teknologi Informasi dan Teknologi Hijau. Suryo Widiantoro, ST, MMSI, M.Com(IS) Pengantar Teknologi Informasi dan Teknologi Hijau Suryo Widiantoro, ST, MMSI, M.Com(IS) 1 Topics covered 1. Basic concept of managing files 2. Database management system 3. Database models 4. Data mining

More information

2.1 Ethics in an Information Society

2.1 Ethics in an Information Society 2.1 Ethics in an Information Society Did you ever hear the old warning, "Just because you can, doesn't mean you should?" Well, a lot of things are possible on the Internet nowadays, but that doesn't mean

More information

Partner Presentation Faster and Smarter Data Warehouses with Oracle OLAP 11g

Partner Presentation Faster and Smarter Data Warehouses with Oracle OLAP 11g Partner Presentation Faster and Smarter Data Warehouses with Oracle OLAP 11g Vlamis Software Solutions, Inc. Founded in 1992 in Kansas City, Missouri Oracle Partner and reseller since 1995 Specializes

More information

Department of Industrial Engineering. Sharif University of Technology. Operational and enterprises systems. Exciting directions in systems

Department of Industrial Engineering. Sharif University of Technology. Operational and enterprises systems. Exciting directions in systems Department of Industrial Engineering Sharif University of Technology Session# 9 Contents: The role of managers in Information Technology (IT) Organizational Issues Information Technology Operational and

More information

TECHNOLOGY BRIEF: CA ERWIN DATA PROFILER. Combining Data Profiling and Data Modeling for Better Data Quality

TECHNOLOGY BRIEF: CA ERWIN DATA PROFILER. Combining Data Profiling and Data Modeling for Better Data Quality TECHNOLOGY BRIEF: CA ERWIN DATA PROFILER Combining Data Profiling and Data Modeling for Better Data Quality Table of Contents Executive Summary SECTION 1: CHALLENGE 2 Reducing the Cost and Risk of Data

More information

Overview. Introduction to Data Warehousing and Business Intelligence. BI Is Important. What is Business Intelligence (BI)?

Overview. Introduction to Data Warehousing and Business Intelligence. BI Is Important. What is Business Intelligence (BI)? Introduction to Data Warehousing and Business Intelligence Overview Why Business Intelligence? Data analysis problems Data Warehouse (DW) introduction A tour of the coming DW lectures DW Applications Loosely

More information

Unit 10 Databases. Computer Concepts Unit Contents. 10 Operational and Analytical Databases. 10 Section A: Database Basics

Unit 10 Databases. Computer Concepts Unit Contents. 10 Operational and Analytical Databases. 10 Section A: Database Basics Unit 10 Databases Computer Concepts 2016 ENHANCED EDITION 10 Unit Contents Section A: Database Basics Section B: Database Tools Section C: Database Design Section D: SQL Section E: Big Data Unit 10: Databases

More information

Recently Updated Dumps from PassLeader with VCE and PDF (Question 1 - Question 15)

Recently Updated Dumps from PassLeader with VCE and PDF (Question 1 - Question 15) Recently Updated 70-467 Dumps from PassLeader with VCE and PDF (Question 1 - Question 15) Valid 70-467 Dumps shared by PassLeader for Helping Passing 70-467 Exam! PassLeader now offer the newest 70-467

More information

Computers Are Your Future

Computers Are Your Future Computers Are Your Future Twelfth Edition Chapter 12: Databases and Information Systems Copyright 2012 Pearson Education, Inc. Publishing as Prentice Hall 1 Databases and Information Systems Copyright

More information

Question Bank. 4) It is the source of information later delivered to data marts.

Question Bank. 4) It is the source of information later delivered to data marts. Question Bank Year: 2016-2017 Subject Dept: CS Semester: First Subject Name: Data Mining. Q1) What is data warehouse? ANS. A data warehouse is a subject-oriented, integrated, time-variant, and nonvolatile

More information

Full file at

Full file at Chapter 2 Data Warehousing True-False Questions 1. A real-time, enterprise-level data warehouse combined with a strategy for its use in decision support can leverage data to provide massive financial benefits

More information

CS102B: Introduction to Information Systems. Minerva A. Lagarde

CS102B: Introduction to Information Systems. Minerva A. Lagarde CS102B: Introduction to Information Systems Minerva A. Lagarde Module 1: Fundamental Database Concepts Introduction Objectives In this module, the student will learn: 1) Difference between data and information;

More information

Data Warehouse and Mining

Data Warehouse and Mining Data Warehouse and Mining 1. is a subject-oriented, integrated, time-variant, nonvolatile collection of data in support of management decisions. A. Data Mining. B. Data Warehousing. C. Web Mining. D. Text

More information

DATABASE DEVELOPMENT (H4)

DATABASE DEVELOPMENT (H4) IMIS HIGHER DIPLOMA QUALIFICATIONS DATABASE DEVELOPMENT (H4) December 2017 10:00hrs 13:00hrs DURATION: 3 HOURS Candidates should answer ALL the questions in Part A and THREE of the five questions in Part

More information

This tutorial will help computer science graduates to understand the basic-to-advanced concepts related to data warehousing.

This tutorial will help computer science graduates to understand the basic-to-advanced concepts related to data warehousing. About the Tutorial A data warehouse is constructed by integrating data from multiple heterogeneous sources. It supports analytical reporting, structured and/or ad hoc queries and decision making. This

More information

STUDENT LEARNING OBJECTIVES. 1. How does a relational database organize data, and how does it differ from an object-oriented database?

STUDENT LEARNING OBJECTIVES. 1. How does a relational database organize data, and how does it differ from an object-oriented database? Foundations of Business 5 Intelligence: Databases and Information Management C H A P T E R STUDENT LEARNING OBJECTIVES After completing this chapter, you will be able to answer the following questions:

More information

DATA MINING TRANSACTION

DATA MINING TRANSACTION DATA MINING Data Mining is the process of extracting patterns from data. Data mining is seen as an increasingly important tool by modern business to transform data into an informational advantage. It is

More information

The Data Organization

The Data Organization C V I T F E P A O TM The Data Organization Best Practices Metadata Dictionary Application Architecture Prepared by Rainer Schoenrank January 2017 Table of Contents 1. INTRODUCTION... 3 1.1 PURPOSE OF THE

More information

FAQ: Relational Databases in Accounting Systems

FAQ: Relational Databases in Accounting Systems Question 1: What is the definition of a schema as it relates to a database? What are the three levels? Answer 1: A schema describes the logical structure of a database. The three levels of schemas are

More information

Benefits of Automating Data Warehousing

Benefits of Automating Data Warehousing Benefits of Automating Data Warehousing Introduction Data warehousing can be defined as: A copy of data specifically structured for querying and reporting. In most cases, the data is transactional data

More information

Meaning & Concepts of Databases

Meaning & Concepts of Databases 27 th August 2015 Unit 1 Objective Meaning & Concepts of Databases Learning outcome Students will appreciate conceptual development of Databases Section 1: What is a Database & Applications Section 2:

More information

Cisco Gains Real-time Visibility in the Business with SAP HANA

Cisco Gains Real-time Visibility in the Business with SAP HANA Cisco Gains Real-time Visibility in the Business with SAP HANA What You Will Learn When an organization attempts to run itself without real-time visibility into the right data, the results can be lost

More information

Data Management Glossary

Data Management Glossary Data Management Glossary A Access path: The route through a system by which data is found, accessed and retrieved Agile methodology: An approach to software development which takes incremental, iterative

More information

Data, Information, and Databases

Data, Information, and Databases Data, Information, and Databases BDIS 6.1 Topics Covered Information types: transactional vsanalytical Five characteristics of information quality Database versus a DBMS RDBMS: advantages and terminology

More information

CHAPTER 2: DATA MODELS

CHAPTER 2: DATA MODELS CHAPTER 2: DATA MODELS 1. A data model is usually graphical. PTS: 1 DIF: Difficulty: Easy REF: p.36 2. An implementation-ready data model needn't necessarily contain enforceable rules to guarantee the

More information

QM Chapter 1 Database Fundamentals Version 10 th Ed. Prepared by Dr Kamel Rouibah / Dept QM & IS

QM Chapter 1 Database Fundamentals Version 10 th Ed. Prepared by Dr Kamel Rouibah / Dept QM & IS QM 433 - Chapter 1 Database Fundamentals Version 10 th Ed Prepared by Dr Kamel Rouibah / Dept QM & IS www.cba.edu.kw/krouibah Dr K. Rouibah / dept QM & IS Chapter 1 (433) Database fundamentals 1 Objectives

More information

1 DATAWAREHOUSING QUESTIONS by Mausami Sawarkar

1 DATAWAREHOUSING QUESTIONS by Mausami Sawarkar 1 DATAWAREHOUSING QUESTIONS by Mausami Sawarkar 1) What does the term 'Ad-hoc Analysis' mean? Choice 1 Business analysts use a subset of the data for analysis. Choice 2: Business analysts access the Data

More information

CHAPTER 2: DATA MODELS

CHAPTER 2: DATA MODELS Database Systems Design Implementation and Management 12th Edition Coronel TEST BANK Full download at: https://testbankreal.com/download/database-systems-design-implementation-andmanagement-12th-edition-coronel-test-bank/

More information

2. An implementation-ready data model needn't necessarily contain enforceable rules to guarantee the integrity of the data.

2. An implementation-ready data model needn't necessarily contain enforceable rules to guarantee the integrity of the data. Test bank for Database Systems Design Implementation and Management 11th Edition by Carlos Coronel,Steven Morris Link full download test bank: http://testbankcollection.com/download/test-bank-for-database-systemsdesign-implementation-and-management-11th-edition-by-coronelmorris/

More information

The Data Organization

The Data Organization C V I T F E P A O TM The Data Organization 1251 Yosemite Way Hayward, CA 94545 (510) 303-8868 rschoenrank@computer.org Business Intelligence Process Architecture By Rainer Schoenrank Data Warehouse Consultant

More information

IBM InfoSphere Information Analyzer

IBM InfoSphere Information Analyzer IBM InfoSphere Information Analyzer Understand, analyze and monitor your data Highlights Develop a greater understanding of data source structure, content and quality Leverage data quality rules continuously

More information

Cloud Computing. January 2012 CONTENT COMMUNITY CONVERSATION CONVERSION

Cloud Computing. January 2012 CONTENT COMMUNITY CONVERSATION CONVERSION Cloud Computing January 2012 CONTENT COMMUNITY CONVERSATION CONVERSION Purpose and Methodology Survey Sample Field Work December 20, 2011 January 9, 2012 Total Respondents 554 Margin of Error +/- 4.2%

More information

Data warehouse architecture consists of the following interconnected layers:

Data warehouse architecture consists of the following interconnected layers: Architecture, in the Data warehousing world, is the concept and design of the data base and technologies that are used to load the data. A good architecture will enable scalability, high performance and

More information

INTRODUCTORY INFORMATION TECHNOLOGY ENTERPRISE DATABASES AND DATA WAREHOUSES. Faramarz Hendessi

INTRODUCTORY INFORMATION TECHNOLOGY ENTERPRISE DATABASES AND DATA WAREHOUSES. Faramarz Hendessi INTRODUCTORY INFORMATION TECHNOLOGY ENTERPRISE DATABASES AND DATA WAREHOUSES Faramarz Hendessi INTRODUCTORY INFORMATION TECHNOLOGY Lecture 7 Fall 2010 Isfahan University of technology Dr. Faramarz Hendessi

More information

The strategic advantage of OLAP and multidimensional analysis

The strategic advantage of OLAP and multidimensional analysis IBM Software Business Analytics Cognos Enterprise The strategic advantage of OLAP and multidimensional analysis 2 The strategic advantage of OLAP and multidimensional analysis Overview Online analytical

More information

MCQ IN BCOM II SEMESTER MANAGEMENT INFORMTION SYSTEM

MCQ IN BCOM II SEMESTER MANAGEMENT INFORMTION SYSTEM MCQ IN BCOM II SEMESTER MANAGEMENT INFORMTION SYSTEM Multiple choice questions 1. Relational calculus is a a. Procedural language. b. None- Procedural language. c. Data definition language. d. High level

More information

The Evolution of Data Warehousing. Data Warehousing Concepts. The Evolution of Data Warehousing. The Evolution of Data Warehousing

The Evolution of Data Warehousing. Data Warehousing Concepts. The Evolution of Data Warehousing. The Evolution of Data Warehousing The Evolution of Data Warehousing Data Warehousing Concepts Since 1970s, organizations gained competitive advantage through systems that automate business processes to offer more efficient and cost-effective

More information

Data Warehouse and Data Mining

Data Warehouse and Data Mining Data Warehouse and Data Mining Lecture No. 05 Data Modeling Naeem Ahmed Email: naeemmahoto@gmail.com Department of Software Engineering Mehran Univeristy of Engineering and Technology Jamshoro Data Modeling

More information

IBM Software IBM InfoSphere Information Server for Data Quality

IBM Software IBM InfoSphere Information Server for Data Quality IBM InfoSphere Information Server for Data Quality A component index Table of contents 3 6 9 9 InfoSphere QualityStage 10 InfoSphere Information Analyzer 12 InfoSphere Discovery 13 14 2 Do you have confidence

More information

Community Edition. Web User Interface 3.X. User Guide

Community Edition. Web User Interface 3.X. User Guide Community Edition Talend MDM Web User Interface 3.X User Guide Version 3.2_a Adapted for Talend MDM Web User Interface 3.2 Web Interface User Guide release. Copyright This documentation is provided under

More information

Data Warehousing. Overview

Data Warehousing. Overview Data Warehousing Overview Basic Definitions Normalization Entity Relationship Diagrams (ERDs) Normal Forms Many to Many relationships Warehouse Considerations Dimension Tables Fact Tables Star Schema Snowflake

More information

DATABASE MANAGEMENT SYSTEMS. UNIT I Introduction to Database Systems

DATABASE MANAGEMENT SYSTEMS. UNIT I Introduction to Database Systems DATABASE MANAGEMENT SYSTEMS UNIT I Introduction to Database Systems Terminology Data = known facts that can be recorded Database (DB) = logically coherent collection of related data with some inherent

More information

Handout 12 Data Warehousing and Analytics.

Handout 12 Data Warehousing and Analytics. Handout 12 CS-605 Spring 17 Page 1 of 6 Handout 12 Data Warehousing and Analytics. Operational (aka transactional) system a system that is used to run a business in real time, based on current data; also

More information

The Data Organization Yosemite Way Hayward, CA (510) The Data Warehouse Conceptual Data Model

The Data Organization Yosemite Way Hayward, CA (510) The Data Warehouse Conceptual Data Model C V I T F E P A O TM The Data Organization 1251 Yosemite Way Hayward, CA 94545 (510) 303-8868 rschoenrank@computer.org The Data Warehouse Conceptual Data Model By Rainer Schoenrank Data Warehouse Consultant

More information

Introduction to DWML. Christian Thomsen, Aalborg University. Slides adapted from Torben Bach Pedersen and Man Lung Yiu

Introduction to DWML. Christian Thomsen, Aalborg University. Slides adapted from Torben Bach Pedersen and Man Lung Yiu Introduction to DWML Christian Thomsen, Aalborg University Slides adapted from Torben Bach Pedersen and Man Lung Yiu Course Structure Business intelligence Extract knowledge from large amounts of data

More information

Ebook : Overview of application development. All code from the application series books listed at:

Ebook : Overview of application development. All code from the application series books listed at: Ebook : Overview of application development. All code from the application series books listed at: http://www.vkinfotek.com with permission. Publishers: VK Publishers Established: 2001 Type of books: Develop

More information

Accounting Information Systems, 2e (Kay/Ovlia) Chapter 2 Accounting Databases. Objective 1

Accounting Information Systems, 2e (Kay/Ovlia) Chapter 2 Accounting Databases. Objective 1 Accounting Information Systems, 2e (Kay/Ovlia) Chapter 2 Accounting Databases Objective 1 1) One of the disadvantages of a relational database is that we can enter data once into the database, and then

More information

CA ERwin Data Profiler

CA ERwin Data Profiler PRODUCT BRIEF: CA ERWIN DATA PROFILER CA ERwin Data Profiler CA ERWIN DATA PROFILER HELPS ORGANIZATIONS LOWER THE COSTS AND RISK ASSOCIATED WITH DATA INTEGRATION BY PROVIDING REUSABLE, AUTOMATED, CROSS-DATA-SOURCE

More information

CHAPTER 3 Implementation of Data warehouse in Data Mining

CHAPTER 3 Implementation of Data warehouse in Data Mining CHAPTER 3 Implementation of Data warehouse in Data Mining 3.1 Introduction to Data Warehousing A data warehouse is storage of convenient, consistent, complete and consolidated data, which is collected

More information

DATA WAREHOUSE EGCO321 DATABASE SYSTEMS KANAT POOLSAWASD DEPARTMENT OF COMPUTER ENGINEERING MAHIDOL UNIVERSITY

DATA WAREHOUSE EGCO321 DATABASE SYSTEMS KANAT POOLSAWASD DEPARTMENT OF COMPUTER ENGINEERING MAHIDOL UNIVERSITY DATA WAREHOUSE EGCO321 DATABASE SYSTEMS KANAT POOLSAWASD DEPARTMENT OF COMPUTER ENGINEERING MAHIDOL UNIVERSITY CHARACTERISTICS Data warehouse is a central repository for summarized and integrated data

More information

16/06/56. Databases. Databases. Databases The McGraw-Hill Companies, Inc. All rights reserved.

16/06/56. Databases. Databases. Databases The McGraw-Hill Companies, Inc. All rights reserved. Distinguish between the physical and logical views of data. Describe how data is organized: characters, fields, records, tables, and databases. Define key fields and how they are used to integrate data

More information

Databases The McGraw-Hill Companies, Inc. All rights reserved.

Databases The McGraw-Hill Companies, Inc. All rights reserved. Distinguish between the physical and logical views of data. Describe how data is organized: characters, fields, records, tables, and databases. Define key fields and how they are used to integrate data

More information

2 The IBM Data Governance Unified Process

2 The IBM Data Governance Unified Process 2 The IBM Data Governance Unified Process The benefits of a commitment to a comprehensive enterprise Data Governance initiative are many and varied, and so are the challenges to achieving strong Data Governance.

More information

Data Mining Concepts & Techniques

Data Mining Concepts & Techniques Data Mining Concepts & Techniques Lecture No. 01 Databases, Data warehouse Naeem Ahmed Email: naeemmahoto@gmail.com Department of Software Engineering Mehran Univeristy of Engineering and Technology Jamshoro

More information

Accurate study guides, High passing rate! Testhorse provides update free of charge in one year!

Accurate study guides, High passing rate! Testhorse provides update free of charge in one year! Accurate study guides, High passing rate! Testhorse provides update free of charge in one year! http://www.testhorse.com Exam : 70-467 Title : Designing Business Intelligence Solutions with Microsoft SQL

More information

Q1) Describe business intelligence system development phases? (6 marks)

Q1) Describe business intelligence system development phases? (6 marks) BUISINESS ANALYTICS AND INTELLIGENCE SOLVED QUESTIONS Q1) Describe business intelligence system development phases? (6 marks) The 4 phases of BI system development are as follow: Analysis phase Design

More information

Copyright 2016 Datalynx Pty Ltd. All rights reserved. Datalynx Enterprise Data Management Solution Catalogue

Copyright 2016 Datalynx Pty Ltd. All rights reserved. Datalynx Enterprise Data Management Solution Catalogue Datalynx Enterprise Data Management Solution Catalogue About Datalynx Vendor of the world s most versatile Enterprise Data Management software Licence our software to clients & partners Partner-based sales

More information

Lies, Damned Lies and Statistics Using Data Mining Techniques to Find the True Facts.

Lies, Damned Lies and Statistics Using Data Mining Techniques to Find the True Facts. Lies, Damned Lies and Statistics Using Data Mining Techniques to Find the True Facts. BY SCOTT A. BARNES, CPA, CFF, CGMA The adversarial nature of the American legal system creates a natural conflict between

More information

Extending the Value of MDM Through Data Virtualization

Extending the Value of MDM Through Data Virtualization Extending the Value of MDM Through Data Virtualization Perspective on how data virtualization adds business value to MDM implementations Audience Business Stakeholders Line of Business Managers Enterprise

More information

CS614 - Data Warehousing - Midterm Papers Solved MCQ(S) (1 TO 22 Lectures)

CS614 - Data Warehousing - Midterm Papers Solved MCQ(S) (1 TO 22 Lectures) CS614- Data Warehousing Solved MCQ(S) From Midterm Papers (1 TO 22 Lectures) BY Arslan Arshad Nov 21,2016 BS110401050 BS110401050@vu.edu.pk Arslan.arshad01@gmail.com AKMP01 CS614 - Data Warehousing - Midterm

More information

KNGX NOTES INFS1603 [INFS1603] KEVIN NGUYEN

KNGX NOTES INFS1603 [INFS1603] KEVIN NGUYEN 1 [] KEVIN NGUYEN 1 2 TABLE OF CONTENTS Table of Contents...... 2 1. Database Systems........ 3 2. Data Models..... 9 3. The Relational Database Model.......... 18 4. Entity Relationship (ER) Model....

More information

Data Warehouse and Data Mining

Data Warehouse and Data Mining Data Warehouse and Data Mining Lecture No. 07 Terminologies Naeem Ahmed Email: naeemmahoto@gmail.com Department of Software Engineering Mehran Univeristy of Engineering and Technology Jamshoro Database

More information

OLAP Introduction and Overview

OLAP Introduction and Overview 1 CHAPTER 1 OLAP Introduction and Overview What Is OLAP? 1 Data Storage and Access 1 Benefits of OLAP 2 What Is a Cube? 2 Understanding the Cube Structure 3 What Is SAS OLAP Server? 3 About Cube Metadata

More information

Data Warehousing (1)

Data Warehousing (1) ICS 421 Spring 2010 Data Warehousing (1) Asst. Prof. Lipyeow Lim Information & Computer Science Department University of Hawaii at Manoa 3/18/2010 Lipyeow Lim -- University of Hawaii at Manoa 1 Motivation

More information

1. Analytical queries on the dimensionally modeled database can be significantly simpler to create than on the equivalent nondimensional database.

1. Analytical queries on the dimensionally modeled database can be significantly simpler to create than on the equivalent nondimensional database. 1. Creating a data warehouse involves using the functionalities of database management software to implement the data warehouse model as a collection of physically created and mutually connected database

More information

SMB Cloud InsightsTM

SMB Cloud InsightsTM 2015 SMB Cloud InsightsTM CHINA DEFINITIONS Cloud Services Defined This research focuses on the cloud services that matter most to SMBs: IaaS, web presence and web applications, unified communications,

More information

Informatica Enterprise Information Catalog

Informatica Enterprise Information Catalog Data Sheet Informatica Enterprise Information Catalog Benefits Automatically catalog and classify all types of data across the enterprise using an AI-powered catalog Identify domains and entities with

More information

Data Mining & Data Warehouse

Data Mining & Data Warehouse Data Mining & Data Warehouse Associate Professor Dr. Raed Ibraheem Hamed University of Human Development, College of Science and Technology (1) 2016 2017 1 Points to Cover Why Do We Need Data Warehouses?

More information

Caché and Data Management in the Financial Services Industry

Caché and Data Management in the Financial Services Industry Caché and Data Management in the Financial Services Industry Executive Overview One way financial services firms can improve their operational efficiency is to revamp their data management infrastructure.

More information

Improving Data Governance in Your Organization. Faire Co Regional Manger, Information Management Software, ASEAN

Improving Data Governance in Your Organization. Faire Co Regional Manger, Information Management Software, ASEAN Improving Data Governance in Your Organization Faire Co Regional Manger, Information Management Software, ASEAN Topics The Innovation Imperative and Innovating with Information What Is Data Governance?

More information

A WHITE PAPER By Silwood Technology Limited

A WHITE PAPER By Silwood Technology Limited A WHITE PAPER By Silwood Technology Limited Delivering metadata transparency for Enterprise Application packages Executive Summary Enterprise Resource Planning (ERP) packages such as SAP, J.D. Edwards

More information

Chapter 1: Introduction

Chapter 1: Introduction Chapter 1: Introduction Database System Concepts, 6 th Ed. See www.db-book.com for conditions on re-use Outline The Need for Databases Data Models Relational Databases Database Design Storage Manager Query

More information

This tutorial has been prepared for computer science graduates to help them understand the basic-to-advanced concepts related to data mining.

This tutorial has been prepared for computer science graduates to help them understand the basic-to-advanced concepts related to data mining. About the Tutorial Data Mining is defined as the procedure of extracting information from huge sets of data. In other words, we can say that data mining is mining knowledge from data. The tutorial starts

More information

Outline. Managing Information Resources. Concepts and Definitions. Introduction. Chapter 7

Outline. Managing Information Resources. Concepts and Definitions. Introduction. Chapter 7 Outline Managing Information Resources Chapter 7 Introduction Managing Data The Three-Level Database Model Four Data Models Getting Corporate Data into Shape Managing Information Four Types of Information

More information

WHITE PAPER. The truth about data MASTER DATA IS YOUR KEY TO SUCCESS

WHITE PAPER. The truth about data MASTER DATA IS YOUR KEY TO SUCCESS WHITE PAPER The truth about data MASTER DATA IS YOUR KEY TO SUCCESS Master Data is your key to success SO HOW DO YOU KNOW WHAT S TRUE AMONG ALL THE DIFFER- ENT DATA SOURCES AND ACROSS ALL YOUR ORGANIZATIONAL

More information

Business Impacts of Poor Data Quality: Building the Business Case

Business Impacts of Poor Data Quality: Building the Business Case Business Impacts of Poor Data Quality: Building the Business Case David Loshin Knowledge Integrity, Inc. 1 Data Quality Challenges 2 Addressing the Problem To effectively ultimately address data quality,

More information

Management Information System, Selected Topics 1 &2, and Special Topics Questions for Exam Preparation. Spring 2016/2017

Management Information System, Selected Topics 1 &2, and Special Topics Questions for Exam Preparation. Spring 2016/2017 Management Information System, Selected Topics 1 &2, and Special Topics Questions for Exam Preparation. Spring 2016/2017 Chapter 3 1) The interaction between information systems and organizations is influenced

More information

1 Dulcian, Inc., 2001 All rights reserved. Oracle9i Data Warehouse Review. Agenda

1 Dulcian, Inc., 2001 All rights reserved. Oracle9i Data Warehouse Review. Agenda Agenda Oracle9i Warehouse Review Dulcian, Inc. Oracle9i Server OLAP Server Analytical SQL Mining ETL Infrastructure 9i Warehouse Builder Oracle 9i Server Overview E-Business Intelligence Platform 9i Server:

More information

The 360 Solution. July 24, 2014

The 360 Solution. July 24, 2014 The 360 Solution July 24, 2014 Most successful large organizations are organized by lines of businesses (LOBs). This has been a very successful way to organize for the accountability of profit and loss.

More information