Using SQL Server 2014 In-Memory Optimized Columnstore with SAP BW

Size: px
Start display at page:

Download "Using SQL Server 2014 In-Memory Optimized Columnstore with SAP BW"

Transcription

1 Using SQL Server 2014 In-Memory Optimized Columnstore with SAP BW Applies to: SAP Business Warehouse 7.0 and higher running on Microsoft SQL Server 2014 and higher Summary SQL Server 2014 In-Memory Optimized Columnstore dramatically decreases disk space usage and can improve BW query performance by factors. You can use the columnstore index for SAP BW f-fact and e- fact tables, for SAP BW basic cubes, and aggregates. SQL Server 2014 columnstore support has been integrated into SAP BW and was down-ported to all common SAP BW releases: SAP BW 7.0 (SAP NetWeaver 7.0) SAP BW 7.01 (SAP enhancement package 1 for SAP NetWeaver 7.0) SAP BW 7.02 (SAP enhancement package 2 for SAP NetWeaver 7.0) SAP BW 7.11 (SAP enhancement package 1 for SAP NetWeaver 7.1) SAP BW 7.3 (SAP NetWeaver 7.3) SAP BW 7.31 (SAP enhancement package 1 for SAP NetWeaver 7.3) SAP BW 7.4 (SAP NetWeaver 7.4) Author: Company: Martin Merdes Microsoft Created on: February 2015 Version: 1.01 Author Bio Martin Merdes is a Senior Software Engineer at Microsoft. Since 1996 he has been working in different technical functions for Microsoft at SAP Germany: Support Engineer, Senior Consultant, Technical Account Manager, Premier Field Engineer and Software Development Engineer. Since 2009 he is responsible for the porting of SAP BW on Microsoft SQL Server. 1

2 Table of Contents Overview... 3 Benefits of Using the Columnstore... 3 Space Usage... 3 Query Performance... 3 Faster BW Processes... 4 Restrictions... 4 Prerequisites... 5 SQL Server... 5 SAP BW... 5 Applying the Columnstore... 6 Step 1: Configure Cube... 6 Step 2: Convert Cube... 7 Running MSSCSTORE as a Batch Job... 8 Aggregates... 8 Checking Cube Status... 9 Loading Data Manually Running a DTP Running DTPs in BW Process Chains BW Cube Compression Inventory Cubes Aggregates Basic Cubes Best Practices Copyright

3 Overview SQL Server 2012 introduced an additional storage format for data. Besides the normal row-oriented store, there is a column-oriented store as well. To make it as transparent as possible for database administrators and applications, the new columnstore was implemented as a new index type: nonclustered columnstore index. Therefore, a single table can use both stores side-by-side. The nonclustered columnstore index has one major drawback: It is a read-only index. Therefore an additional columnstore index type was introduced in SQL Server 2014: the writeable clustered columnstore index. In SQL Server 2014 you can use all index types: rowstore, clustered and nonclustered columnstore indexes. The columnstore is often called In-Memory Optimized DW in Microsoft Knowledge Base Articles and BLOGs. Here you often see the acronym NCCI for the (read-only) Nonclustered Columnstore Index and CCI for the (writeable) Clustered Columnstore Index. Benefits of Using the Columnstore Space Usage Indexes can be compressed much better when stored by columns rather than by rows. Furthermore, the number of indexes for the fact tables is reduced when using the columnstore. Therefore, we see consistent space savings when using the columnstore in SAP BW. The space savings are dependent from the number of BW dimensions, number of key figures, and the data distribution. The following example shows the total disk space needed for a 100,000,000 row cube having 11 dimensions and 8 key figures. The total space contains the disk space for the f-fact, e-fact and dimension tables. Note that the dimension tables still use rowstore indexes in SAP BW on SQL Server MB MB MB MB MB MB MB 5000 MB 0 MB SQL 2005 SQL 2008 PAGE compression SQL 2012 NCCI SQL 2014 CCI SQL 2005 SQL 2008 PAGE compression SQL 2012 NCCI SQL 2014 CCI Series MB MB 8501 MB 4340 MB Query Performance The column-oriented store is optimized for aggregating mass data, while the row-oriented store can be used optimally when accessing just a single row. Query performance is typically by factors better when using the columnstore compared with the rowstore. However, the performance improvements depend on the individual query. BW aggregates also benefit from using the columnstore. The columnstore is optimized for mass aggregation. Therefore, BW cubes and aggregates having only a few thousand rows hardly benefit from the columnstore. On the other hand, query performance is typically not an issue anyway for such small cubes. 3

4 In SAP NetWeaver (and BW) systems you typically configure the intra-query parallelism to 1 by setting the SQL Server configuration option max degree of parallelism. In SAP BW you can overwrite this global setting for SAP BW queries. You simply have to set the SAP RSADMIN parameter MSS_MAXDOP_QUERY in SAP report SAP_RSADMIN_MAINTAIN. This results in adding a SQL Server optimizer hint MAXDOP for all BW queries. The default value of MSS_MAXDOP_QUERY is 2 for SQL Server 2012 and 4 for SQL Server We do not recommend changing the default value on a productive server with 16 CPU threads or less. For powerful DB servers you may increase the value of MSS_MAXDOP_QUERY, but you should never set it to MAXDOP=1. We typically do not see a benefit for the columnstore when increasing MSS_MAXDOP_QUERY above 8. Increasing the parallelism too much is not a good idea. This might result in a resource bottleneck during high workload. In this case, SQL Server might be forced using actually only MAXDOP =1 for some concurrently running queries. Furthermore, some columnstore optimizations only work with MAXDOP >1 in SQL Server However, with SQL Server 2014 these optimizations also work with MAXDOP =1. The overall runtime of an SAP BW query consists of the time consumed on the database server, the SAP BW application server and the client. The columnstore is an optimization on the database server. Therefore the columnstore has no impact on the runtime consumed on the SAP BW application server, which can be a significant part of the overall BW query runtime An SAP BW query may run more than one SQL query. This is always the case when using BW Semantically Partitioned Cubes or BW Multi-Provider. Both are logical cubes, which consist of several physical cubes. When running a BW query against the logical cube, separate SQL queries run against each physical cube. Afterwards, the result sets of all queries have to be aggregated on the SAP BW application server. However, the SAP BW application server does not use parallelism. Each SAP work process is executed single-threaded. Furthermore, aggregation on the application server requires much more rows, which have to be transferred from the database to the application server. Faster BW Processes Many BW processes like DTPs, BW cube compression and DB index creation are much faster when using the writeable columnstore. One reason is the reduced number of indexes you have to maintain during data load. Re-creating a columnstore index (or converting a cube to columnstore) can use SQL Server parallelism much better than rowstore indexes. SAP BW uses a separate RSADMIN parameter to configure parallelism for index creation: MSS_MAXDOP_INDEXING. The default value is 8. Index creation scales quite well even with a higher degree of parallelism. Therefore, you can increase MSS_MAXDOP_INDEXING as long as sufficient CPU and memory resources are available. Restrictions SAP BW does not allow the creation of a writeable columnstore index on the f-fact table of a Real-Time cube. A Real-Time cube does not close a data load request before running queries against the cube. Therefore loaded data may still be in the SQL Server Delta Store, which then results in even worse query performance (compared with the rowstore). In SQL Server 2014 you cannot create an additional b-tree index, unique index or primary key constraint when already having a writeable columnstore index. Therefore, the writeable columnstore is restricted to the f-fact and e-fact tables of SAP BW for SQL Server Additional support for other SAP BW tables, like master data tables, dimension tables and DSO tables is planned for future versions of Microsoft SQL Server. 4

