Master Data Services Training Guide. Modeling Guidelines. Portions developed by Profisee Group, Inc Microsoft

Size: px
Start display at page:

Download "Master Data Services Training Guide. Modeling Guidelines. Portions developed by Profisee Group, Inc. 2010 Microsoft"

Transcription

1 Master Data Services Training Guide Modeling Guidelines Portions developed by Profisee Group, Inc Microsoft

2 MDM: A Multifaceted Discipline Master Data Management is a multi-faceted discipline that covers a wide range of subject areas from data quality to data governance. The focus of this section and for the entire class is an overview of some of the components and approaches to building a comprehensive and effective master data model in Microsoft SQL Server Master Data Services. 7 :: 2 Master Data Services Training Guide

3 Objectives This section will begin with an overview of the key components of a master data model: Entities Hierarchies: explicit, derived and derived with explicit cap Attributes: domain-based, free-form and file Collections Member types: leaf and consolidated. Following the dive into model components, this section presents suggested guidelines and considerations when creating and deploying master data models: The relationship between entities and attributes When and how to use certain types of hierarchies How to make the most effective use of business rules The benefits of versioning and version frequencies. This section is a useful reference when undertaking a new project or model implementation. Master Data Services Training Guide 7 :: 3

4 Model Components: Entity A Master Data Services database may contain one or more master data models. A model typically represents a common subject area such as customers, products, financial accounts and locations. An entity is the foundation of a Master Data Services model. It represents a list of items often referred to as members or elements that share common characteristics. As examples, an entity City contains a list of cities; an entity Color contains a list of colors. One or more entities reside in model. An attribute, or property, further defines or modifies an entity. For example population is an attribute that further describes a city. An attribute is classified as domain-based, free-form, or file. Free-form attributes are further classified as text, number, date/time, or link. Every entity has, at a minimum, two system attributes: Code and Name. Code is required, must be unique throughout the entity, and often represents the natural key for a source system. Name is optional, but recommended. It further describes the data element and typically appears on reports. 7 :: 4 Master Data Services Training Guide

5 Model Components: Domain-based Attribute One of the three attribute types that you may create is domain-based attributes. A domainbased attribute is an attribute that uses an entity as its data source. For those familiar with relational database theory, an entity is equivalent to a table, an attribute is equivalent to a column in the table. A domain-based attribute is a column that essentially acts as a foreign key. As will be discussed later in this section, domain-based attributes form the basis for derived hierarchies. To further describe domain-based attributes, consider an example of three entities, or tables: 1. States 2. Cities 3. Regions The State entity contains three domain-based attributes: 1. Capital 2. Most Populous 3. Region The list of capitals and most populous cities is derived from City ; the list of regions is from the Region entity. Master Data Services Training Guide 7 :: 5

6 Extending the example a step further, each city is assigned a state or province attribute. The list of available states is derived from the state entity. A more advanced use of domain-based attributes is to create an attribute that refers to the same entity to which the attribute is associated. In this example, Sister City refers to the same list of cities. The term recursive hierarchy is often used to describe this scenario. 7 :: 6 Master Data Services Training Guide

7 Model Components: Free-form Attribute The second type of attribute is free-form. As the name implies, free-form attributes are not restricted to a domain-list. Data entry is restricted to the data type defined when the attribute is created. A free-form attribute is assigned one of the following four data types: 1. Text 2. Numeric 3. Date 4. Link, or URL When assigning or updating attributes, Master Data Services ensures that the data corresponds to the attribute data type. A free-form attribute is equivalent to a standard column in SQL Server. The third attribute type is file. Once defined, it enables users to upload files to Master Data Services. The next section will cover this in more detail. Master Data Services Training Guide 7 :: 7

8 Model Components: Explicit Hierarchies Hierarchies are typically a key component of a model; they form the basis for data analysis and reporting. Browse through a company s annual report; survey an internal managerial report. In both of these scenarios, hierarchies are prevalent and a critical means to display financial data Income Statements, Balance Sheets, sales by territory, etc. One of the key benefits of Master Data Services is the ability to use existing master data elements to create a myriad of different types of hierarchies each designed to support a specific need. Through business rules and other forms of automation, many of the hierarchies are subjected to rigorous business requirements. Master Data Services distinguishes between explicit and derived hierarchies. Each explicit hierarchy is associated with a single entity. The addition of the first explicit hierarchy to an entity introduces consolidated member types. Leaf member types are directly associated with entities. Consolidated members are associated with explicit hierarchies. Consolidated members possess a distinct set of attributes (that are shared across hierarchies). An entity contains zero or more user-defined explicit hierarchies. Explicit hierarchies introduce two system attributes, Code and Name, for consolidated members. Code must be unique throughout the hierarchies and entity. 7 :: 8 Master Data Services Training Guide

9 Hierarchy Definition: Explicit vs. Derived The most important difference to understand between explicit and derived hierarchies is that derived hierarchies are formed via attribute relationships and employ multiple entities. Explicit hierarchies have ragged level depths and reside within a single entity. For those familiar with Microsoft SQL Server Analysis Services (or other multidimensional analysis solutions), explicit hierarchies resemble parent-child hierarchies; derived hierarchies equate to attribute-based or level-based hierarchies. Master Data Services Training Guide 7 :: 9

10 When modeling hierarchies for your master data models, it is critical to invest the time to understand the business and system requirements, so that you select the most efficient hierarchy type. This table depicts further differences between the hierarchy types. 7 :: 10 Master Data Services Training Guide

