Best practices for Web Intelligence report performance

Size: px
Start display at page:

Download "Best practices for Web Intelligence report performance"

Transcription

1 Best practices for Web Intelligence report performance Matthew Shaw,

2 Best practices for Web Intelligence report performance Performance is key for user adoption Users expect fast response times After a certain time, users give up/cancel the task they were doing A variety of factors influence Web Intelligence performance System configuration Report design: do not build monster reports Semantic layer configuration and query design Workflows: using the cache and scheduling reports

3 Tips for better Web Intelligence performance #1 - A fast running applet #2 - Steer clear of monster reports #3 - Utilize report linking #4 - Report design best practices #5 - Semantic layer best practices #6 - Know the architecture differences #7 - Stick to a schedule #8 - Server sizing for optimal performance

4 #1 Tips for a fast running applet Everyone hates waiting around for an application to load. Some Java updates can wreak havoc on load time of the Web Intelligence applet Three issues that arise a lot are covered in the next few slides: Online Certificate Revocation checks causing delays New JRE security changes that cause issues and delays Applet comprised of over 60 JAR files, causing many security checks

5 Online Certificate Revocation Checks (1/2) Newer JRE versions automatically check for revoked certificates online! This happens for each JAR file (60+ in BI 4.0) Internet connection speed plays a major factor Can add several minutes on to load times

6 Online Certificate Revocation Checks (2/2) Tips Use only CRLs or choose the Do not check option in the Java Control Panel Test On & Off for Timing differences Can use the Java Console to analyze Read this WIKI for more Details See KBA

7 JRE Security Changes Cause Issues Oracle has tightened up security requirements for applets New JRE versions are released much quicker than our patches in some cases List of known issues and resolutions can be found here: Web Intelligence and Oracle JRE Known Issues

8 Reducing the # of JAR files loaded (1/2) BI 4.0 introduced a new architecture for the Web Intelligence applet Previous versions were a single JAR file ThinCadenza.jar BI 4.0 split this into 60+ individual JARs for easier development and updating New JAVA security updates are not friendly to this architecture

9 Reducing the # of JAR files loaded (2/2) Recommendation: Upgrade to BI 4.1 SP03+ This goes back to the older architecture model and contains a single jar for the applet webiapplet.jar is the new name (webiapplet_en.jar is the resource file that accompanies) Advantage of only 1 security check, 1 cache check. Generally improves performance by a lot! NOTE: It is a 44 MB JAR file. Can take a while to load the first time

10 Other JRE Tweaks Visit the WIKI for some more JRE Client Side tweaks: Ensuring your JRE caching is enabled Ensuring the Java next-generation plug-in is used Tests you can run to find out where the bottlenecks are for slower load times Tips for Fine Tuning Performance for the Webi Applet Interface

11 Tip #2 Steer clear of monster reports

12 Large documents can mean wasted time If only 10-20% of a large document is utilized, 80-90% is waste Avoid using a large # of reports within a document 10 reports per document is a reasonable number Do not exceed 20 reports per document Don t try to account for all scenarios but rather focus on specific scenarios that add value to the consumer 50,000 rows per document is a reasonable number Do not exceed 500,000 rows per document

13 Focus on the Business Need Creating smaller documents for specific business needs allows for faster runtime and analysis Start with the individual business need and build a document based on that need

14 Create smaller, reusable documents By creating smaller, reusable documents you: Reduce the time it takes to load the document in the viewer Reduce the refresh time Reduce the system resources needed on both the client and server side Improve the performance while modifying the document

15 Tip #3 Utilize Report Linking

16 Use Report Linking Instead of using HUGE documents, consider using smaller documents and linking them together! Link reports together using OpenDocument linking and a combination of Prompts and Filters Hyperlink wizard available in HTML interface makes this really simple! This removes performance hits for unnecessary parts of the report Higher design-time costs but better performance for the end user

17 Report Linking Use Case Use Case for Report Linking: Report A is a summary report that summarizes the sales for all 100 sites of Company XYZ Report A is scheduled to run each night and take ~20 minutes to complete Users can view the latest instance of Report A which takes only a few seconds to load Users can drill down into Site data for each of the 100 sites which launches a 2 nd report that displays only the site data for the site they drilled on

18 Tip#4 Report Design Best Practices

19 Limit the number of Data Providers used Best Practice from the field is to use no more than 15 Data Providers per document Data providers run serially so run times add up Refresh time and merging of dimensions can cause some big delays on the Processing Server side Using a Data Warehouse to consolidate sources and ETL tools to produce better reporting sources is a better practice

20 Don t accidentally disable your cache! Web Intelligence has great caching mechanisms for documents that have already been viewed Cache improves load time of documents Using functions such as the ones below means that cache will never be used CurrentTime() CurrentDate() UserName() These functions require updates to the cached files so they have to be regenerated

21 Avoid Auto-Fit When Possible! When used, it forces the full document to be calculated during navigation This can make navigating a report much slower Can make things especially slow when jumping to the last page of a large report

22 Avoid Charts with Many Data Points CVOM is the new charting engine we use in BI 4.x This is hosted by the APS server Visualization Service CVOM is better at creating a large # of smaller charts than creating large ones with many data points May be more efficient to use smaller, more specific charts than huge ones

23 Avoid Nested Sections Nested sections can contribute to performance degradation issues This is especially true if conditions are used such as Hide section when the following is empty

24 Test Query Drill for Drill Down Reports Option called Use query drill in the report properties Modifies the underlying query when drilling. Utilizing the database instead of local data Reduces the amount of data stored locally for a drill session. Can improve performance. Best to test both modes to compare

25 Limit use of Scope of Analysis Scope of Analysis is used to retrieve extra data from the database This extra data is stored in the cube for drill down requests This is great feature but has a performance impact Could utilize the Report Linking for similar results and an ondemand data fetch Tip: BI Launchpad preferences for Web Intelligence allow you to be prompted when Drilling needs more data