5 Prerequisites The writeable columnstore index of SQL Server 2014 cannot be used out of the box with SAP BW. It requires additional SAP BW code. SAP Note always contains the up-to-date prerequisites. As at December 2014, you have to install the following software components: SQL Server The minimum required SQL Server version is Cumulative Update 5 (CU5) of SQL Server However, we recommend installing the newest service pack, once available. You can download the latest SQL Server patches from SAP BW To use the columnstore on SQL Server 2014, you have to apply the following SAP Support Package Stacks (SPS). Afterwards you should apply SAP Note , which will contain necessary bug fixes in the future. SAP BW NW SPS BW SP *) EHP EHP EHP EHP * NW SPS 32 includes SAP Basis SP 32 and SAP BW SP 34 Alternatively, you may apply an older SAP SPS and additional correction instructions. For more information, see SAP Note The required SAP BW code for using SQL Server 2014 writeable columnstore also contains many improvements for SQL Server 2012 read-only columnstore. Therefore, we recommend applying the new code also for SQL Server When discussing features of SQL Server 2012 below, we assume that the newest SAP BW code is already applied. 5

6 Applying the Columnstore Applying the columnstore is a two-step process. In the first step you configure the BW cube for using the columnstore in the SAP report MSSCSTORE. This step only changes the property of the cube in the SAP BW dictionary. In the second step you convert the cube to fit the columnstore configuration. In this step the indexes are created on the database. You can perform the second step either in report MSSCSTORE or run an index repair in SAP transaction RSA1 or a BW process chain (see section Data Load below). Step 1: Configure Cube To configure a single cube, start report MSSCSTORE, enter the name of the cube, choose the desired cube type, make sure that the checkbox change cube definition is set, and start the report by pressing Execute (F8). Configure Cube Type for a Single Cube You can also configure all BW cubes at the same time. For this you have to set a global cube type in the tab Process all cubes and start the report by pressing execute (F8). Note that this is not simply a default for new cubes (as it used to be in older versions of report MSSCSTORE). By setting a global cube type, the cube type of all existing cubes is changed and you will not be able any more to set the cube type individually for a single cube. Once you turn the global cube type off, all existing cubes keep their cube type. Afterwards you can change the cube type individually in tab Process single cube. Configure Global Cube Type for all Cubes 6

7 Step 2: Convert Cube You can convert a cube from rowstore to columnstore (and vice versa) by repairing the database indexes of this cube in SAP BW. This is done automatically the next time you run a BW process chain, which contains the process chain step Index Repair for this particular cube. However, the easiest way to repair a cube is using SAP report MSSCSTORE. Here you can either configure and repair the cube in separate steps or perform both steps together. Configure and Repair a Cube at the Same Time The columnstore configuration is stored in the SAP BW dictionary independently of the installed SQL Server release. However, when repairing a cube, the SQL Server release is taken into account. The following table shows the index types on the database for e-fact and f-fact table of a cube after it has been repaired: Row-Store (no CS) Basic CS Column-Store (CS) SQL Server 2008 f-fact table b-tree b-tree b-tree and lower e-fact table b-tree b-tree b-tree SQL Server 2012 f-fact table b-tree b-tree b-tree e-fact table b-tree read-only CS read-only CS SQL Server 2014 f-fact table b-tree b-tree writeable CS and higher e-fact table b-tree read-only CS writeable CS Indexes on DB Dependent on Cube Configuration and SQL Server Release There are some exceptions to the above rules: The f-fact table of a real-time cube is always using b-tree indexes. A cube on SQL Server 2012, which has a high precision key figure, and all APO cubes always use b-tree indexes. All b-tree indexes of the fact-tables are dropped on the database when converting a BW cube from rowstore to writeable columnstore (on SQL Server 2014). However, these indexes might still be visible in the SAP data dictionary for the fact tables (with the flag not for Microsoft SQL Server ). Therefore always check the index state on the database, not in the SAP data dictionary. 7

8 Running MSSCSTORE as a Batch Job Once you have chosen your options, you can run report MSSCSTORE interactively by pressing the F8 button. By pressing F9 you can schedule a batch job instead. This is recommended when repairing the indexes or when processing all cubes rather than a single cube. You can check the job logs in SAP transaction SM37 or by pressing the SAP function key SM37 (Ctrl+F1). Report MSSCSTORE also writes a detailed log into the SAP application log. This is the case when running in batch and when running interactively. To check the application log, press the SAP function key Logs (Ctrl+F2). Running MSSCSTORE in Batch Aggregates MSSCSTORE always configures the aggregates of a cube the same way as the cube itself. When repairing a cube all aggregates are also repaired. When configuring or repairing a partition of a semantically partitioned cube, all partitions are processed at the same time. In many cases BW query performance is fast enough even without aggregates, once you have applied the columnstore. Therefore, we implemented the option to deactivate aggregates in report MSSCSTORE. However, by default we recommend keeping the aggregates. Once you have deactivated them, you can Activate and Fill them in report MSSCSTORE again. Activating simply creates the database tables. You cannot use aggregates in BW queries without filling them. Simply activating the aggregates makes sense, if you already have a BW process chain for filling the aggregates. Activating or Deactivating all Aggregates of a Cube 8

9 Checking Cube Status You can check the status of a single cube by pressing the SAP function key Status of cube (Ctrl+F5) in report MSSCSTORE. This performs a full index check of all tables of the cube and its aggregates. In column DDIC you can see the BW cube configuration, which is always the same for all tables. In column DB Expected you can see the expected indexes on the database according to the cube configuration and the SQL Server release. Column DB Check shows whether all indexes are correctly created on the database. You can also see this in column Exception as an icon. If it is not green, you should run an index repair as described above. Status of a Single Cube You can get an overview of all cubes when using the F4 help in the cube input field ( Configure single cube: ). In the column Exception you can easily see all cubes for which the database indexes do not match their cube definition. In the example below, cube 0CCMDAHGR has a red status, because the cube is defined as columnstore while the indexes on the database are still using b-tree indexes. For performance reasons, the F4 help does not perform a full index check. It only checks the columnstore index. Therefore, a single missing b-tree index of a rowstore cube is not detected here. The status is then still green. F4 help: Status of all Cubes 9

10 Loading Data SAP BW uses Data Transfer Processes (DTPs) for loading data into a cube. If the cube is using a writeable columnstore index, the loaded data is not fully in columnstore format after the DTP has finished. Some rows might still be in the Delta Store. The procedure of moving all rows from the Delta Store to the columnstore is called rowgroup compression. SAP has integrated the rowgroup compression into the BW Index Repair (also known as Create Index or Repair Index ) function for cubes. For best query performance you have to run the BW Index Repair after each DTP. SAP recommends running a database Update Statistics (also known as Refresh Statistics ) after each DTP. This recommendation is not only related to writeable columnstore indexes. It is also valid for read-only columnstore or rowstore indexes. However, Update Statistics is not necessary when running a BW cube compression after the DTP. The BW cube compression automatically performs an Update Statistics. Manually Running a DTP Typically you are using SAP BW process chains for running DTPs. However, you might start a single DTP in SAP transaction RSA1. In this case you should also run an Index Repair and an Update Statistics once the DTP has finished. Transaction RSA1 Modeling InfoProvider Manage Performance Running DTPs in BW Process Chains You should always include the process chain steps Index Repair and Update Statistics in all your SAP BW data load process chains. The process chain step Index Delete is only used for rowstore indexes (of the BW f-fact table and the BW dimension tables). Therefore, it only has an impact on cubes using the rowstore or the read-only columnstore (for e-fact table). Index Delete has no impact on cubes using the writeable columnstore. Therefore, you do not need the process chain step Index Delete once you convert the cube to writeable columnstore. 10