11 Hierarchy Definition: Derived Hierarchy with an Explicit Cap A derived hierarchy with an explicit cap blends a derived and explicit hierarchy. It is formed by linking related attributes and then connecting an explicit hierarchy at the top. The diagram below illustrates the benefits of using Master Data Services to manage hierarchies. Customers are maintained in a customer entity and each is assigned to a customer group (attribute). The Customers-by-Location derived hierarchy enables you to analyze and report by geography. The derived hierarchy with an explicit cap on the left makes use of the same entity and attributes and then inserts an existing explicit hierarchy. Changes to the underlying data are automatically reflected in both hierarchies. Master Data Services Training Guide 7 :: 11

12 Model Components Recap The next three illustrations put together the individual components of a master data model helping to paint a cohesive picture of how they relate to the other components that make up a model. 7 :: 12 Master Data Services Training Guide

13 Master Data Services Training Guide 7 :: 13

14 Model Development: Preliminary Considerations Having covered the basic components of a model, the remainder of this section will present some general modeling guidelines for consideration during the design and implementation of a Master Data Services model. The following presents a set of proven steps to build and deploy a high-quality master data model using Master Data Services. This approach leverages the power of Master Data Services to avoid some of the more mundane technical data modeling techniques. It encourages model builders to build and populate the model while it is still being designed. Because it is easy to alter and update a model, real data can and should be analyzed and loaded to help validate assumptions. This approach produces documentation of the model and yields a working pilot, prototype or proof of concept. No model exists in isolation. Before building a model it pays to enumerate and agree on the stakeholders and boundaries of the model. An organization may have 20 or more systems that could potentially subscribe to a model. Furthermore, the model could have hundreds of attributes. While it is technically possible to implement a model that feeds this many systems with this many attributes, it is a good idea to limit the scope and set boundaries for the initial model. Master Data Services simplifies the process of adding new attributes and subscriptions, so starting small does not hinder future scalability. 7 :: 14 Master Data Services Training Guide

15 Model Development: Major Steps The below list and diagram illustrate the key steps a Master Data Services modeler should consider during the design phase: 1. Identify entities 2. Define attributes a. Free-form b. Domain-based 3. Identify hierarchies 4. Implement relationships a. Explicit hierarchy b. Derived (domain-based) hierarchy 5. Group attributes The process is typically quite iterative as the model evolves over time. Each step is covered in specific detail in the ensuing sections. Master Data Services Training Guide 7 :: 15

16 Identify Entities and Attributes This is a listing of the major, important entities within a model; for example, department, division and center not gender and postal code. Common domain-based attributes can be listed simply as attributes and don t need to be identified as entities. It is clear that gender or a yes-no flag should be restricted to a domain. 7 :: 16 Master Data Services Training Guide

17 Attribute Definition Master Data Services Training Guide 7 :: 17

18 Identify Relationships Hierarchies are generally easy to identify and difficult to design. Subscribing systems have hierarchal requirements that must be modeled in Master Data Services. It is generally easier to maintain derived hierarchies than explicit hierarchies. If a hierarchy is explicit, it is important to determine if it is complete or not (mandatory or non-mandatory). Some hierarchies do not follow simple rules. These hierarchies must be modeled as collections or synthesized from data from several domains. 7 :: 18 Master Data Services Training Guide

19 Identify Hierarchies Statutory and managerial reports are often good sources for existing hierarchies. Prevailing business intelligence systems and data warehouses are also good candidates to survey. Many retain dimension hierarchies. In many cases it is helpful to interview employees to understand how they analyze the business and market. The interview process often yields unforeseen opportunities for new hierarchies. Master Data Services Training Guide 7 :: 19

20 Implement Relationships 7 :: 20 Master Data Services Training Guide

21 Define Business Rules By building a test model, users will be able to visualize relationships, test assumptions and alter the initial design. A test model will also serve as the platform to build business rules, notifications and user roles. Master Data Services Training Guide 7 :: 21

22 Define Version Management Processes It is unlikely that the initial prototype will be perfect. When reviewing the model, take the time to adjust early assumptions all the way back to attributes and begin to apply user roles and attribute groups. With the initial model completed, the focus can shift to building custom subscriptions (if necessary) and preparing a versioning plan and user-defined flags. 7 :: 22 Master Data Services Training Guide

23 Integrating Master Data Services It s important to identify and design key integration points. This includes data sources, or systems that will populate Master Data Services one-time or recurring. It also includes systems that will subscribe to the Master Data Services model. Master Data Services Training Guide 7 :: 23

24 Other Considerations This concludes some general modeling guidelines. Other points to consider: Data governance is an important component of a successful MDM implementation Adopting common naming conventions and notations is important Carefully define and manage a model s ongoing development as it evolves from development to test to production As noted earlier prototypes and proofs-of-concept are helpful. 7 :: 24 Master Data Services Training Guide

Master Data Services. SQL Server 2012 Books Online

Master Data Services. SQL Server 2012 Books Online Master Data Services SQL Server 2012 Books Online Summary: Master Data Services (MDS) is the SQL Server solution for master data management. Master data management (MDM) describes the efforts made by an

More information

Master Data Services Environment

Master Data Services Environment Master Data Services Training Guide Master Data Services Environment Portions developed by Profisee Group, Inc. 2010 Microsoft Master Data Services Overview Master Data Services Implementation Master Data