26 Formula Best Practices for Performance ForEach and ForAll should only be used when really necessary. Use IN when possible instead Where operator can also take longer to process behind the scenes. Using If Then Else may be better Factorizing variables reduces overhead for calculation engine. For example: vs v_sales = [MeasureA] + [MeasureB] v_salesest = [v_sales] + [MeasureC] v_salesest = [MeasureA] + [MeasureB] + [MeasureC]

27 Tip#5 Semantic Layer Best Practices

28 Build lean queries for your documents Start with the document needs and build your queries specific to these Too often we see mega queries/universes that account for every possible need Obviously this is convenient for report designers, but the consumers pay the price Purpose of a semantic layer is to simplify the querying of data TIP: Build queries that only contain objects used in the document(s)

29 Array Fetch Size Optimization (1/2) Array Fetch Size sets the maximum number of rows with each fetch from the database Tuning this size for your environment can greatly impact performance Set at the Universe Connection level INTERNAL TESTING AFS Time Records Throughput / second / second / second Optim / second

30 Array Fetch Size Optimization (2/2) Optimized by default for new Connections DISABLE_ARRAY_FETCH_SIZE_OPTIMIZATION parameter can be used to disable the optimization** If you wish to override the optimized values, you must set the above parameter to Yes in IDT/UDT Information Design Tool Guide (Chapter ) covers this option

31 Query Filters instead of Report Filters Query Filters modify the SQL query to restrict the data fetched and displayed Report Filters only modify the displayed data Example: A report returns a years worth of data. The consumer is only interested in January data Using a Query Filter, the WHERE clause is modified so that only January data is fetched by the query. Using a Report Filter to show only January data simply filters the data that is displayed. The full year s worth of data is still in the underlying cube

32 Ensure Query Stripping is utilized Query Stripping is new to BI 4.x. Strips away unused objects from the query Can now be utilized for relational database as well as BICS based reports (BI4.1 SP3 and up) Has to be turned on at the Report, Query and Universe levels BICS connections use stripping by default

33 More on Query Stripping For Relational DBs, following parameters must be set: Allow Query Stripping option selected in Business Layer Enable Query Stripping option selected in Query Properties of the Webi Document Enable Query Stripping option select in Document Properties of the Webi Document USE_ENHANCED_QUERY_STRIPPING parameter only optimizes the SELECT and GROUP BY clauses but doesn t modify the joins and other clauses

34 Only merge dimensions that are needed Merging dimensions is necessary in many cases This has a performance impact as logic has to be applied to create a merged dataset Unmerge dimensions that are not needed in a document to save some time

35 Tip #6 - Know the Architecture Differences

36 32-bit vs 64-bit Processing Servers (1/2) XI 3.1 and below were fully 32-bit programs BI 4.x introduces many new 64-bit servers Main advantage is increased resource allocation with 64-bit architecture No more 2GB memory limitations for WebI Processing Servers Can utilize 64-bit client drivers Changes some of the sizing recommendations

37 32-bit vs 64-bit Processing Servers (2/2) New 64-bit processes in BI 4.x Web Intelligence Processing Server Adaptive Processing Server Adaptive Job Server Connection Server (64-bit in most cases) Central Management Server (CMS) File Servers Tomcat/Application Servers (64-bit JVM support) A few 32-bit processes Connection Server (32-bit on some Windows) Web Intelligence Rich Client Universe Designer / Information Design Tool

38 Know which servers are involved! Key to identifying a bottleneck is isolating the cause of the slowdown WebI documents can utilize many servers for processing Adaptive Processing Server (DSL Bridge) Adaptive Processing Server (Adaptive Connectivity) Adaptive Processing Server (Visualization Service) Connection Server 32-bit Web Intelligence Processing Server Case and Point BI 4.x Architecture Diagram

39 Learn these Web Intelligence Workflows Interactive Diagrams are available to help you learn about the servers that are involved View a Webi document on-demand link Refresh a doc in two-tier mode link Refresh a doc in three-tier mode link Refresh a doc based on multisource universe link Refresh a doc based on a dimensional universe link Run a scheduled Webi document link

40 Tip #7 Stick to a Schedule

41 Why Use Scheduling? Scheduling allows lower user wait time when implemented correctly Allows you to offset processing to non-peak times Can help distribute load and reduce sizing requirements for concurrent users Reduces impact on database during peak times

42 Tips on Scheduling Web Intelligence Documents Best practice is to schedule any report that takes over 5 minutes to refresh Allow power users to schedule reports On-Demand if needed You can use Report Linking + Scheduled Instances to strike a balance between view time and age of data Use the cache settings to pre-cache XLS/PDF

43 Tip #8 Server sizing for optimal performance

44 Sizing for Performance BI 4.x is not sized for performance out of the box 64-bit processing servers changes the game vs 3.1 Adaptive Processing Server is heavily utilized now Refer to Sizing Companion Guide for details

45 Sizing Things to know for Web Intelligence 64-bit Webi Processing Server means no more memory limitations May no longer need exactly 1 WIPS process per CPU core. Large scale test on 24 core machine had just 5 WIPS. Adaptive Processing Server (APS) is heavily used for some WebI workflows BICS connections utilize DSL Bridge Service UNX Universes use DSL Bridge Service Charting uses Visualization Service MSU uses Data Federation Service Use System Configuration Wizard to help split the APS

46 Sizing Things to know for Web Intelligence Location can make a big difference Ideally place your Processing Tier near your database This is where most of the data transfer will occur Use a fast connection between the WebI server and your database Using local storage for Cache and Temp directories can improve performance Local storage is generally much faster I/O than network storage CPU speed DOES matter! More relevant on older hardware but 1200Mhz processors, even if there are 128 cores, will process documents slower