11 Index Repair ( Create Index ) and Update Statistics ( DB Statistics ) within a BW Process Chain BW Cube Compression BW cube compression (also known as Condense or Collapse ) has several benefits. It reduces the total number of rows in a BW cube by aggregating the request ID. This also results in reduced space consumption on the database. Cube compression reduces the number of database partitions in the f-fact table. For inventory cubes it creates reference points, which results in much faster inventory queries. For cubes using the read-only columnstore index, cube compression is mandatory. Without cube compression all data is stored in the f-fact table, which cannot use the read-only columnstore index at all. However, cube compression also has some drawbacks. It is an additional step during data load, which takes some time. BW queries cannot run during BW cube compression of the cube or aggregate used by the query. Once a faulty loaded request has been compressed, it cannot be easily deleted any more. For Microsoft SQL Server SAP recommends regularly compressing BW cubes. This could be part of the daily DTP process chain. If the daily process chain runs concurrent with SAP BW queries, you can only include the BW cube compression in those process chains, which are running at night or weekend. Dependent on the cube type, we recommend the following: Inventory Cubes Compress most of the requests of an inventory cube, ideally all of them. This may significantly increase query performance on inventory cubes. In SAP BW process chains you can specify that all requests are compressed except a given number of requests or all requests loaded within the last few days. 11

12 Property of BW Process Chain Step Collapse Aggregates Always fully compress all aggregates. This is done automatically during aggregate load or rollup, once you have defined the relevant cube property. A typical scenario is keeping all requests loaded within the last few days or weeks uncompressed in the basic cube, while compressing all requests in its aggregates. In this case you can easily delete recent faulty loaded requests. Recent requests are not compressed in the basic cube. During request deletion, SAP BW automatically rebuilds (the fully compressed) aggregates. Setting Cube Property: Always Fully Compress all Aggregates Basic Cubes Each uncompressed BW request uses its own database partition in the f-fact table. Although you can have up to 15,000 partitions, we recommend not having more than 1,000 partitions. Even a few hundred partitions might result in reduced BW query performance. The only way to get rid of these partitions is to compress the BW requests. Therefore, we strongly recommend keeping the number of uncompressed requests low. This is independent from the cube type and columnstore type. 12

13 For cubes using the rowstore you might still have a few hundred uncompressed requests. Cube compression takes quite a long time for rowstore cubes. Furthermore, cube compression might not result in the expected space savings: For rowstore cubes, the e-fact table has no clustered index at all. This results in less space efficiency compared with tables having a clustered index (like the f-fact table). Inventory cubes store additional rows in the e-fact table, the reference points. This results in faster BW queries on BW compressed inventory cubes. On the other hand it increases the size of the e-fact table. For all these reasons many customers perform BW cube compression seldom (or not at all) when they are using rowstore cubes. However, in any case you should make sure that the number of partitions in the f-fact table does not exceed about 1,000. For cubes using the read-only columnstore, you have to compress as many requests as possible. BW cube compression moves data from the f-fact table (having rowstore indexes) to the e-fact table (having read-only columnstore index). Without BW cube compression you simply cannot benefit from the readonly columnstore. For cubes using the writeable columnstore, you can also use the columnstore on the f-fact table. However, you still should not have more than a few hundred uncompressed requests. Cube compression on a writeable columnstore cube is much faster compared with cube compression on a rowstore cube. When using cube compression, you do not need to include the process chain step Update Statistics in your DTP process chains (because update statistics is performed during BW cube compression). A typical process chain looks like this: Typical DTP Process Chain for Cubes Using Writeable Columnstore 13

14 Best Practices For using the columnstore with SAP BW we recommend the following: Keep the database index statistics up-to-date. You can achieve this by adding one of the following process chain types at the end of your SAP BW cube load (DTP) process chain: Compression of the InfoCube or Construct Database Statistics. (You can manually update the database index statistics of a cube using SAP transaction RSA1 > Modeling > InfoProvider > Manage Cube > Performance > Refresh Statistics) Ensure that the database options Auto Create Statistics and Auto Update Statistics are turned on. For SAP BW we typically turn off the database option Auto Create Statistics Async. Keep in mind that all index statistics are dropped once you convert a table from rowstore to columnstore. They are automatically created once the first queries are running (because of the database option Auto Create Statistics). Therefore the queries may take longer than expected, when running immediate after the conversion to columnstore. Make sure that all columnstore rowgroups are compressed after each data load. Therefore, you have to add the process chain type Generate Index after a DTP in a process chain. (You can manually compress all columnstore rowgroups of a cube using SAP transaction RSA1 > Modeling > InfoProvider > Manage Cube > Performance > Repair DB Indexes) Run BW Cube Compression regularly. You can keep those requests uncompressed, which were loaded within the last few weeks. However, for best query performance, the majority of all requests in a cube should be compressed. For inventory cubes, ideally all requests should be compressed. BW Partitioning of the e-fact table by time dimension can further increase query performance. However, these performance improvements are often overrated. BW Aggregates can increase query performance to an optimum. However, the administrative overhead of aggregates can be significant. Therefore keep the number of aggregates low. Configure all cubes to always use fully compressed aggregates (option Compress After Rollup ) Use BW Exceptional Aggregations only when there is a business need. Exceptional aggregations are typically performed on the BW application server (which is single-threaded). This might consume a significant proportion of the whole BW query time and cannot be accelerated by any database technology like the Columnstore. You can further decrease the needed disk space for the columnstore by changing the data compression type COLUMNSTORE_ARCHIVE using report MSSCOMPRESS. This results in additional disk space savings of roughly 20%. However, this also might result in slower query performance of 20%. Therefore we do not recommend using COLUMNSTORE_ARCHIVE for SAP BW. Initially keep the default values of the RSADMIN parameter MSS_MAXDOP_QUERY (2 for SQL Server 2012, 4 for SQL Server 2014). Increasing this value can result in a memory bottleneck, which is counterproductive. On database servers having plenty of CPU threads and RAM you may increase MSS_MAXDOP_QUERY to 8. You can speed-up Data Transfer Processes (DTPs) into a cube by setting the RSADMIN parameter RSDD_ENABLE_MASS_CUBE_WRITE=X (for SAP BW 7.30 and higher). Make sure that the recommended trace flags for SQL Server are set, in particular trace flag 9481 for SQL Server Configure sufficient memory for SQL Server and make sure that Locked Pages In Memory is used for SQL Server Create many tempdb data files (at least 16) and store them on a fast disk (SSD). A single tempdb log file is sufficient. For SAP BW, use the SQL Server recovery model BULK LOGGED whenever possible (as long as your backup strategy allows it and you are not using database mirroring). Converting the different cube types and any other index operation can be significant faster when using BULK LOGGED. 14

15 Related Content Columnstore Indexes Described: Using SQL Server 2012 Column-Store with SAP BW: SAP Note SQL Server 2012 column-store support for SAP BW SAP Note SQL Server Column-Store for SAP BW Aggregates SAP Note SQL Server 2014 column-store support for SAP BW Update Center for Microsoft SQL Server: SAP BW issues in blog "SAP On SQL Server": SAP Community Network "SAP On SQL Server": 15