More information

Implementing Data Models and Reports with Microsoft SQL Server

Implementing Data Models and Reports with Microsoft SQL Server Course 20466C: Implementing Data Models and Reports with Microsoft SQL Server Course Details Course Outline Module 1: Introduction to Business Intelligence and Data Modeling As a SQL Server database professional,

More information

Implementation & Administration

Implementation & Administration Microsoft SQL Server 2008 R2 Master Data Services: Implementation & Administration Tyler Graham Suzanne Selhorn Mc Grauu Hill New York Chicago San Francisco Lisbon London Madrid Mexico City Milan New Delhi

More information

SQLSaturday#393 Redmond 16 May, 2015. End-to-End SQL Server Master Data Services

SQLSaturday#393 Redmond 16 May, 2015. End-to-End SQL Server Master Data Services SQLSaturday#393 Redmond 16 May, 2015 End-to-End SQL Server Master Data Services Presenter Introduction Peter Myers Independent BI Expert Bitwise Solutions BBus, SQL Server MCSE, MCT, SQL Server MVP (since

More information

An Introduction to Master Data. Carlton B Ramsey @eccentricdba http://www.eccentricdba.com

An Introduction to Master Data. Carlton B Ramsey @eccentricdba http://www.eccentricdba.com An Introduction to Master Data Carlton B Ramsey @eccentricdba http://www.eccentricdba.com About Me Application Developer turned DBA with over a decade of experience in the banking industry. User Group

More information

COURSE SYLLABUS COURSE TITLE:

COURSE SYLLABUS COURSE TITLE: BLUE BUFFALO PRESS LLC 55073A MASTER DATA SERVICES, DATA QUALITY SERVICES WITH SQL 2012-2014 AND EXCEL 1 COURSE SYLLABUS COURSE TITLE: FORMAT: CERTIFICATION EXAMS: 55073A Master Data Services, Data Quality

More information

Logical Modeling for an Enterprise MDM Initiative

Logical Modeling for an Enterprise MDM Initiative Logical Modeling for an Enterprise MDM Initiative Session Code TP01 Presented by: Ian Ahern CEO, Profisee Group Copyright Speaker Bio Started career in the City of London: Management accountant Finance,

More information

Implementing Data Models and Reports with Microsoft SQL Server 20466C; 5 Days

Implementing Data Models and Reports with Microsoft SQL Server 20466C; 5 Days Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Implementing Data Models and Reports with Microsoft SQL Server 20466C; 5

More information

Implementing Data Models and Reports with Microsoft SQL Server 2012 MOC 10778

Implementing Data Models and Reports with Microsoft SQL Server 2012 MOC 10778 Implementing Data Models and Reports with Microsoft SQL Server 2012 MOC 10778 Course Outline Module 1: Introduction to Business Intelligence and Data Modeling This module provides an introduction to Business

More information

BizTalk Server 2006. Business Activity Monitoring. Microsoft Corporation Published: April 2005. Abstract

BizTalk Server 2006. Business Activity Monitoring. Microsoft Corporation Published: April 2005. Abstract BizTalk Server 2006 Business Activity Monitoring Microsoft Corporation Published: April 2005 Abstract This paper provides a detailed description of two new Business Activity Monitoring (BAM) features in

More information

CRGroup Whitepaper: Digging through the Data. www.crgroup.com. Reporting Options in Microsoft Dynamics GP

CRGroup Whitepaper: Digging through the Data. www.crgroup.com. Reporting Options in Microsoft Dynamics GP CRGroup Whitepaper: Digging through the Data Reporting Options in Microsoft Dynamics GP The objective of this paper is to provide greater insight on each of the reporting options available to you within

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

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

SQL Server 2005 Reporting Services (SSRS)

SQL Server 2005 Reporting Services (SSRS) SQL Server 2005 Reporting Services (SSRS) Author: Alex Payne and Brian Welcker Published: May 2005 Summary: SQL Server 2005 Reporting Services is a key component of SQL Server 2005. Reporting Services

More information

IBM Cognos 8 Business Intelligence Analysis Discover the factors driving business performance

IBM Cognos 8 Business Intelligence Analysis Discover the factors driving business performance Data Sheet IBM Cognos 8 Business Intelligence Analysis Discover the factors driving business performance Overview Multidimensional analysis is a powerful means of extracting maximum value from your corporate

More information

Chapter 8 Approaches to System Development

Chapter 8 Approaches to System Development Systems Analysis and Design in a Changing World, sixth edition 8-1 Chapter 8 Approaches to System Development Table of Contents Chapter Overview Learning Objectives Notes on Opening Case and EOC Cases

More information

Microsoft 20466 - Implementing Data Models and Reports with Microsoft SQL Server

Microsoft 20466 - Implementing Data Models and Reports with Microsoft SQL Server 1800 ULEARN (853 276) www.ddls.com.au Microsoft 20466 - Implementing Data Models and Reports with Microsoft SQL Server Length 5 days Price $4070.00 (inc GST) Version C Overview The focus of this five-day

More information

Microsoft. MCSA upgrade to SQL Server 2012 Certification Courseware. www.firebrandtraining.com. Version 1.0

Microsoft. MCSA upgrade to SQL Server 2012 Certification Courseware. www.firebrandtraining.com. Version 1.0 Microsoft MCSA upgrade to SQL Server 2012 Certification Courseware Version 1.0 www.firebrandtraining.com SQL Server 2012 for Data Warehousing Appendix MSCA SQL Server 2012 Upgrade Course 1 2007 Body Temple