47 Tips for better Web Intelligence performance #1 - A fast running applet #2 - Steer clear of monster reports #3 - Utilize report linking #4 - Report design best practices #5 - Semantic layer best practices #6 - Know the architecture differences #7 - Stick to a schedule #8 - Server sizing for optimal performance

48 Thank you Contact Matthew Shaw,

10 Tips for Optimizing the Performance of your Web Intelligence Reports. Jonathan Brown - SAP SESSION CODE: 0902

10 Tips for Optimizing the Performance of your Web Intelligence Reports. Jonathan Brown - SAP SESSION CODE: 0902 10 Tips for Optimizing the Performance of your Web Intelligence Reports Jonathan Brown - SAP SESSION CODE: 0902 LEARNING POINTS Find out about the common issues SAP Product Support gets asked on a regular

More information

Crank Your BI Performance up to 11 - Sizing, Tuning & Performance Testing. Innovation Center Network, Silicon Valley Active Global Support

Crank Your BI Performance up to 11 - Sizing, Tuning & Performance Testing. Innovation Center Network, Silicon Valley Active Global Support Crank Your BI Performance up to 11 - Sizing, Tuning & Performance Testing James Rapp Jonathan Brown Innovation Center Network, Silicon Valley Active Global Support How-To Live Example Existing Patterns

More information

BICS Connectivity for Web Intelligence in SAP BI 4.0

BICS Connectivity for Web Intelligence in SAP BI 4.0 September 10-13, 2012 Orlando, Florida BICS Connectivity for Web Intelligence in SAP BI 4.0 John Mrozek Introduction Business Intelligence Consumer Services connectivity for Web Intelligence in SAP BI

More information

SAP BO 4.1 COURSE CONTENT

SAP BO 4.1 COURSE CONTENT Data warehousing/dimensional modeling/ SAP BW 7.0 Concepts 1. OLTP vs. OLAP 2. Types of OLAP 3. Multi Dimensional Modeling Of SAP BW 7.0 4. SAP BW 7.0 Cubes, DSO s,multi Providers, Infosets 5. Business

More information

SAP BusinessObjects BI. Sizing Guide

SAP BusinessObjects BI. Sizing Guide SAP BusinessObjects BI 4 Sizing Guide 20 February 2014 Contents Who should use this document?... 6 What You Need to Know... 6 Get the Latest Version of this Document... 6 Pre-Sizing Checklist... 7 Post-Sizing

More information

SAP BusinessObjects BI4 Sizing What You Need to Know

SAP BusinessObjects BI4 Sizing What You Need to Know SAP BusinessObjects BI4 Sizing What You Need to Know Ian Treleaven Senior Portfolio Product Owner, BI Suite P&R, Enterprise Deployment SAP Product Group, Vancouver, Canada Session 0509 Disclaimer This

More information

Tips and tricks for using SAP BusinessObjects Web Intelligence with SAP BW