16 Copyright 2015 SAP SE SE or an SAP SE affiliate company. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP SE. The information contained herein may be changed without prior notice. Some software products marketed by SAP SE and its distributors contain proprietary software components of other software vendors. National product specifications may vary. These materials are provided by SAP SE and its affiliated companies ( SAP SE Group ) for informational purposes only, without representation or warranty of any kind, and SAP SE Group shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP SE Group products and services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an additional warranty. SAP SE and other SAP SE products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP SE in Germany and other countries. Please see for additional trademark information and notices. 16

SAP BW Columnstore Optimized Flat Cube on Microsoft SQL Server

SAP BW Columnstore Optimized Flat Cube on Microsoft SQL Server SAP BW Columnstore Optimized Flat Cube on Microsoft SQL Server Applies to: SAP Business Warehouse 7.4 and higher running on Microsoft SQL Server 2014 and higher Summary The Columnstore Optimized Flat Cube

More information

Performance Verbesserung von SAP BW mit SQL Server Columnstore

Performance Verbesserung von SAP BW mit SQL Server Columnstore Performance Verbesserung von SAP BW mit SQL Server Columnstore Martin Merdes Senior Software Development Engineer Microsoft Deutschland GmbH SAP BW/SQL Server Porting AGENDA 1. Columnstore Overview 2.

More information

Using SQL Server 2012 Column- Store with SAP BW

Using SQL Server 2012 Column- Store with SAP BW Using SQL Server 2012 Column- Store with SAP BW Applies to: SAP Business Warehouse 7.0 and higher running on Microsoft SQL Server 2012 and higher. Summary SQL Server 2012 introduced an additional storage

More information

Configuration and Utilization of the OLAP Cache to Improve the Query Response Time

Configuration and Utilization of the OLAP Cache to Improve the Query Response Time Configuration and Utilization of the OLAP Cache to Improve the Query Response Time Applies to: SAP NetWeaver BW 7.0 Summary This paper outlines the steps to improve the Query response time by using the

More information

ABAP SQL Monitor Implementation Guide and Best Practices

ABAP SQL Monitor Implementation Guide and Best Practices ABAP SQL Monitor Implementation Guide and Best Practices TABLE OF CONTENTS ABAP SQL Monitor - What is it and why do I need it?... 3 When is it available and what are the technical requirements?... 5 In

More information

Using Database Performance Warehouse to Monitor Microsoft SQL Server Report Content

Using Database Performance Warehouse to Monitor Microsoft SQL Server Report Content Using Database Performance Warehouse to Monitor Microsoft SQL Server Report Content Applies to: Enhancement Package 1 for SAP Solution Manager 7.0 (SP18) and Microsoft SQL Server databases. SAP Solution

More information

Provisional Master Data in Integrated Business Planning for SAP Simple Finance An Example-Based How-To Guide

Provisional Master Data in Integrated Business Planning for SAP Simple Finance An Example-Based How-To Guide Provisional Master Data in Integrated Business Planning for SAP Simple Finance An Example-Based How-To Guide Applies to: Integrated Business Planning in SAP Simple Finance Summary SAP customers who use

More information

SAP HANA SPS 09 - What s New? Administration & Monitoring

SAP HANA SPS 09 - What s New? Administration & Monitoring SAP HANA SPS 09 - What s New? Administration & Monitoring (Delta from SPS08 to SPS09) SAP HANA Product Management November, 2014 2014 SAP AG or an SAP affiliate company. All rights reserved. 1 Content

More information

How to Archive Data from SAP NetWeaver BW to SAP Sybase IQ as Near line Storage

How to Archive Data from SAP NetWeaver BW to SAP Sybase IQ as Near line Storage SAP How-to Guide Database & Technology SAP NetWeaver Business Warehouse SAP HANA Appliance How to Archive Data from SAP NetWeaver BW to SAP Sybase IQ as Near line Storage Applicable Releases: SAP NetWeaver

More information

SAP BW 7.4 Real-Time Replication using Operational Data Provisioning (ODP)

SAP BW 7.4 Real-Time Replication using Operational Data Provisioning (ODP) SAP BW 7.4 Real-Time Replication using Operational Data Provisioning (ODP) Dr. Astrid Tschense-Österle, AGS SLO Product Management Marc Hartz, Senior Specialist SCE Rainer Uhle, BW Product Management May

More information

SAP Business Warehouse Powered by SAP HANA for the Utilities Industry

SAP Business Warehouse Powered by SAP HANA for the Utilities Industry SAP White Paper Utilities Industry SAP Business Warehouse powered by SAP HANA SAP S/4HANA SAP Business Warehouse Powered by SAP HANA for the Utilities Industry Architecture design for utility-specific

More information

SAP BusinessObjects Analysis, edition for Microsoft Office Document Version: 2.3 2016-06-16. What's New Guide

SAP BusinessObjects Analysis, edition for Microsoft Office Document Version: 2.3 2016-06-16. What's New Guide SAP BusinessObjects Analysis, edition for Microsoft Office Document Version: 2.3 2016-06-16 Content 1 About this guide....3 2 About the documentation set....4 3 Administration.... 6 3.1 New and changed

More information

IBM DB2 specific SAP NetWeaver Business Warehouse Near-Line Storage Solution

IBM DB2 specific SAP NetWeaver Business Warehouse Near-Line Storage Solution IBM DB2 specific SAP NetWeaver Business Warehouse Near-Line Storage Solution Karl Fleckenstein (karl.fleckenstein@de.ibm.com) IBM Deutschland Research & Development GmbH June 22, 2011 Important Disclaimer

More information

Real-Time Reconciliation of Invoice and Goods Receipts powered by SAP HANA. Stefan Karl, Finance Solutions, SAP ASUG Presentation, May 2013

Real-Time Reconciliation of Invoice and Goods Receipts powered by SAP HANA. Stefan Karl, Finance Solutions, SAP ASUG Presentation, May 2013 Real-Time Reconciliation of Invoice and Goods Receipts powered by SAP HANA Stefan Karl, Finance Solutions, SAP ASUG Presentation, May 2013 Legal disclaimer The information in this presentation is confidential

More information

Cost-Effective Data Management and a Simplified Data Warehouse

Cost-Effective Data Management and a Simplified Data Warehouse SAP Information Sheet SAP Technology SAP HANA Dynamic Tiering Quick Facts Cost-Effective Data Management and a Simplified Data Warehouse Quick Facts Summary The SAP HANA dynamic tiering option helps application

More information

R49 Using SAP Payment Engine for payment transactions. Process Diagram

R49 Using SAP Payment Engine for payment transactions. Process Diagram R49 Using SAP Payment Engine for payment transactions Process Diagram Purpose, Benefits, and Key Process Steps Purpose The purpose of this scenario is to show you how to check the result of payment orders

More information

EMC: Managing Data Growth with SAP HANA and the Near-Line Storage Capabilities of SAP IQ

EMC: Managing Data Growth with SAP HANA and the Near-Line Storage Capabilities of SAP IQ 2015 SAP SE or an SAP affiliate company. All rights reserved. EMC: Managing Data Growth with SAP HANA and the Near-Line Storage Capabilities of SAP IQ Based on years of successfully helping businesses

More information

Data Integration using Integration Gateway. SAP Mobile Platform 3.0 SP02