More information

SQL Server Master Data Services A Point of View

SQL Server Master Data Services A Point of View SQL Server Master Data Services A Point of View SUBRAHMANYA V SENIOR CONSULTANT SUBRAHMANYA.VENKATAGIRI@WIPRO.COM Abstract Is Microsoft s Master Data Services an answer for low cost MDM solution? Will

More information

Financial Reporting Budgeting Consolidations Financial Modeling

Financial Reporting Budgeting Consolidations Financial Modeling REASONS TO USE XCELLEGEN FOR FINANCIAL REPORTING A natural extension of Microsoft Excel, with a tight integration to an Accounting Intelligent Database Current methodology is time consuming, inaccurate,

More information

Microsoft Dynamics AX 2012 A New Generation in ERP

Microsoft Dynamics AX 2012 A New Generation in ERP A New Generation in ERP Mike Ehrenberg Technical Fellow Microsoft Corporation April 2011 Microsoft Dynamics AX 2012 is not just the next release of a great product. It is, in fact, a generational shift

More information

MICROSOFT DYNAMICS CRM Roadmap. Release Preview Guide. Q4 2011 Service Update. Updated: August, 2011

MICROSOFT DYNAMICS CRM Roadmap. Release Preview Guide. Q4 2011 Service Update. Updated: August, 2011 MICROSOFT DYNAMICS CRM Roadmap Release Preview Guide Q4 2011 Service Update Updated: August, 2011 EXECUTIVE SUMMARY Microsoft has delivered significant innovation and value in customer relationship management

More information

Analysis Services Step by Step

Analysis Services Step by Step Microsoft' Microsoft SQL Server 2008 Analysis Services Step by Step Scott Cameron, Hitachi Consulting Table of Contents Acknowledgments Introduction xi xiii Part I Understanding Business Intelligence and

More information

3/13/2008. Financial Analytics Operational Analytics Master Data Management. March 10, 2008. Looks like you ve got all the data what s the holdup?

3/13/2008. Financial Analytics Operational Analytics Master Data Management. March 10, 2008. Looks like you ve got all the data what s the holdup? Financial Analytics Operational Analytics Master Data Management Master Data Management Adam Hanson Principal, Profisee Group March 10, 2008 Looks like you ve got all the data what s the holdup? 1 MDM

More information

QUALITY CONTROL PROCESS FOR TAXONOMY DEVELOPMENT

QUALITY CONTROL PROCESS FOR TAXONOMY DEVELOPMENT AUTHORED BY MAKOTO KOIZUMI, IAN HICKS AND ATSUSHI TAKEDA JULY 2013 FOR XBRL INTERNATIONAL, INC. QUALITY CONTROL PROCESS FOR TAXONOMY DEVELOPMENT Including Japan EDINET and UK HMRC Case Studies Copyright

More information

Implementing Data Models and Reports with Microsoft SQL Server

Implementing Data Models and Reports with Microsoft SQL Server CÔNG TY CỔ PHẦN TRƯỜNG CNTT TÂN ĐỨC TAN DUC INFORMATION TECHNOLOGY SCHOOL JSC LEARN MORE WITH LESS! Course 20466C: Implementing Data Models and Reports with Microsoft SQL Server Length: 5 Days Audience:

More information

Business Intelligence and Healthcare

Business Intelligence and Healthcare Business Intelligence and Healthcare SUTHAN SIVAPATHAM SENIOR SHAREPOINT ARCHITECT Agenda Who we are What is BI? Microsoft s BI Stack Case Study (Healthcare) Who we are Point Alliance is an award-winning

More information

The Microsoft Business Intelligence 2010 Stack Course 50511A; 5 Days, Instructor-led

The Microsoft Business Intelligence 2010 Stack Course 50511A; 5 Days, Instructor-led The Microsoft Business Intelligence 2010 Stack Course 50511A; 5 Days, Instructor-led Course Description This instructor-led course provides students with the knowledge and skills to develop Microsoft End-to-

More information

Getting Started with Master Data Services

Getting Started with Master Data Services ASPE RESOURCE SERIES Getting Started with Master Data Services Prepared for ASPE by Global Knowledge's Brian D. Egler MCITP, MCT 2010 Real Skills. Real Results. Real IT. in partnership with Getting Started

More information

ARM vs Excel for Large Models

ARM vs Excel for Large Models ARM vs Excel for Large Models August 2003 Why ARM is Better Than Excel/ 1/ hw How is ARM better than Excel for large, complex models? ARM is better than Excel for large models in three major ways ARM s

More information

SQL Server 2012 Business Intelligence Boot Camp

SQL Server 2012 Business Intelligence Boot Camp SQL Server 2012 Business Intelligence Boot Camp Length: 5 Days Technology: Microsoft SQL Server 2012 Delivery Method: Instructor-led (classroom) About this Course Data warehousing is a solution organizations

More information

Master Data Management Enterprise Architecture IT Strategy and Governance

Master Data Management Enterprise Architecture IT Strategy and Governance ? Master Data Management Enterprise Architecture IT Strategy and Governance Intertwining three strategic fields of Information Technology, We help you Get the best out of IT Master Data Management MDM

More information

ON Semiconductor identified the following critical needs for its solution:

ON Semiconductor identified the following critical needs for its solution: Microsoft Business Intelligence Microsoft Office Business Scorecards Accelerator Case study Harnesses the Power of Business Intelligence to Drive Success Execution excellence is an imperative in order

More information

Bringing agility to Business Intelligence Metadata as key to Agile Data Warehousing. 1 P a g e. www.analytixds.com

Bringing agility to Business Intelligence Metadata as key to Agile Data Warehousing. 1 P a g e. www.analytixds.com Bringing agility to Business Intelligence Metadata as key to Agile Data Warehousing 1 P a g e Table of Contents What is the key to agility in Data Warehousing?... 3 The need to address requirements completely....

More information

Microsoft SQL Server Master Data Services Roadmap

Microsoft SQL Server Master Data Services Roadmap Microsoft SQL Server Master Data Services Roadmap Introduction In June 2007, Microsoft announced the acquisition of Stratature, a privately held company based in Alpharetta, Georgia, and a leading provider

More information

Integrating MDM and Business Intelligence

Integrating MDM and Business Intelligence Integrating MDM and Business Intelligence Scott Adams Director, Microsoft Business Intelligence Hitachi Consulting UK 1 9 th September 2014 Radisson Blu Portman 22 Portman Square London W1H 7BG United

More information

SQL Server 2012 Performance White Paper

SQL Server 2012 Performance White Paper Published: April 2012 Applies to: SQL Server 2012 Copyright The information contained in this document represents the current view of Microsoft Corporation on the issues discussed as of the date of publication.

More information

INTRODUCTION PRODUCT PRIORITIES INTEGRATION

INTRODUCTION PRODUCT PRIORITIES INTEGRATION INTRODUCTION In June 2007, Microsoft announced the acquisition of Stratature, a privately held company based in Alpharetta, Georgia, and a leading provider of master data management (MDM) software. This

More information

Agile Business Suite: a 4GL environment for.net developers DEVELOPMENT, MAINTENANCE AND DEPLOYMENT OF LARGE, COMPLEX BACK-OFFICE APPLICATIONS

Agile Business Suite: a 4GL environment for.net developers DEVELOPMENT, MAINTENANCE AND DEPLOYMENT OF LARGE, COMPLEX BACK-OFFICE APPLICATIONS Agile Business Suite: a 4GL environment for.net developers DEVELOPMENT, MAINTENANCE AND DEPLOYMENT OF LARGE, COMPLEX BACK-OFFICE APPLICATIONS In order to ease the burden of application lifecycle management,

More information

Business Value of Microsoft System Center 2012 Configuration Manager

Business Value of Microsoft System Center 2012 Configuration Manager Business Value of Microsoft System Center 2012 Configuration Manager Sponsored by: Microsoft Corporation Publish date: February 2013 Abstract: Microsoft System Center 2012 Configuration Manager ( Configuration

More information

Using Business Intelligence techniques to increase the safety of citizens The Tilburg case. Abstract

Using Business Intelligence techniques to increase the safety of citizens The Tilburg case. Abstract Using Business Intelligence techniques to increase the safety of citizens The Tilburg case Sérgio Pascoal 1, Jorge Barandela 2, Filipe Martins 3, Daniel Silva 4, Miguel Santos 5, Isabel Seruca 6 1) Universidade

More information

SQL Server An Overview

SQL Server An Overview SQL Server An Overview SQL Server Microsoft SQL Server is designed to work effectively in a number of environments: As a two-tier or multi-tier client/server database system As a desktop database system

More information

IBM Cognos TM1 Enterprise Planning, Budgeting and Analytics

IBM Cognos TM1 Enterprise Planning, Budgeting and Analytics Data Sheet IBM Cognos TM1 Enterprise Planning, Budgeting and Analytics Overview Highlights Reduces planning cycles by 75% and reporting from days to minutes Owned and managed by Finance and lines of business

More information

Data Modeling Basics

Data Modeling Basics Information Technology Standard Commonwealth of Pennsylvania Governor's Office of Administration/Office for Information Technology STD Number: STD-INF003B STD Title: Data Modeling Basics Issued by: Deputy

More information

Master data value, delivered.

Master data value, delivered. Master data value, delivered. Master Data Management making the most of information assets Master data consists of the information that is key to the core operations of a business. Master data may include

More information

Course: SharePoint 2013 Business Intelligence

Course: SharePoint 2013 Business Intelligence Course: SharePoint 2013 Business Intelligence Course Length: 3 days Course Code: M55042 Description This three-day instructor-led course provides students with the necessary knowledge to work with all

More information

Tagetik Extends Customer Value with SQL Server 2012

Tagetik Extends Customer Value with SQL Server 2012 Tagetik Extends Customer Value with SQL Server 2012 Author: Dave Kasabian Contributors: Marco Pierallini, Luca Pieretti Published: February 2012 Summary: As the 2011 Microsoft ISV Line of Business partner

More information

SharePoint 2013 Business Intelligence

SharePoint 2013 Business Intelligence Course 55042A: SharePoint 2013 Business Intelligence Course Details Course Outline Module 1: Course Overview This module explains how the class will be structured and introduces course materials and additional

More information

Building Enterprise Planning Application with Kepion Solution Accelerator. based on Microsoft SQL Server Analysis Services

Building Enterprise Planning Application with Kepion Solution Accelerator. based on Microsoft SQL Server Analysis Services Building Enterprise Planning Application with Kepion Solution Accelerator based on Microsoft SQL Server Analysis Services Kepion Planning Solution provides enterprise customers an approach to utilize the