Tips and tricks for using SAP BusinessObjects Web Intelligence with SAP BW Orange County Convention Center Orlando, Florida May 15-18, 2011 Tips and tricks for using SAP BusinessObjects Web Intelligence with SAP BW Deepu Sasidharan ] [ Agenda Introduction System Landscape Advanced

More information

Cognos Performance Troubleshooting

Cognos Performance Troubleshooting Cognos Performance Troubleshooting Presenters James Salmon Marketing Manager James.Salmon@budgetingsolutions.co.uk Andy Ellis Senior BI Consultant Andy.Ellis@budgetingsolutions.co.uk Want to ask a question?

More information

SAP Business Objects BO BI 4.1

SAP Business Objects BO BI 4.1 SAP Business Objects BO BI 4.1 SAP Business Objects (a.k.a. BO, BOBJ) is an enterprise software company, specializing in business intelligence (BI). Business Objects was acquired in 2007 by German company

More information

SQL Server Business Intelligence on HP ProLiant DL785 Server

SQL Server Business Intelligence on HP ProLiant DL785 Server SQL Server Business Intelligence on HP ProLiant DL785 Server By Ajay Goyal www.scalabilityexperts.com Mike Fitzner Hewlett Packard www.hp.com Recommendations presented in this document should be thoroughly

More information

Charl du Buisson Charl du Buisson Britehouse Specialist SAP Division

Charl du Buisson Charl du Buisson Britehouse Specialist SAP Division Business Objects 4.0 Upgrade Lessons Learned Charl du Buisson Charl du Buisson Britehouse Specialist SAP Division Agenda Our Reasons to upgrade to BOBJ 4.0 Lessons Upgrade strategy Was the Wait for Service

More information

Monitor and Manage Your MicroStrategy BI Environment Using Enterprise Manager and Health Center

Monitor and Manage Your MicroStrategy BI Environment Using Enterprise Manager and Health Center Monitor and Manage Your MicroStrategy BI Environment Using Enterprise Manager and Health Center Presented by: Dennis Liao Sales Engineer Zach Rea Sales Engineer January 27 th, 2015 Session 4 This Session

More information

BI4.x Architecture SAP CEG & GTM BI

BI4.x Architecture SAP CEG & GTM BI BI4.x Architecture SAP CEG & GTM BI Planning, deployment, configuration 2015 SAP SE or an SAP affiliate company. All rights reserved. Internal Public 2 What are the conceptual tiers in a BIPlatform? 2015

More information

SAP BO 4.1 Online Training

SAP BO 4.1 Online Training WWW.ARANICONSULTING.COM SAP BO 4.1 Online Training Arani consulting 2014 A R A N I C O N S U L T I N G, H Y D E R A B A D, I N D I A SAP BO 4.1 Training Topics In this training, attendees will learn: Data

More information

Data warehousing/dimensional modeling/ SAP BW 7.3 Concepts

Data warehousing/dimensional modeling/ SAP BW 7.3 Concepts Data warehousing/dimensional modeling/ SAP BW 7.3 Concepts 1. OLTP vs. OLAP 2. Types of OLAP 3. Multi Dimensional Modeling Of SAP BW 7.3 4. SAP BW 7.3 Cubes, DSO's,Multi Providers, Infosets 5. Business

More information

Top 10 Performance Tips for OBI-EE

Top 10 Performance Tips for OBI-EE Top 10 Performance Tips for OBI-EE Narasimha Rao Madhuvarsu L V Bharath Terala October 2011 Apps Associates LLC Boston New York Atlanta Germany India Premier IT Professional Service and Solution Provider

More information

Enterprise Performance Tuning: Best Practices with SQL Server 2008 Analysis Services. By Ajay Goyal Consultant Scalability Experts, Inc.

Enterprise Performance Tuning: Best Practices with SQL Server 2008 Analysis Services. By Ajay Goyal Consultant Scalability Experts, Inc. Enterprise Performance Tuning: Best Practices with SQL Server 2008 Analysis Services By Ajay Goyal Consultant Scalability Experts, Inc. June 2009 Recommendations presented in this document should be thoroughly

More information

Performance rule violations usually result in increased CPU or I/O, time to fix the mistake, and ultimately, a cost to the business unit.

Performance rule violations usually result in increased CPU or I/O, time to fix the mistake, and ultimately, a cost to the business unit. Is your database application experiencing poor response time, scalability problems, and too many deadlocks or poor application performance? One or a combination of zparms, database design and application

More information

SAP Business Objects XIR3.0/3.1, BI 4.0 & 4.1 Course Content

SAP Business Objects XIR3.0/3.1, BI 4.0 & 4.1 Course Content SAP Business Objects XIR3.0/3.1, BI 4.0 & 4.1 Course Content SAP Business Objects Web Intelligence and BI Launch Pad 4.0 Introducing Web Intelligence BI launch pad: What's new in 4.0 Customizing BI launch

More information

An Oracle White Paper July 2011. Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide

An Oracle White Paper July 2011. Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide An Oracle White Paper July 2011 1 Disclaimer The following is intended to outline our general product direction.

More information

Exceptions to the Rule: Essbase Design Principles That Don t Always Apply

Exceptions to the Rule: Essbase Design Principles That Don t Always Apply Exceptions to the Rule: Essbase Design Principles That Don t Always Apply Edward Roske, CEO Oracle ACE Director info@interrel.com BLOG: LookSmarter.blogspot.com WEBSITE: www.interrel.com TWITTER: Eroske

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

Crystal Reports Server 2008

Crystal Reports Server 2008 Revision Date: July 2009 Crystal Reports Server 2008 Sizing Guide Overview Crystal Reports Server system sizing involves the process of determining how many resources are required to support a given workload.

More information

QLIKVIEW ARCHITECTURE AND SYSTEM RESOURCE USAGE

QLIKVIEW ARCHITECTURE AND SYSTEM RESOURCE USAGE QLIKVIEW ARCHITECTURE AND SYSTEM RESOURCE USAGE QlikView Technical Brief April 2011 www.qlikview.com Introduction This technical brief covers an overview of the QlikView product components and architecture

More information

Toad for Oracle 8.6 SQL Tuning

Toad for Oracle 8.6 SQL Tuning Quick User Guide for Toad for Oracle 8.6 SQL Tuning SQL Tuning Version 6.1.1 SQL Tuning definitively solves SQL bottlenecks through a unique methodology that scans code, without executing programs, to

More information

Oracle Primavera P6 Enterprise Project Portfolio Management Performance and Sizing Guide. An Oracle White Paper October 2010

Oracle Primavera P6 Enterprise Project Portfolio Management Performance and Sizing Guide. An Oracle White Paper October 2010 Oracle Primavera P6 Enterprise Project Portfolio Management Performance and Sizing Guide An Oracle White Paper October 2010 Disclaimer The following is intended to outline our general product direction.

More information

BI 4.1 Quick Start Guide

BI 4.1 Quick Start Guide BI 4.1 Quick Start Guide BI 4.1 Quick Start Guide... 1 Introduction... 4 Logging in... 4 Home Screen... 5 Documents... 6 Preferences... 8 Setting Up Preferences to Display Public Folders... 10 Web Intelligence...

More information

Rational Application Developer Performance Tips Introduction

Rational Application Developer Performance Tips Introduction Rational Application Developer Performance Tips Introduction This article contains a series of hints and tips that you can use to improve the performance of the Rational Application Developer. This article

More information

Sage Intelligence Financial Reporting for Sage ERP X3 Version 6.5 Installation Guide

Sage Intelligence Financial Reporting for Sage ERP X3 Version 6.5 Installation Guide Sage Intelligence Financial Reporting for Sage ERP X3 Version 6.5 Installation Guide Table of Contents TABLE OF CONTENTS... 3 1.0 INTRODUCTION... 1 1.1 HOW TO USE THIS GUIDE... 1 1.2 TOPIC SUMMARY...

More information

SQL Server 2008 Performance and Scale

SQL Server 2008 Performance and Scale SQL Server 2008 Performance and Scale White Paper Published: February 2008 Updated: July 2008 Summary: Microsoft SQL Server 2008 incorporates the tools and technologies that are necessary to implement

More information

SAP BUSINESS OBJECTS BO BI 4.1 amron

SAP BUSINESS OBJECTS BO BI 4.1 amron 0 Training Details Course Duration: 65 hours Training + Assignments + Actual Project Based Case Studies Training Materials: All attendees will receive, Assignment after each module, Video recording of

More information

Optimizing the Performance of the Oracle BI Applications using Oracle Datawarehousing Features and Oracle DAC 10.1.3.4.1

Optimizing the Performance of the Oracle BI Applications using Oracle Datawarehousing Features and Oracle DAC 10.1.3.4.1 Optimizing the Performance of the Oracle BI Applications using Oracle Datawarehousing Features and Oracle DAC 10.1.3.4.1 Mark Rittman, Director, Rittman Mead Consulting for Collaborate 09, Florida, USA,

More information

BICS Connectivity for Web Intelligence in SAP BI 4.0. John Mrozek / AGS December 01, 2011

BICS Connectivity for Web Intelligence in SAP BI 4.0. John Mrozek / AGS December 01, 2011 BICS Connectivity for Web Intelligence in SAP BI 4.0 John Mrozek / AGS December 01, 2011 Introduction Business Intelligence Consumer Services connectivity for Web Intelligence in SAP BI 4.0 This presentation

More information

InfoView User s Guide. BusinessObjects Enterprise XI Release 2

InfoView User s Guide. BusinessObjects Enterprise XI Release 2 BusinessObjects Enterprise XI Release 2 InfoView User s Guide BusinessObjects Enterprise XI Release 2 Patents Trademarks Copyright Third-party contributors Business Objects owns the following U.S. patents,

More information

Oracle BI Suite Enterprise Edition

Oracle BI Suite Enterprise Edition Oracle BI Suite Enterprise Edition Optimising BI EE using Oracle OLAP and Essbase Antony Heljula Technical Architect Peak Indicators Limited Agenda Overview When Do You Need a Cube Engine? Example Problem

More information

BusinessObjects Enterprise InfoView User's Guide

BusinessObjects Enterprise InfoView User's Guide BusinessObjects Enterprise InfoView User's Guide BusinessObjects Enterprise XI 3.1 Copyright 2009 SAP BusinessObjects. All rights reserved. SAP BusinessObjects and its logos, BusinessObjects, Crystal Reports,

More information

SAP BusinessObjects Business Intelligence Platform Document Version: 4.1 Support Package 5-2014-11-06. Business Intelligence Launch Pad User Guide

SAP BusinessObjects Business Intelligence Platform Document Version: 4.1 Support Package 5-2014-11-06. Business Intelligence Launch Pad User Guide SAP BusinessObjects Business Intelligence Platform Document Version: 4.1 Support Package 5-2014-11-06 Business Intelligence Launch Pad User Guide Table of Contents 1 Document history....7 2 Getting started

More information

SAP BusinessObjects Dashboards

SAP BusinessObjects Dashboards SAP BusinessObjects Dashboards Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase decision. This presentation is not subject to your license

More information

The IBM Cognos Platform for Enterprise Business Intelligence

The IBM Cognos Platform for Enterprise Business Intelligence The IBM Cognos Platform for Enterprise Business Intelligence Highlights Optimize performance with in-memory processing and architecture enhancements Maximize the benefits of deploying business analytics

More information

SAP BusinessObjects 4.1 Nowa wersja platformy raportowej. VI Kongres BusinessObjects User Group Mateusz Hoffmann SAP Polska

SAP BusinessObjects 4.1 Nowa wersja platformy raportowej. VI Kongres BusinessObjects User Group Mateusz Hoffmann SAP Polska SAP BusinessObjects 4.1 Nowa wersja platformy raportowej VI Kongres BusinessObjects User Group Mateusz Hoffmann SAP Polska Mapa rozwoju SAP BI SAP BusinessObjects Business Intelligence Strategic Focus

More information

Creating a universe on Hive with Hortonworks HDP 2.0

Creating a universe on Hive with Hortonworks HDP 2.0 Creating a universe on Hive with Hortonworks HDP 2.0 Learn how to create an SAP BusinessObjects Universe on top of Apache Hive 2 using the Hortonworks HDP 2.0 distribution Author(s): Company: Ajay Singh

More information

Business Objects Online training Contents SAP BUSINESS OBJECTS 4.0/XI 3.1. We provide online instructor led Business Objects Training.

Business Objects Online training Contents SAP BUSINESS OBJECTS 4.0/XI 3.1. We provide online instructor led Business Objects Training. Business Objects Online training Contents SAP BUSINESS OBJECTS 4.0/XI 3.1 We provide online instructor led Business Objects Training. BUSINESS OBJECTS XI 3.1 TRAINING CONTENT: Oracle (Basics) Universe

More information

Lesson Plans Microsoft s Managing and Maintaining a Microsoft Windows Server 2003 Environment

Lesson Plans Microsoft s Managing and Maintaining a Microsoft Windows Server 2003 Environment Lesson Plans Microsoft s Managing and Maintaining a Microsoft Windows Server 2003 Environment (Exam 70-290) Table of Contents Table of Contents... 1 Course Overview... 2 Section 0-1: Introduction... 4

More information

Mobile Application Performance

Mobile Application Performance Mobile Application Performance Tips & Tricks to Significantly Boost App Performance Ray Bennett Director, Microstrategy - Mobile Service Line 11km/s (7mps) Escape Velocity Performance Definition What is

More information

Online Courses. Version 9 Comprehensive Series. What's New Series

Online Courses. Version 9 Comprehensive Series. What's New Series Version 9 Comprehensive Series MicroStrategy Distribution Services Online Key Features Distribution Services for End Users Administering Subscriptions in Web Configuring Distribution Services Monitoring

More information

An Architectural Review Of Integrating MicroStrategy With SAP BW

An Architectural Review Of Integrating MicroStrategy With SAP BW An Architectural Review Of Integrating MicroStrategy With SAP BW Manish Jindal MicroStrategy Principal HCL Objectives To understand how MicroStrategy integrates with SAP BW Discuss various Design Options

More information

SAP BO Course Details

SAP BO Course Details SAP BO Course Details By Besant Technologies Course Name Category Venue SAP BO SAP Besant Technologies No.24, Nagendra Nagar, Velachery Main Road, Address Velachery, Chennai 600 042 Landmark Opposite to

More information

FileMaker 12. ODBC and JDBC Guide

FileMaker 12. ODBC and JDBC Guide FileMaker 12 ODBC and JDBC Guide 2004 2012 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker, Inc.

More information

s@lm@n Oracle Exam 1z0-591 Oracle Business Intelligence Foundation Suite 11g Essentials Version: 6.6 [ Total Questions: 120 ]

s@lm@n Oracle Exam 1z0-591 Oracle Business Intelligence Foundation Suite 11g Essentials Version: 6.6 [ Total Questions: 120 ] s@lm@n Oracle Exam 1z0-591 Oracle Business Intelligence Foundation Suite 11g Essentials Version: 6.6 [ Total Questions: 120 ] Question No : 1 A customer would like to create a change and a % Change for

More information

OLAP Services. MicroStrategy Products. MicroStrategy OLAP Services Delivers Economic Savings, Analytical Insight, and up to 50x Faster Performance

OLAP Services. MicroStrategy Products. MicroStrategy OLAP Services Delivers Economic Savings, Analytical Insight, and up to 50x Faster Performance OLAP Services MicroStrategy Products MicroStrategy OLAP Services Delivers Economic Savings, Analytical Insight, and up to 50x Faster Performance MicroStrategy OLAP Services brings In-memory Business Intelligence

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

Questions and Answers: SAP BusinessObjects BI 4.0 and the New Semantic Layer for OLAP

Questions and Answers: SAP BusinessObjects BI 4.0 and the New Semantic Layer for OLAP Questions and Answers: SAP BusinessObjects BI 4.0 and the New Semantic Layer for OLAP Applies to: SAP BusinessObjects BI 4.0, the latest version of the Universe Designer called universe design tool and

More information

The Complete Performance Solution for Microsoft SQL Server

The Complete Performance Solution for Microsoft SQL Server The Complete Performance Solution for Microsoft SQL Server Powerful SSAS Performance Dashboard Innovative Workload and Bottleneck Profiling Capture of all Heavy MDX, XMLA and DMX Aggregation, Partition,

More information

SAP Crystal Reports & SAP HANA: Integration & Roadmap Kenneth Li SAP SESSION CODE: 0401

SAP Crystal Reports & SAP HANA: Integration & Roadmap Kenneth Li SAP SESSION CODE: 0401 SAP Crystal Reports & SAP HANA: Integration & Roadmap Kenneth Li SAP SESSION CODE: 0401 LEARNING POINTS Learn about Crystal Reports for HANA Glance at the road map for the product Overview of deploying

More information

Agenda. SAP BusinessObjects 2012 / Slide 2 Private and Confidential

Agenda. SAP BusinessObjects 2012 / Slide 2 Private and Confidential SAP BusinessObjects 2012 / Slide 2 Private and Confidential Agenda IDD / EIM / EDGE Product Portfolio Roma Background and overview Deployment Phase 1 Deployment Phase 2 Deployment Phase 3 Next Phase -

More information

MAPILab Reports for Hardware and Software Inventory Installation Guide. Document version 1.0

MAPILab Reports for Hardware and Software Inventory Installation Guide. Document version 1.0 MAPILab Reports for Hardware and Software Inventory Installation Guide Document version 1.0 MAPILab Ltd., January 2010 Table of Contents Introduction... 3 1. Product architecture and general explanations...

More information

How To Upgrade Your System With Bib 4.6.1.1

How To Upgrade Your System With Bib 4.6.1.1 Best Practices and Methodologies for Upgrading SAP BusinessObjects Enterprise to SAP BusinessObjects BI 4.0 Disclaimer This presentation outlines our general product direction and should not be relied

More information

Session Code*: 0310 Demystifying Authentication and SSO Options in Business Intelligence. Greg Wcislo

Session Code*: 0310 Demystifying Authentication and SSO Options in Business Intelligence. Greg Wcislo Session Code*: 0310 Demystifying Authentication and SSO Options in Business Intelligence Greg Wcislo Introduction We will not go into detailed how-to, however links to multiple how-to whitepapers will

More information

System Requirements Table of contents

System Requirements Table of contents Table of contents 1 Introduction... 2 2 Knoa Agent... 2 2.1 System Requirements...2 2.2 Environment Requirements...4 3 Knoa Server Architecture...4 3.1 Knoa Server Components... 4 3.2 Server Hardware Setup...5

More information

Query OLAP Cache Optimization in SAP BW

Query OLAP Cache Optimization in SAP BW Query OLAP Cache Optimization in SAP BW Applies to: SAP NetWeaver 2004s BW 7.0 Summary This article explains how to improve performance of long running queries using OLAP Cache. Author: Sheetal Maharshi

More information

Virtual server management: Top tips on managing storage in virtual server environments

Virtual server management: Top tips on managing storage in virtual server environments Tutorial Virtual server management: Top tips on managing storage in virtual server environments Sponsored By: Top five tips for managing storage in a virtual server environment By Eric Siebert, Contributor

More information

MS SQL Performance (Tuning) Best Practices:

MS SQL Performance (Tuning) Best Practices: MS SQL Performance (Tuning) Best Practices: 1. Don t share the SQL server hardware with other services If other workloads are running on the same server where SQL Server is running, memory and other hardware

More information

0408 - Avoid Paying The Virtualization Tax: Deploying Virtualized BI 4.0 The Right Way. Ashish C. Morzaria, SAP

0408 - Avoid Paying The Virtualization Tax: Deploying Virtualized BI 4.0 The Right Way. Ashish C. Morzaria, SAP 0408 - Avoid Paying The Virtualization Tax: Deploying Virtualized BI 4.0 The Right Way Ashish C. Morzaria, SAP LEARNING POINTS Understanding the Virtualization Tax : What is it, how it affects you How

More information

Oracle Database Performance Management Best Practices Workshop. AIOUG Product Management Team Database Manageability

Oracle Database Performance Management Best Practices Workshop. AIOUG Product Management Team Database Manageability Oracle Database Performance Management Best Practices Workshop AIOUG Product Management Team Database Manageability Table of Contents Oracle DB Performance Management... 3 A. Configure SPA Quick Check...6

More information

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

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

More information

A Comparison of Oracle Performance on Physical and VMware Servers

A Comparison of Oracle Performance on Physical and VMware Servers A Comparison of Oracle Performance on Physical and VMware Servers By Confio Software Confio Software 4772 Walnut Street, Suite 100 Boulder, CO 80301 303-938-8282 www.confio.com Comparison of Physical and

More information

SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24. Data Federation Administration Tool Guide

SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24. Data Federation Administration Tool Guide SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24 Data Federation Administration Tool Guide Content 1 What's new in the.... 5 2 Introduction to administration

More information

SAP BusinessObjects Business Intelligence (BI) platform Document Version: 4.1, Support Package 3-2014-04-03. Report Conversion Tool Guide

SAP BusinessObjects Business Intelligence (BI) platform Document Version: 4.1, Support Package 3-2014-04-03. Report Conversion Tool Guide SAP BusinessObjects Business Intelligence (BI) platform Document Version: 4.1, Support Package 3-2014-04-03 Table of Contents 1 Report Conversion Tool Overview.... 4 1.1 What is the Report Conversion Tool?...4

More information

A Comparison of Oracle Performance on Physical and VMware Servers

A Comparison of Oracle Performance on Physical and VMware Servers A Comparison of Oracle Performance on Physical and VMware Servers By Confio Software Confio Software 4772 Walnut Street, Suite 100 Boulder, CO 80301 www.confio.com Introduction Of all the tier one applications

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

MAGENTO HOSTING Progressive Server Performance Improvements

MAGENTO HOSTING Progressive Server Performance Improvements MAGENTO HOSTING Progressive Server Performance Improvements Simple Helix, LLC 4092 Memorial Parkway Ste 202 Huntsville, AL 35802 sales@simplehelix.com 1.866.963.0424 www.simplehelix.com 2 Table of Contents

More information

InstallAware for Windows Installer, Native Code, and DRM

InstallAware for Windows Installer, Native Code, and DRM InstallAware for Windows Installer, Native Code, and DRM Key Objectives Who is InstallAware? Eliminate Bloated MSI Packages One-Click Deployment of Runtimes Improve Customer Relationships Simplify and

More information

http://support.oracle.com/

http://support.oracle.com/ Oracle Primavera Contract Management 14.0 Sizing Guide October 2012 Legal Notices Oracle Primavera Oracle Primavera Contract Management 14.0 Sizing Guide Copyright 1997, 2012, Oracle and/or its affiliates.

More information

September 9 11, 2013 Anaheim, California 507 Demystifying Authentication and SSO Options in Business Intelligence

September 9 11, 2013 Anaheim, California 507 Demystifying Authentication and SSO Options in Business Intelligence September 9 11, 2013 Anaheim, California 507 Demystifying Authentication and SSO Options in Business Intelligence Greg Wcislo Introduction We will not go into detailed how-to, however links to multiple

More information

The Art of Designing HOLAP Databases Mark Moorman, SAS Institute Inc., Cary NC

The Art of Designing HOLAP Databases Mark Moorman, SAS Institute Inc., Cary NC Paper 139 The Art of Designing HOLAP Databases Mark Moorman, SAS Institute Inc., Cary NC ABSTRACT While OLAP applications offer users fast access to information across business dimensions, it can also

More information

Contents Introduction... 5 Deployment Considerations... 9 Deployment Architectures... 11

Contents Introduction... 5 Deployment Considerations... 9 Deployment Architectures... 11 Oracle Primavera Contract Management 14.1 Sizing Guide July 2014 Contents Introduction... 5 Contract Management Database Server... 5 Requirements of the Contract Management Web and Application Servers...

More information

TRIMIT Fashion reviewed: Tailor made out of the box?

TRIMIT Fashion reviewed: Tailor made out of the box? TRIMIT Fashion reviewed: Tailor made out of the box? Introduction TRIMIT Fashion delivers fashion specific functionalities on top of the recognized ERP (Enterprise Resource Planning) system called Dynamics

More information

BOBJ: BUSINESSOBJECTS SUPER USER AD-HOC REPORTING / SELF-SERVICE

BOBJ: BUSINESSOBJECTS SUPER USER AD-HOC REPORTING / SELF-SERVICE BOBJ: BUSINESSOBJECTS SUPER USER AD-HOC REPORTING / SELF-SERVICE Web Intelligence User Guide This document created by: The EBS Training Team in collaboration with EBS Technical Team and BOBJ Functional

More information

Questions and Answers: SAP BusinessObjects BI 4.0 and the Semantic Layer for SAP Netweaver BW

Questions and Answers: SAP BusinessObjects BI 4.0 and the Semantic Layer for SAP Netweaver BW Questions and Answers: SAP BusinessObjects BI 4.0 and the Semantic Layer for SAP Netweaver BW Applies to: SAP Business Objects BI 4.0, with the latest tools that access SAP Netweaver BW, BEx queries using

More information

Which Reporting Tool Should I Use for EPM? Glenn Schwartzberg InterRel Consulting info@interrel.com

Which Reporting Tool Should I Use for EPM? Glenn Schwartzberg InterRel Consulting info@interrel.com Which Reporting Tool Should I Use for EPM? Glenn Schwartzberg InterRel Consulting info@interrel.com Disclaimer These slides represent the work and opinions of the presenter and do not constitute official

More information

SAP BusinessObjects Reporting. Kelly Limberg, Engineering Services Architect limke03@ca.com

SAP BusinessObjects Reporting. Kelly Limberg, Engineering Services Architect limke03@ca.com SAP BusinessObjects Reporting Kelly Limberg, Engineering Services Architect limke03@ca.com Terms of This Presentation This presentation was based on current information and resource allocations as of October

More information

Tableau Metadata Model

Tableau Metadata Model Tableau Metadata Model Author: Marc Reuter Senior Director, Strategic Solutions, Tableau Software March 2012 p2 Most Business Intelligence platforms fall into one of two metadata camps: either model the

More information

HYPERION SYSTEM 9 N-TIER INSTALLATION GUIDE MASTER DATA MANAGEMENT RELEASE 9.2

HYPERION SYSTEM 9 N-TIER INSTALLATION GUIDE MASTER DATA MANAGEMENT RELEASE 9.2 HYPERION SYSTEM 9 MASTER DATA MANAGEMENT RELEASE 9.2 N-TIER INSTALLATION GUIDE P/N: DM90192000 Copyright 2005-2006 Hyperion Solutions Corporation. All rights reserved. Hyperion, the Hyperion logo, and

More information

Understanding Security and Rights in SAP BusinessObjects Business Intelligence 4.1

Understanding Security and Rights in SAP BusinessObjects Business Intelligence 4.1 Understanding Security and Rights in SAP BusinessObjects Business Intelligence 4.1 Session Code*: 0313 Greg Wcislo Disclaimer This presentation outlines our general product direction and should not be

More information

Analyzing IBM i Performance Metrics

Analyzing IBM i Performance Metrics WHITE PAPER Analyzing IBM i Performance Metrics The IBM i operating system is very good at supplying system administrators with built-in tools for security, database management, auditing, and journaling.

More information

SQL Server Query Tuning

SQL Server Query Tuning SQL Server Query Tuning A 12-Step Program By Thomas LaRock, Technical Evangelist and Head Geek Confio Software 4772 Walnut Street, Suite 100 Boulder, CO 80301 www.confio.com Introduction Query tuning is

More information

www.dotnetsparkles.wordpress.com

www.dotnetsparkles.wordpress.com Database Design Considerations Designing a database requires an understanding of both the business functions you want to model and the database concepts and features used to represent those business functions.

More information

BI 4 : Training for the Transition

BI 4 : Training for the Transition September 9 11, 2013 Anaheim, California BI 4 : Training for the Transition Learning Points Learn about the new SAP BusinessObjects BI 4 education offerings Explore the details of the SAP BusinessObjects

More information

XTM Web 2.0 Enterprise Architecture Hardware Implementation Guidelines. A.Zydroń 18 April 2009. Page 1 of 12

XTM Web 2.0 Enterprise Architecture Hardware Implementation Guidelines. A.Zydroń 18 April 2009. Page 1 of 12 XTM Web 2.0 Enterprise Architecture Hardware Implementation Guidelines A.Zydroń 18 April 2009 Page 1 of 12 1. Introduction...3 2. XTM Database...4 3. JVM and Tomcat considerations...5 4. XTM Engine...5

More information

Esri ArcGIS Server 10 for VMware Infrastructure

Esri ArcGIS Server 10 for VMware Infrastructure Esri ArcGIS Server 10 for VMware Infrastructure October 2011 DEPLOYMENT AND TECHNICAL CONSIDERATIONS GUIDE Table of Contents Introduction... 3 Esri ArcGIS Server 10 Overview.... 3 VMware Infrastructure

More information

BI 4.1 Quick Start Java User s Guide

BI 4.1 Quick Start Java User s Guide BI 4.1 Quick Start Java User s Guide BI 4.1 Quick Start Guide... 1 Introduction... 4 Logging in... 4 Home Screen... 5 Documents... 6 Preferences... 8 Web Intelligence... 12 Create a New Web Intelligence

More information

Virtuoso and Database Scalability

Virtuoso and Database Scalability Virtuoso and Database Scalability By Orri Erling Table of Contents Abstract Metrics Results Transaction Throughput Initializing 40 warehouses Serial Read Test Conditions Analysis Working Set Effect of

More information

QLIKVIEW SERVER MEMORY MANAGEMENT AND CPU UTILIZATION

QLIKVIEW SERVER MEMORY MANAGEMENT AND CPU UTILIZATION QLIKVIEW SERVER MEMORY MANAGEMENT AND CPU UTILIZATION QlikView Scalability Center Technical Brief Series September 2012 qlikview.com Introduction This technical brief provides a discussion at a fundamental

More information

Data processing goes big

Data processing goes big Test report: Integration Big Data Edition Data processing goes big Dr. Götz Güttich Integration is a powerful set of tools to access, transform, move and synchronize data. With more than 450 connectors,

More information

Business Intelligence Competency Partners

Business Intelligence Competency Partners Business Intelligence Competency Partners What s New in SAP BusinessObjects BI 4.1 Presenter: Rich Chlebek January 29, 2014 What We ll Cover Webinar Protocol Introductions Web Intelligence Enhancements

More information

joalmeida@microsoft.com João Diogo Almeida Premier Field Engineer Microsoft Corporation

joalmeida@microsoft.com João Diogo Almeida Premier Field Engineer Microsoft Corporation joalmeida@microsoft.com João Diogo Almeida Premier Field Engineer Microsoft Corporation Reporting Services Overview SSRS Architecture SSRS Configuration Reporting Services Authoring Report Builder Report

More information

Performance in the Infragistics WebDataGrid for Microsoft ASP.NET AJAX. Contents. Performance and User Experience... 2

Performance in the Infragistics WebDataGrid for Microsoft ASP.NET AJAX. Contents. Performance and User Experience... 2 Performance in the Infragistics WebDataGrid for Microsoft ASP.NET AJAX An Infragistics Whitepaper Contents Performance and User Experience... 2 Exceptional Performance Best Practices... 2 Testing the WebDataGrid...

More information

Key Attributes for Analytics in an IBM i environment

Key Attributes for Analytics in an IBM i environment Key Attributes for Analytics in an IBM i environment Companies worldwide invest millions of dollars in operational applications to improve the way they conduct business. While these systems provide significant

More information