Data Integration using Integration Gateway. SAP Mobile Platform 3.0 SP02 Data Integration using Integration Gateway SAP Mobile Platform 3.0 SP02 DOCUMENT ID: DC02000-01-0302-01 LAST REVISED: February 2014 Copyright 2014 by SAP AG or an SAP affiliate company. All rights reserved.

More information

Near-line Storage with CBW NLS

Near-line Storage with CBW NLS Near-line Storage with CBW NLS High Speed Query Access for Nearline Data Ideal Enhancement Supporting SAP BW on HANA Dr. Klaus Zimmer, PBS Software GmbH Agenda Motivation Why would you need Nearline Storage

More information

Downport to SAP GUI for documents Access Control Management

Downport to SAP GUI for documents Access Control Management Access Control Management A PLM Consulting Solution Public The PLM Consulting Solution Downport to SAP GUI for documents streamlines the process of managing project authorizations based on SAP PLM 7 Access

More information

CBW NLS IQ High Speed Query Access to Database and Nearline Storage

CBW NLS IQ High Speed Query Access to Database and Nearline Storage CBW NLS IQ High Speed Query Access to Database and Nearline Storage Speed up Your SAP BW Queries with Column-based Technology Dr. Klaus Zimmer, PBS Software GmbH, 2012 Agenda Motivation Nearline Storage

More information

SAP BW on HANA : Complete reference guide

SAP BW on HANA : Complete reference guide SAP BW on HANA : Complete reference guide Applies to: SAP BW 7.4, SAP HANA, BW on HANA, BW 7.3 Summary There have been many architecture level changes in SAP BW 7.4. To enable our customers to understand

More information

SAP HANA Live & SAP BW Data Integration A Case Study

SAP HANA Live & SAP BW Data Integration A Case Study SAP HANA Live & SAP BW Data Integration A Case Study Matthias Kretschmer, Andreas Tenholte, Jürgen Butsmann, Thomas Fleckenstein July 2014 Disclaimer This presentation outlines our general product direction

More information

Upgrade: SAP Mobile Platform Server for Windows SAP Mobile Platform 3.0 SP02

Upgrade: SAP Mobile Platform Server for Windows SAP Mobile Platform 3.0 SP02 Upgrade: SAP Mobile Platform Server for Windows SAP Mobile Platform 3.0 SP02 Windows DOCUMENT ID: DC80003-01-0302-01 LAST REVISED: February 2014 Copyright 2014 by SAP AG or an SAP affiliate company. All

More information

Columnstore Indexes for Fast Data Warehouse Query Processing in SQL Server 11.0

Columnstore Indexes for Fast Data Warehouse Query Processing in SQL Server 11.0 SQL Server Technical Article Columnstore Indexes for Fast Data Warehouse Query Processing in SQL Server 11.0 Writer: Eric N. Hanson Technical Reviewer: Susan Price Published: November 2010 Applies to:

More information

BW370 BI Integrated Planning

BW370 BI Integrated Planning BI Integrated Planning SAP NetWeaver Course Version: 98 Course Duration: 5 Day(s) Publication Date: 2015 Publication Time: Copyright Copyright SAP SE. All rights reserved. No part of this publication may

More information

CBW NLS High Speed Query Access to Database and Nearline Storage

CBW NLS High Speed Query Access to Database and Nearline Storage CBW NLS High Speed Query Access to Database and Nearline Storage Speed up Your SAP BW Queries with Column-based Technology Dr. Klaus Zimmer, PBS Software GmbH Agenda Motivation Nearline Storage in SAP

More information

Developing Microsoft SQL Server Databases (20464) H8N64S

Developing Microsoft SQL Server Databases (20464) H8N64S HP Education Services course data sheet Developing Microsoft SQL Server Databases (20464) H8N64S Course Overview In this course, you will be introduced to SQL Server, logical table design, indexing, query

More information

InfiniteInsight 6.5 sp4

InfiniteInsight 6.5 sp4 End User Documentation Document Version: 1.0 2013-11-19 CUSTOMER InfiniteInsight 6.5 sp4 Toolkit User Guide Table of Contents Table of Contents About this Document 3 Common Steps 4 Selecting a Data Set...

More information

SEPA in SAP CRM. Application Innovation, CRM & Service Industries. Customer

SEPA in SAP CRM. Application Innovation, CRM & Service Industries. Customer SEPA in SAP CRM Application Innovation, CRM & Service Industries Customer Agenda Overview SEPA in SAP CRM Additional Information 2013 SAP AG. All rights reserved. Customer 2 Agenda Overview SEPA in SAP

More information

Getting Started with the License Administration Workbench 2.0 (LAW 2.0)

Getting Started with the License Administration Workbench 2.0 (LAW 2.0) Getting Started SAP Global License Auditing Document Version: 1.2 2015-03-13 Getting Started with the License Administration Workbench 2.0 (LAW 2.0) Table of Contents 1 Getting Started with the License

More information

How-To Guide SAP Cloud for Customer Document Version: 1.0-2014-03-20. How to Configure SAP HCI basic authentication for SAP Cloud for Customer

How-To Guide SAP Cloud for Customer Document Version: 1.0-2014-03-20. How to Configure SAP HCI basic authentication for SAP Cloud for Customer How-To Guide SAP Cloud for Customer Document Version: 1.0-2014-03-20 How to Configure SAP HCI basic authentication for SAP Cloud for Customer Document History Document Version Description 1.0 First official

More information

SAP BusinessObjects BI Platform Document Version: 4.2 2015-11-12. Recommendations for Conversion Using the Report Conversion Tool

SAP BusinessObjects BI Platform Document Version: 4.2 2015-11-12. Recommendations for Conversion Using the Report Conversion Tool SAP BusinessObjects BI Platform Document Version: 4.2 2015-11-12 Recommendations for Conversion Using the Report Conversion Tool Content 1 Document History....3 2 About this Document.... 4 3 Conversion

More information

SAP ERP E-Commerce and SAP CRM Web Channel Enablement versions available on the market

SAP ERP E-Commerce and SAP CRM Web Channel Enablement versions available on the market SAP ERP E-Commerce and SAP CRM Web Channel Enablement versions available on the market TABLE OF CONTENTS NAMING... 3 VERSIONS... 3 NETWEAVER TECHNICAL DIFFERENCES... 4 MAINTENANCE PERIODS... 5 UPGRADE

More information

ITM204 Post-Copy Automation for SAP NetWeaver Business Warehouse System Landscapes. October 2013

ITM204 Post-Copy Automation for SAP NetWeaver Business Warehouse System Landscapes. October 2013 ITM204 Post-Copy Automation for SAP NetWeaver Business Warehouse System Landscapes October 2013 Disclaimer This presentation outlines our general product direction and should not be relied on in making

More information

2015-09-24. SAP Operational Process Intelligence Security Guide

2015-09-24. SAP Operational Process Intelligence Security Guide 2015-09-24 SAP Operational Process Intelligence Security Guide Content 1 Introduction.... 3 2 Before You Start....5 3 Architectural Overview.... 7 4 Authorizations and Roles.... 8 4.1 Assigning Roles to

More information

Open Items Analytics Dashboard System Configuration

Open Items Analytics Dashboard System Configuration Author: Vijayakumar Udayakumar vijayakumar.udayakumar@sap.com Target Audience Developers Consultants For validation Document version 0.95 03/05/2013 Open Items Analytics Dashboard Scenario Overview Contents

More information

BW362 SAP NetWeaver BW, powered by SAP HANA