More information

Data warehouse and Business Intelligence Collateral

Data warehouse and Business Intelligence Collateral Data warehouse and Business Intelligence Collateral Page 1 of 12 DATA WAREHOUSE AND BUSINESS INTELLIGENCE COLLATERAL Brains for the corporate brawn: In the current scenario of the business world, the competition

More information

Enhancing Sales and Operations Planning with Forecasting Analytics and Business Intelligence WHITE PAPER

Enhancing Sales and Operations Planning with Forecasting Analytics and Business Intelligence WHITE PAPER Enhancing Sales and Operations Planning with Forecasting Analytics and Business Intelligence WHITE PAPER SAS White Paper Table of Contents Introduction.... 1 Analytics.... 1 Forecast Cycle Efficiencies...

More information

Test Data Management Concepts

Test Data Management Concepts Test Data Management Concepts BIZDATAX IS AN EKOBIT BRAND Executive Summary Test Data Management (TDM), as a part of the quality assurance (QA) process is more than ever in the focus among IT organizations

More information

End to End Microsoft BI with SQL 2008 R2 and SharePoint 2010

End to End Microsoft BI with SQL 2008 R2 and SharePoint 2010 www.etidaho.com (208) 327-0768 End to End Microsoft BI with SQL 2008 R2 and SharePoint 2010 5 Days About This Course This instructor-led course provides students with the knowledge and skills to develop

More information

Chapter 5. Regression Testing of Web-Components

Chapter 5. Regression Testing of Web-Components Chapter 5 Regression Testing of Web-Components With emergence of services and information over the internet and intranet, Web sites have become complex. Web components and their underlying parts are evolving

More information

Project Management and Accounting in Microsoft Dynamics AX 2012

Project Management and Accounting in Microsoft Dynamics AX 2012 Project Management and Accounting in Microsoft Dynamics AX 2012 Streamline project management and give your people the tools they need to complete projects on time and within budget. Project management

More information

Designing Business Intelligence Solutions with Microsoft SQL Server 2012 Course 20467A; 5 Days

Designing Business Intelligence Solutions with Microsoft SQL Server 2012 Course 20467A; 5 Days Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Designing Business Intelligence Solutions with Microsoft SQL Server 2012

More information

Implementing a Data Warehouse with Microsoft SQL Server 2012 MOC 10777

Implementing a Data Warehouse with Microsoft SQL Server 2012 MOC 10777 Implementing a Data Warehouse with Microsoft SQL Server 2012 MOC 10777 Course Outline Module 1: Introduction to Data Warehousing This module provides an introduction to the key components of a data warehousing

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

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

n Assignment 4 n Due Thursday 2/19 n Business paper draft n Due Tuesday 2/24 n Database Assignment 2 posted n Due Thursday 2/26

n Assignment 4 n Due Thursday 2/19 n Business paper draft n Due Tuesday 2/24 n Database Assignment 2 posted n Due Thursday 2/26 Class Announcements TIM 50 - Business Information Systems Lecture 14 Instructor: John Musacchio UC Santa Cruz n Assignment 4 n Due Thursday 2/19 n Business paper draft n Due Tuesday 2/24 n Database Assignment

More information

Managing explicit knowledge using SharePoint in a collaborative environment: ICIMOD s experience

Managing explicit knowledge using SharePoint in a collaborative environment: ICIMOD s experience Managing explicit knowledge using SharePoint in a collaborative environment: ICIMOD s experience I Abstract Sushil Pandey, Deependra Tandukar, Saisab Pradhan Integrated Knowledge Management, ICIMOD {spandey,dtandukar,spradhan}@icimod.org

More information

Relay2 Enterprise Cloud Controller Datasheet

Relay2 Enterprise Cloud Controller Datasheet Relay2 Enterprise Cloud WLAN Network Controller Provides the power of enterprise network services without the complexities and cost of traditional hardware- based Wi- Fi controllers The Relay2 Enterprise

More information

Enterprise 2.0 and SharePoint 2010

Enterprise 2.0 and SharePoint 2010 Enterprise 2.0 and SharePoint 2010 Doculabs has many clients that are investigating their options for deploying Enterprise 2.0 or social computing capabilities for their organizations. From a technology

More information

LEARNING SOLUTIONS website milner.com/learning email training@milner.com phone 800 875 5042

LEARNING SOLUTIONS website milner.com/learning email training@milner.com phone 800 875 5042 Course 20467A: Designing Business Intelligence Solutions with Microsoft SQL Server 2012 Length: 5 Days Published: December 21, 2012 Language(s): English Audience(s): IT Professionals Overview Level: 300

More information

How to Setup SQL Server Replication

How to Setup SQL Server Replication Introduction This document describes a scenario how to setup the Transactional SQL Server Replication. Before we proceed for Replication setup you can read brief note about Understanding of Replication

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

IBM Cognos TM1. Enterprise planning, budgeting and analysis. Highlights. IBM Software Data Sheet

IBM Cognos TM1. Enterprise planning, budgeting and analysis. Highlights. IBM Software Data Sheet IBM Software IBM Cognos TM1 Enterprise planning, budgeting and analysis Highlights Reduces planning cycles by as much as 75% and reporting from days to minutes Owned and managed by Finance and lines of

More information

MOC 20467B: Designing Business Intelligence Solutions with Microsoft SQL Server 2012