BW362 SAP NetWeaver BW, powered by SAP HANA SAP NetWeaver BW, powered by SAP HANA SAP NetWeaver - Business Intelligence Course Version: 07 Course Duration: 5 Day(s) Publication Date: 05-08-2014 Publication Time: 1210 Copyright Copyright SAP AG.

More information

How To Balance In Sap Bw

How To Balance In Sap Bw How-to Guide SAP NetWeaver 04 How To Load Balancing For Data Load Processing and Warehouse Management In BW Version 1.10 January 2005 Applicable Releases: SAP NetWeaver 04 For source system requirements

More information

Using SQL Server Database Compression with SAP NetWeaver

Using SQL Server Database Compression with SAP NetWeaver Using SQL Server Database Compression with SAP NetWeaver Applies to: All SAP products based on SAP NetWeaver Application Server ABAP 7.0 and higher running on Microsoft SQL Server 2008 and higher. SAP

More information

Software and Delivery Requirements

Software and Delivery Requirements SAP Best Practices for SAP Cloud for Travel and Expense November 2014 English SAP Best Practices for SAP Cloud for Travel and Expense: Software and Delivery Requirements SAP SE Dietmar-Hopp-Allee 16 69190

More information

How-To Guide SAP NetWeaver Document Version: 1.0-2013-12-22. How To Guide - Configure SSL in ABAP System

How-To Guide SAP NetWeaver Document Version: 1.0-2013-12-22. How To Guide - Configure SSL in ABAP System How-To Guide SAP NetWeaver Document Version: 1.0-2013-12-22 Document History Document Version Description 1.0 First official release of this guide Document History 2013 SAP AG or an SAP affiliate company.

More information

SBOP Analysis 2.1, edition for Microsoft Office Additional PAM Information

SBOP Analysis 2.1, edition for Microsoft Office Additional PAM Information SBOP Analysis 2.1, edition for Microsoft Office Additional PAM Information SBOP Analysis Office Maintenance Strategy Data Access Support Functionality Specific Prerequisites SBOP Analysis Office Components

More information

SAP HANA SPS 09 - What s New? SAP HANA Scalability

SAP HANA SPS 09 - What s New? SAP HANA Scalability SAP HANA SPS 09 - What s New? SAP HANA Scalability (Delta from SPS08 to SPS09) SAP HANA Product Management November, 2014 2014 SAP AG or an SAP affiliate company. All rights reserved. 1 Disclaimer This

More information

SAP BW 7.40 Near-Line Storage for SAP IQ What's New?

SAP BW 7.40 Near-Line Storage for SAP IQ What's New? SAP BW 7.40 Near-Line Storage for SAP IQ What's New? Rainer Uhle Product Management SAP EDW (BW / HANA), SAP SE Public Disclaimer This presentation outlines our general product direction and should not

More information

ENHANCEMENTS TO SQL SERVER COLUMN STORES. Anuhya Mallempati #2610771

ENHANCEMENTS TO SQL SERVER COLUMN STORES. Anuhya Mallempati #2610771 ENHANCEMENTS TO SQL SERVER COLUMN STORES Anuhya Mallempati #2610771 CONTENTS Abstract Introduction Column store indexes Batch mode processing Other Enhancements Conclusion ABSTRACT SQL server introduced

More information

SAP Solution Manager - Content Transfer This document provides information on architectural and design questions, such as which SAP Solution Manager

SAP Solution Manager - Content Transfer This document provides information on architectural and design questions, such as which SAP Solution Manager SAP Solution Manager - Content Transfer This document provides information on architectural and design questions, such as which SAP Solution Manager content is transferable and how. TABLE OF CONTENTS PREFACE...

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

SAP BW powered by SAP HANA: Understanding the Impact of HANA Optimized InfoCubes Josh Djupstrom SAP Labs