MOC 20467B: Designing Business Intelligence Solutions with Microsoft SQL Server 2012 MOC 20467B: Designing Business Intelligence Solutions with Microsoft SQL Server 2012 Course Overview This course provides students with the knowledge and skills to design business intelligence solutions

More information

SharePoint 2013 Business Intelligence Course 55042; 3 Days

SharePoint 2013 Business Intelligence Course 55042; 3 Days Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc SharePoint 2013 Business Intelligence Course 55042; 3 Days Course Description

More information

MS 20467: Designing Business Intelligence Solutions with Microsoft SQL Server 2012

MS 20467: Designing Business Intelligence Solutions with Microsoft SQL Server 2012 MS 20467: Designing Business Intelligence Solutions with Microsoft SQL Server 2012 Description: This five-day instructor-led course teaches students how to design and implement a BI infrastructure. The

More information

Course MS55003A Microsoft SharePoint 2010 Business Intelligence Services

Course MS55003A Microsoft SharePoint 2010 Business Intelligence Services 3 Riverchase Office Plaza Hoover, Alabama 35244 Phone: 205.989.4944 Fax: 855.317.2187 E-Mail: rwhitney@discoveritt.com Web: www.discoveritt.com Course MS55003A Microsoft SharePoint 2010 Business Intelligence

More information

The art of business technology... KnowledgeLEAD. The Knowledge Relationship Management System. A Knowledge Management Business Case

The art of business technology... KnowledgeLEAD. The Knowledge Relationship Management System. A Knowledge Management Business Case CADENZA Inc. The art of business technology... KnowledgeLEAD The Knowledge Relationship Management System A Knowledge Management Business Case Table of Contents Executive Summary The Problem The Solution

More information

Building a Data Quality Scorecard for Operational Data Governance

Building a Data Quality Scorecard for Operational Data Governance Building a Data Quality Scorecard for Operational Data Governance A White Paper by David Loshin WHITE PAPER Table of Contents Introduction.... 1 Establishing Business Objectives.... 1 Business Drivers...

More information

MS-10337 - Updating your Microsoft SQL Server 2008 BI Skills to SQL Server 2008 R2

MS-10337 - Updating your Microsoft SQL Server 2008 BI Skills to SQL Server 2008 R2 MS-10337 - Updating your Microsoft SQL Server 2008 BI Skills to SQL Server 2008 R2 Table of Contents Introduction Audience At Course Completion Prerequisites Microsoft Certified Professional Exams Student

More information

SharePoint 2010 Interview Questions-Architect

SharePoint 2010 Interview Questions-Architect Basic Intro SharePoint Architecture Questions 1) What are Web Applications in SharePoint? An IIS Web site created and used by SharePoint 2010. Saying an IIS virtual server is also an acceptable answer.

More information

How To Manage Project And Portfolio Management In Microsoft Office 2010

How To Manage Project And Portfolio Management In Microsoft Office 2010 Enterprise Project Management SOLUTIONS THAT LAST Challenges in PPM What is a Project? Why Project Management? Challenges in Project and Portfolio Management (PPM) Problems for PM and PPM Leaders Presentation

More information

Case Study. ElegantJ BI Business Intelligence. ElegantJ BI Business Intelligence Implementation for a leading Pharmaceuticals Company in India

Case Study. ElegantJ BI Business Intelligence. ElegantJ BI Business Intelligence Implementation for a leading Pharmaceuticals Company in India ISO 9001:2008 www.elegantjbi.com Get competitive with ElegantJ BI,today.. To learn more about leveraging ElegantJ BI Solutions for your business, please visit our website. Client The client is a leading

More information

Enterprise MDM Logical Modeling

Enterprise MDM Logical Modeling Enterprise MDM Logical Modeling Logical Modeling and Federation in an Enterprise MDM Initiative Tyler Graham, Profisee March 19, 2015 BI04 Presenter Bio Tyler Graham is the Vice President of Industry Solutions

More information

East Asia Network Sdn Bhd

East Asia Network Sdn Bhd Course: Analyzing, Designing, and Implementing a Data Warehouse with Microsoft SQL Server 2014 Elements of this syllabus may be change to cater to the participants background & knowledge. This course describes

More information

Oracle BI 11g R1: Build Repositories

Oracle BI 11g R1: Build Repositories Oracle University Contact Us: 1.800.529.0165 Oracle BI 11g R1: Build Repositories Duration: 5 Days What you will learn This Oracle BI 11g R1: Build Repositories training is based on OBI EE release 11.1.1.7.

More information

SQL SERVER SELF-SERVICE BI WITH MICROSOFT EXCEL

SQL SERVER SELF-SERVICE BI WITH MICROSOFT EXCEL SQL SERVER SELF-SERVICE BI WITH MICROSOFT EXCEL JULY 2, 2015 SLIDE 1 Data Sources OVERVIEW OF AN ENTERPRISE BI SOLUTION Reporting and Analysis Data Cleansi ng Data Models JULY 2, 2015 SLIDE 2 Master Data

More information

The focus of this course is on the SharePoint 2013 business intelligence platform and not on the SQL business intelligence services.

The focus of this course is on the SharePoint 2013 business intelligence platform and not on the SQL business intelligence services. Course Page - Page 1 of 11 SharePoint 2013 Business Intelligence M-55042 Length: 3 days Price: $1,795.00 Course Description This three-day instructor-led course provides students with the necessary knowledge