SAP BW powered by SAP HANA: Understanding the Impact of HANA Optimized InfoCubes Josh Djupstrom SAP Labs [ SAP BW powered by SAP HANA: Understanding the Impact of HANA Optimized InfoCubes Josh Djupstrom SAP Labs [ Objectives At the end of this session, you will be able to: Understand the motivation for HANA

More information

HP Quality Center. Upgrade Preparation Guide

HP Quality Center. Upgrade Preparation Guide HP Quality Center Upgrade Preparation Guide Document Release Date: November 2008 Software Release Date: November 2008 Legal Notices Warranty The only warranties for HP products and services are set forth

More information

SAP BusinessObjects Business Intelligence Suite Document Version: 4.1 Support Package 3-2014-05-07. Patch 3.x Update Guide

SAP BusinessObjects Business Intelligence Suite Document Version: 4.1 Support Package 3-2014-05-07. Patch 3.x Update Guide SAP BusinessObjects Business Intelligence Suite Document Version: 4.1 Support Package 3-2014-05-07 Table of Contents 1 Document History....3 2 Introduction....4 2.1 About this Document....4 2.1.1 Constraints....4

More information

Log Analysis Tool for SAP NetWeaver AS Java

Log Analysis Tool for SAP NetWeaver AS Java Log Analysis Tool for SAP NetWeaver AS Java Applies to: SAP NetWeaver 6.40, 7.0x, 7.1x, 7.20 and higher Summary Log Analysis is an SAP tool for analyzing list formatted logs and traces in Application Server

More information

SAP Sybase Adaptive Server Enterprise Shrinking a Database for Storage Optimization 2013

SAP Sybase Adaptive Server Enterprise Shrinking a Database for Storage Optimization 2013 SAP Sybase Adaptive Server Enterprise Shrinking a Database for Storage Optimization 2013 TABLE OF CONTENTS Introduction... 3 SAP Sybase ASE s techniques to shrink unused space... 3 Shrinking the Transaction

More information

SAP Business One Hardware Requirements Guide

SAP Business One Hardware Requirements Guide Hardware Requirements Guide Document Version: 1.04 2014-08-25 Release 8.8 and higher Typographic Conventions Type Style Example Description Words or characters quoted from the screen. These include field

More information

Innovative technology for big data analytics

Innovative technology for big data analytics Technical white paper Innovative technology for big data analytics The HP Vertica Analytics Platform database provides price/performance, scalability, availability, and ease of administration Table of

More information

Pirelli: Winning the Race for Service Excellence with SAP HANA and SAP ActiveEmbedded

Pirelli: Winning the Race for Service Excellence with SAP HANA and SAP ActiveEmbedded 2013 SAP AG or an SAP affiliate company. All rights reserved. Pirelli: Winning the Race for Service Excellence with SAP HANA and SAP ActiveEmbedded Company Pirelli & C. S.p.A. Need for speed Headquarters

More information

The Arts & Science of Tuning HANA models for Performance. Abani Pattanayak, SAP HANA CoE Nov 12, 2015

The Arts & Science of Tuning HANA models for Performance. Abani Pattanayak, SAP HANA CoE Nov 12, 2015 The Arts & Science of Tuning HANA models for Performance Abani Pattanayak, SAP HANA CoE Nov 12, 2015 Disclaimer This presentation outlines our general product direction and should not be relied on in making

More information

LVS Troubleshooting Common issues and solutions

LVS Troubleshooting Common issues and solutions LVS Troubleshooting Common issues and solutions www.sap.com TABLE OF CONTENT INSTALLATION... 3 No SQL Instance found... 3 Server reboots after LVS installs... 3 LVS Service does not start after update...

More information

Complementary Demo Guide

Complementary Demo Guide Complementary Demo Guide Lockbox Payment Process SAP Business ByDesign SAP Business ByDesign Global August 15, 2014 SAP Cloud Reference Systems Table of Content 1 About this Document... 3 1.1 Purpose...

More information

Contents. About this Support Package / Patch...5. To install the EPM Add-in for Microsoft Office Support Package 15 / Patch XX...

Contents. About this Support Package / Patch...5. To install the EPM Add-in for Microsoft Office Support Package 15 / Patch XX... SAP BusinessObjects EPM Add-in for Microsoft Office Support Package 15 / Patch XX Installation Procedure SAP BusinessObjects EPM solutions, add-in for Microsoft Office 10.0 Support Package 15 / Patch XX

More information

Ariba Procure-to-Pay Integration rapiddeployment

Ariba Procure-to-Pay Integration rapiddeployment September 2015 English Ariba Procure-to-Pay Integration rapiddeployment solution: Software and Delivery Requirements SAP SE Dietmar-Hopp-Allee 16 69190 Walldorf Germany Document Revisions Date 0 May 11,

More information

Problems with your Data Model in SAP NetWeaver MDM Do s and Don ts

Problems with your Data Model in SAP NetWeaver MDM Do s and Don ts How-to Guide SAP NetWeaver 7.0 (2004s) How to Avoid Problems with your Data Model in SAP NetWeaver MDM Do s and Don ts Version 1.00 May 2007 Applicable Releases: SAP NetWeaver 2004 SAP NetWeaver 7.0 (2004s)

More information

Compare & Adjust How to Guide for Compare & Adjust in SAP Solution Manager Application Lifecycle Management

Compare & Adjust How to Guide for Compare & Adjust in SAP Solution Manager Application Lifecycle Management Compare & Adjust How to Guide for Compare & Adjust in SAP Solution Manager Application Lifecycle Management www.sap.com TABLE OF CONTENTS COPYRIGHT... 3 1.0 Motivation... 4 2.0 Method and Prerequisites...

More information

SAP BusinessObjects Increasing Stability by Setting Limits on Max. Retrievable Cells from SAP BW into Web Intelligence using BICS

SAP BusinessObjects Increasing Stability by Setting Limits on Max. Retrievable Cells from SAP BW into Web Intelligence using BICS SAP BusinessObjects Increasing Stability by Setting Limits on Max. Retrievable Cells from SAP BW into Web Intelligence using BICS Applies to: SAP BusinessObjects BI 4.0 Web Intelligence from patch 16,

More information

HP SiteScope. HP Vertica Solution Template Best Practices. For the Windows, Solaris, and Linux operating systems. Software Version: 11.

HP SiteScope. HP Vertica Solution Template Best Practices. For the Windows, Solaris, and Linux operating systems. Software Version: 11. HP SiteScope For the Windows, Solaris, and Linux operating systems Software Version: 11.23 HP Vertica Solution Template Best Practices Document Release Date: December 2013 Software Release Date: December

More information

Landscape Design and Integration. SAP Mobile Platform 3.0 SP02

Landscape Design and Integration. SAP Mobile Platform 3.0 SP02 Landscape Design and Integration SAP Mobile Platform 3.0 SP02 DOCUMENT ID: DC01916-01-0302-01 LAST REVISED: February 2014 Copyright 2014 by SAP AG or an SAP affiliate company. All rights reserved. No part

More information

RDP300 - Real-Time Data Warehousing with SAP NetWeaver Business Warehouse 7.40. October 2013

RDP300 - Real-Time Data Warehousing with SAP NetWeaver Business Warehouse 7.40. October 2013 RDP300 - Real-Time Data Warehousing with SAP NetWeaver Business Warehouse 7.40 October 2013 Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase

More information

Unicenter Patch Management

Unicenter Patch Management Unicenter Patch Management Best Practices for Managing Security Updates R11 This documentation (the Documentation ) and related computer software program (the Software ) (hereinafter collectively referred

More information

SAP HANA In-Memory Database Sizing Guideline

SAP HANA In-Memory Database Sizing Guideline SAP HANA In-Memory Database Sizing Guideline Version 1.4 August 2013 2 DISCLAIMER Sizing recommendations apply for certified hardware only. Please contact hardware vendor for suitable hardware configuration.

More information

CBW NLS ADK-based Nearline Storage Solution

CBW NLS ADK-based Nearline Storage Solution CBW NLS ADK-based Nearline Storage Solution Keep Seamless BW Query Access to Database and Archived Data Dr. Klaus Zimmer, PBS Software GmbH Agenda Motivation Nearline Storage in SAP BW Architecture ADK-based

More information

How to Configure an Example SAP Cloud Applications Studio (PDI) Solution for SAP Cloud for Customer

How to Configure an Example SAP Cloud Applications Studio (PDI) Solution for SAP Cloud for Customer How-To Guide Document Version: 1411 2014.12.15 How to Configure an Example SAP Cloud Applications Studio (PDI) Solution for SAP Cloud for Customer How to configure an example SAP Cloud Applications Studio

More information

How-To Guide for SAP Advanced Planning and Optimization, Demand Planning Add-In for Microsoft Excel

How-To Guide for SAP Advanced Planning and Optimization, Demand Planning Add-In for Microsoft Excel How-To Guide SAP Advanced Planning and Optimization, demand planning add-in for Microsoft Excel Document Version: 1.10 2015-04-10 CUSTOMER How-To Guide for SAP Advanced Planning and Optimization, Demand

More information

Streamline Processes and Gain Business Insights in the Cloud

Streamline Processes and Gain Business Insights in the Cloud SAP Brief SAP s for Small Businesses and Midsize Companies SAP Business One Cloud Objectives Streamline Processes and Gain Business Insights in the Cloud Drive profitable growth affordably and without

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

SAP 3D Visual Enterprise Rapid-Deployment Solution

SAP 3D Visual Enterprise Rapid-Deployment Solution SAP 3D Visual Enterprise 8.0 July 2014 English SAP 3D Visual Enterprise Rapid-Deployment Solution SAP AG Dietmar-Hopp-Allee 16 69190 Walldorf Germany Copyright 2014 SAP AG or an SAP affiliate company.

More information

SAP Project Portfolio Monitoring Rapid- Deployment Solution: Software Requirements

SAP Project Portfolio Monitoring Rapid- Deployment Solution: Software Requirements SAP Portfolio and Project Management 5.0 July 2013 English SAP Project Portfolio Monitoring Rapid- Deployment Solution: SAP AG Dietmar-Hopp-Allee 16 69190 Walldorf Germany Copyright 2013 SAP AG or an SAP

More information

SAP Business Intelligence Adoption V7.41:Software and Delivery Requirements. SAP Business Intelligence Adoption August 2015 English

SAP Business Intelligence Adoption V7.41:Software and Delivery Requirements. SAP Business Intelligence Adoption August 2015 English Business Intelligence Adoption August 2015 English Business Intelligence Adoption V7.41:Software and Delivery Requirements SE Dietmar-Hopp-Allee 16 69190 Walldorf Germany Document Revisions Date 0 6/26/2015

More information

7.x Upgrade Instructions. 2015 Software Pursuits, Inc.

7.x Upgrade Instructions. 2015 Software Pursuits, Inc. 7.x Upgrade Instructions 2015 Table of Contents INTRODUCTION...2 SYSTEM REQUIREMENTS FOR SURESYNC 7...2 CONSIDERATIONS BEFORE UPGRADING...3 TERMINOLOGY CHANGES... 4 Relation Renamed to Job... 4 SPIAgent

More information

Best Practices for Dashboard Design with SAP BusinessObjects Design Studio

Best Practices for Dashboard Design with SAP BusinessObjects Design Studio Ingo Hilgefort, SAP Mentor February 2015 Agenda Best Practices on Dashboard Design Performance BEST PRACTICES FOR DASHBOARD DESIGN WITH SAP BUSINESSOBJECTS DESIGN STUDIO DASHBOARD DESIGN What is a dashboard

More information

HP ProLiant DL580 Gen8 and HP LE PCIe Workload WHITE PAPER Accelerator 90TB Microsoft SQL Server Data Warehouse Fast Track Reference Architecture

HP ProLiant DL580 Gen8 and HP LE PCIe Workload WHITE PAPER Accelerator 90TB Microsoft SQL Server Data Warehouse Fast Track Reference Architecture WHITE PAPER HP ProLiant DL580 Gen8 and HP LE PCIe Workload WHITE PAPER Accelerator 90TB Microsoft SQL Server Data Warehouse Fast Track Reference Architecture Based on Microsoft SQL Server 2014 Data Warehouse

More information

SAP HANA SAP s In-Memory Database. Dr. Martin Kittel, SAP HANA Development January 16, 2013

SAP HANA SAP s In-Memory Database. Dr. Martin Kittel, SAP HANA Development January 16, 2013 SAP HANA SAP s In-Memory Database Dr. Martin Kittel, SAP HANA Development January 16, 2013 Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase

More information

An Overview of SAP BW Powered by HANA. Al Weedman

An Overview of SAP BW Powered by HANA. Al Weedman An Overview of SAP BW Powered by HANA Al Weedman About BICP SAP HANA, BOBJ, and BW Implementations The BICP is a focused SAP Business Intelligence consulting services organization focused specifically

More information

Working Capital Analytics Overview. SAP Business Suite Application Innovation March 2015

Working Capital Analytics Overview. SAP Business Suite Application Innovation March 2015 Working Capital Analytics Overview SAP Business Suite Application Innovation March 2015 Abstract As of Smart Financials 1.0 SP02 SAP delivers Working Capital Analytics DSO Analysis Working Capital Analytics

More information

Greater Continuity, Consistency, and Timeliness with Business Process Automation

Greater Continuity, Consistency, and Timeliness with Business Process Automation SAP Brief Extensions SAP Business Process Automation by Redwood Objectives Greater Continuity, Consistency, and Timeliness with Business Process Automation Streamline critical enterprise processes Streamline

More information

IBM DB2 Near-Line Storage Solution for SAP NetWeaver BW

IBM DB2 Near-Line Storage Solution for SAP NetWeaver BW IBM DB2 Near-Line Storage Solution for SAP NetWeaver BW A high-performance solution based on IBM DB2 with BLU Acceleration Highlights Help reduce costs by moving infrequently used to cost-effective systems

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

Software and Delivery Requirements

Software and Delivery Requirements EHP3 for SCM 7.0 March 2015 English Demand and Supply Network Planning rapiddeployment solution: Software and Delivery Requirements SE Dietmar-Hopp-Allee 16 69190 Walldorf Germany Document Revisions Date

More information

PBS archive add on CBW

PBS archive add on CBW PBS archive add on CBW ADK-based Nearline Storage Solution for SAP BW 3.x PBS Software GmbH, Dr. Klaus Zimmer, 2010 1 Agenda Introduction: Data Archiving and Nearline Storage in SAP NW BW PBS Concepts

More information

Price and Revenue Management - Manual Price Changes. SAP Best Practices for Retail

Price and Revenue Management - Manual Price Changes. SAP Best Practices for Retail Price and Revenue Management - Manual Price Changes SAP Best Practices for Retail Purpose, Benefits, and Key Process Steps Purpose For the creation of manual price changes via the Price Planning Workbench,

More information

Tap into Big Data at the Speed of Business

Tap into Big Data at the Speed of Business SAP Brief SAP Technology SAP Sybase IQ Objectives Tap into Big Data at the Speed of Business A simpler, more affordable approach to Big Data analytics A simpler, more affordable approach to Big Data analytics

More information

CUSTOMER Presentation of SAP Predictive Analytics

CUSTOMER Presentation of SAP Predictive Analytics SAP Predictive Analytics 2.0 2015-02-09 CUSTOMER Presentation of SAP Predictive Analytics Content 1 SAP Predictive Analytics Overview....3 2 Deployment Configurations....4 3 SAP Predictive Analytics Desktop

More information

System Copy GT Manual 1.8 Last update: 2015/07/13 Basis Technologies

System Copy GT Manual 1.8 Last update: 2015/07/13 Basis Technologies System Copy GT Manual 1.8 Last update: 2015/07/13 Basis Technologies Table of Contents Introduction... 1 Prerequisites... 2 Executing System Copy GT... 3 Program Parameters / Selection Screen... 4 Technical

More information

SAP Business Intelligence Suite Patch 10.x Update Guide

SAP Business Intelligence Suite Patch 10.x Update Guide SAP BusinessObjects Business Intelligence Suite Document Version: 4.0 Support Package 10-2014-07-25 SAP Business Intelligence Suite Patch 10.x Update Guide Table of Contents 1 Introduction.... 3 1.1 About

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

Data Compression in Blackbaud CRM Databases

Data Compression in Blackbaud CRM Databases Data Compression in Blackbaud CRM Databases Len Wyatt Enterprise Performance Team Executive Summary... 1 Compression in SQL Server... 2 Perform Compression in Blackbaud CRM Databases... 3 Initial Compression...

More information

GR5 Access Request. Process Diagram

GR5 Access Request. Process Diagram GR5 Access Request Process Diagram Purpose, Benefits, and Key Process Steps Purpose This scenario uses business roles to show a new user access provisioning and also demo using simplified access request

More information

SAP BusinessObjects Design Studio Document Version: 1.2-2013-11-12. What's New Guide: SAP BusinessObjects Design Studio

SAP BusinessObjects Design Studio Document Version: 1.2-2013-11-12. What's New Guide: SAP BusinessObjects Design Studio SAP BusinessObjects Design Studio Document Version: 1.2-2013-11-12 What's New Guide: SAP BusinessObjects Design Studio Table of Contents 1 About This Guide....3 2 About the Documentation Set....4 3 New

More information

Rapid database migration of SAP Business Suite to SAP HANA (V4.10): Software and Delivery Requirements. SAP HANA November 2014 English

Rapid database migration of SAP Business Suite to SAP HANA (V4.10): Software and Delivery Requirements. SAP HANA November 2014 English November 2014 English Rapid database migration of SAP Business Suite to (V4.10): Software and Delivery Requirements SAP SE Dietmar-Hopp-Allee 16 69190 Walldorf Germany Copyright 2014 SAP SE or an SAP affiliate

More information

SAP MII for Manufacturing rapid-deployment solution: Software Requirements

SAP MII for Manufacturing rapid-deployment solution: Software Requirements MII 15.0 October 2015 English SAP MII for Manufacturing rapid-deployment solution: SAP SE Dietmar-Hopp-Allee 16 69190 Walldorf Germany Copyright 2015 SAP SE or an SAP affiliate company. All rights reserved.

More information

Cut Costs and Improve Agility by Simplifying and Automating Common System Administration Tasks

Cut Costs and Improve Agility by Simplifying and Automating Common System Administration Tasks SAP Brief Objectives Cut Costs and Improve Agility by Simplifying and Automating Common System Administration Tasks Simplify management of SAP software landscapes Simplify management of SAP software landscapes

More information