More information

How To Design A Webbased Dashboard

How To Design A Webbased Dashboard MS 50596A Dashboards for Monitoring, Analyzing and Managing Description: This course is designed to empower the students to effectively design webbased dashboards by utilizing the three main tools for

More information

Netwrix Auditor. Role-Based Access. Version: 7.1 10/27/2015

Netwrix Auditor. Role-Based Access. Version: 7.1 10/27/2015 Netwrix Auditor Role-Based Access Version: 7.1 10/27/2015 Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment from Netwrix Corporation

More information

Business Benefits From Microsoft SQL Server Business Intelligence Solutions How Can Business Intelligence Help You? PTR Associates Limited

Business Benefits From Microsoft SQL Server Business Intelligence Solutions How Can Business Intelligence Help You? PTR Associates Limited Business Benefits From Microsoft SQL Server Business Intelligence Solutions How Can Business Intelligence Help You? www.ptr.co.uk Business Benefits From Microsoft SQL Server Business Intelligence (September

More information

A Monitored Student Testing Application Using Cloud Computing

A Monitored Student Testing Application Using Cloud Computing A Monitored Student Testing Application Using Cloud Computing R. Mullapudi and G. Hsieh Department of Computer Science, Norfolk State University, Norfolk, Virginia, USA r.mullapudi@spartans.nsu.edu, ghsieh@nsu.edu

More information

IBM Cognos 8 Controller Financial consolidation, reporting and analytics drive performance and compliance

IBM Cognos 8 Controller Financial consolidation, reporting and analytics drive performance and compliance Data Sheet IBM Cognos 8 Controller Financial consolidation, reporting and analytics drive performance and compliance Overview Highlights: Provides all financial and management consolidation capabilities

More information

Writers: Joanne Hodgins, Omri Bahat, Morgan Oslake, and Matt Hollingsworth

Writers: Joanne Hodgins, Omri Bahat, Morgan Oslake, and Matt Hollingsworth SQL Server Technical Article Writers: Joanne Hodgins, Omri Bahat, Morgan Oslake, and Matt Hollingsworth Technical Reviewer: Dan Jones Published: August 2009 Applies to: SQL Server 2008 R2, August CTP Summary:

More information

Fleet Logistics Optimiser

Fleet Logistics Optimiser Fleet Logistics Optimiser Introducing FLO What is FLO? OPSI Systems Fleet Logistic Optimiser (FLO) is a powerful fleet scheduling optimisation system for secondary distribution that incorporates route

More information

SharePoint 2013 PerformancePoint Services

SharePoint 2013 PerformancePoint Services 3 Riverchase Office Plaza Hoover, Alabama 35244 Phone: 205.989.4944 Fax: 855.317.2187 E-Mail: rwhitney@discoveritt.com Web: www.discoveritt.com Course 55057A: SharePoint 2013 PerformancePoint Services

More information

SAP BusinessObjects Business Intelligence (BOBI) 4.1

SAP BusinessObjects Business Intelligence (BOBI) 4.1 SAP BusinessObjects Business Intelligence (BOBI) 4.1 SAP BusinessObjects BI (also known as BO or BOBJ) is a suite of front-end applications that allow business users to view, sort and analyze business

More information

Microsoft End to End Business Intelligence Boot Camp

Microsoft End to End Business Intelligence Boot Camp Microsoft End to End Business Intelligence Boot Camp Längd: 5 Days Kurskod: M55045 Sammanfattning: This five-day instructor-led course is a complete high-level tour of the Microsoft Business Intelligence

More information

Products Financial Accounting for DNA

Products Financial Accounting for DNA Products Financial Accounting for DNA A Comprehensive Financial Information Management Suite of Solutions That Streamline Accounting Processes and Improve Decision-Making Products Sound financial accounting

More information

The role of integrated requirements management in software delivery.

The role of integrated requirements management in software delivery. Software development White paper October 2007 The role of integrated requirements Jim Heumann, requirements evangelist, IBM Rational 2 Contents 2 Introduction 2 What is integrated requirements management?

More information

Microsoft Project 2010 builds on the Microsoft Project 2007 foundation with flexible work management solutions and the right collaboration tools for

Microsoft Project 2010 builds on the Microsoft Project 2007 foundation with flexible work management solutions and the right collaboration tools for Microsoft Project 2010 builds on the Microsoft Project 2007 foundation with flexible work management solutions and the right collaboration tools for occasional and professional project managers. Project

More information

Reporting Services. White Paper. Published: August 2007 Updated: July 2008

Reporting Services. White Paper. Published: August 2007 Updated: July 2008 Reporting Services White Paper Published: August 2007 Updated: July 2008 Summary: Microsoft SQL Server 2008 Reporting Services provides a complete server-based platform that is designed to support a wide

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 Copyright 2011 Pearson Education, Inc. Student Learning Objectives How does a relational database organize data,

More information

A fresh approach to accelerating the Financial Close

A fresh approach to accelerating the Financial Close A fresh approach to accelerating the Financial Close What does the Cloud CFO solution provide? For group finance facing the chore of a slow manual consolidation process using spreadsheets, Cloud CFO offers

More information

SharePoint 2013 PerformancePoint Services Course 55057; 3 Days

SharePoint 2013 PerformancePoint Services Course 55057; 3 Days Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc SharePoint 2013 PerformancePoint Services Course 55057; 3 Days Course Description

More information