SAP HANA. Markus Fath, SAP HANA Product Management June 2013

Size: px
Start display at page:

Download "SAP HANA. Markus Fath, SAP HANA Product Management June 2013"

Transcription

1 SAP HANA Markus Fath, SAP HANA Product Management June 2013

2 Agenda What is SAP HANA? How do I use SAP HANA? How can I develop applications on SAP HANA? That s it? 2013 SAP AG. All rights reserved. Public 2

3 What is SAP HANA? SAP HANA is an in-memory data platform that is deployable as an onpremise appliance, or in the cloud. It is a revolutionary platform that s best suited for performing real-time analytics, and developing and deploying real-time applications. At the core of this real-time data platform is the SAP HANA database which is fundamentally different than any other database engine in the market today SAP AG. All rights reserved. Public 3

4 What is SAP HANA? In-memory database hardware - 8 CPU*10 cores, 1TB RAM software - column store, compression, partitioning 3B scans/s/core, 12.5 aggregations/s/core Analytics real-time analyze as data keeps rolling in agility logical views Applications integrated, lightweight application server 2013 SAP AG. All rights reserved. Public 4

5 What is SAP HANA? Side-by-Side Scenarios (2010) Agile Data Marts Real-time Operational Reporting SAP BW on HANA (2011) SAP HANA as primary persistence SAP NW Application Server on HANA SAP HANA as data platform (2012) SAP HANA for SAP Business Suite SAP HANA for custom applications 2013 SAP AG. All rights reserved. Public 5

6 How do I use SAP HANA?

7 Storing data in SAP HANA SAP HANA speaks SQL. > CREATE SCHEMA ka; > CREATE TABLE ka.complaints (cmplid INT, ); > INSERT INTO ka.complaints VALUES (1, ); > SELECT cmplid, FROM ka.complaints; 2013 SAP AG. All rights reserved. Public 7

8 Storing data in SAP HANA Applications writing directly into SAP HANA Real-time replication using SAP LT Replication Service Data loaded from files using IMPORT / INSERT Message queue integration with Sybase ESP ][ ][ ][ Data loaded at certain events using Business Objects Data Services 2013 SAP AG. All rights reserved. Public 8

9 Using data in SAP HANA You define views, to make data easily accessible to everyone SAP AG. All rights reserved. Public 9

10 Using data in SAP HANA Attribute View Calculation View T T T T Views enable real real-time computing by transforming data on the fly. T T T T T T T Table Analytic View 2013 SAP AG. All rights reserved. Public 10

11 Attribute View 2013 SAP AG. All rights reserved. Public 11

12 Analytic View 2013 SAP AG. All rights reserved. Public 12

13 Calculation View 2013 SAP AG. All rights reserved. Public 13

14 Using data in SAP HANA Query SELECT FROM WHERE Statement Processor Calculation Engine Execution plan Op Op Op Op Data Stores Views Op Op Op Op Persistency Layer Save Point Logs 2013 SAP AG. All rights reserved. Public 14

15 Using data in SAP HANA SAP Business Objects BI Analytical applications build with BI Suite products Apps on HANA Applications on any platform using SQL via ODBC/JDBC SQL, MDX Modeler Views Analytic Engine Calculation Engine Engines Tables SAP HANA Studio App Objects Store SAP HANA 2013 SAP AG. All rights reserved. Public 15

16 Using data in SAP HANA SAP Business Objects provides an entire suite of BI front-ends to access data in SAP HANA SAP Business Objects Crystal Reports SAP Business Objects WebIntelligence SAP Business Objects Analysis for MS Excel SAP Business Objects Explorer SAP Business Objects Visual Intelligence 2013 SAP AG. All rights reserved. Public 16

17 Developing for SAP HANA

18 SAP HANA Programming Model Paradigm Shift - Responsibilities in Runtime Layers Classic Application Server Layers HANA Native Applications Client Display pre-rendered UI Proprietary Protocol Application Server UI Rendering Application Logic DBI/DBSL, DB buffer Browser Complete UI Rendering HANA http(s), OData (pure data only) Extended Application Services Procedural Application Logic HdbNet (minimal data volume) Database SQL SQL Database Data-intense Application Logic 2013 SAP AG. All rights reserved. Public 18

19 SAP HANA Programming Model Technologies Presentation HTML5 / SAPUI5 Client-side JavaScript Browser Complete UI Rendering http(s), OData (pure data only) Control Flow OData Server-side JavaScript Data Processing SQL / Views / SQLScript Application Function Library (AFL) HANA Extended Application Services Procedural Application Logic Database HdbNet (minimal data volume) Data-intense Application Logic 2013 SAP AG. All rights reserved. Public 19

20 SAP HANA Native Applications SQLScript What is SQLScript? Interface for applications to access SAP HANA; extension of ANSI Standard SQL Language for creating stored procedures Declarative logic including SELECT queries, built-in Calculation Engine Functions Orchestration logic including Data Definition Language (DDL), Data Manipulation Language (DML), assignment, imperative logic SQLScript allows execution of data intensive calculations inside SAP HANA Eliminates need to transfer large amounts of data from the database to the application Maximum benefit from SAP HANA features such as fast column operations, query optimization and parallel execution Advantages (compared to SQL) Functions can return multiple results Complex functions can be broken down - modular programming, reuse, and understandability Functions can have parameters Supports local variables for intermediate results with implicitly defined types Provides control logic such as if/else 2013 SAP AG. All rights reserved. Public 20

21 SQLScript Code example using SQL CREATE PROCEDURE getcomplaintsaggsql ( in cmplid INTEGER, out o_complaints tt_complaints) LANGUAGE SQLSCRIPT SQL SECURITY INVOKER READS SQL DATA AS BEGIN /***************************** Write your procedure logic *****************************/ ta_complaints = SELECT CMPLID, MAKE, MODEL, CDESCR, COUNTER FROM "KA"."COMPLAINTS"; ag_complaints = SELECT MAKE, SUM(COUNTER) AS TOTAL_FOR_MAKE FROM "KA"."COMPLAINTS" GROUP BY MAKE; jo_complaints = SELECT T1.CMPLID, T1.MAKE, T1.MODEL, T1.CDESCR, T1.COUNTER, T2.TOTAL_FOR_MAKE FROM :ta_complaints AS T1, :ag_complaints AS T2 WHERE T1.MAKE = T2.MAKE; o_complaints = SELECT CMPLID, MAKE, MODEL, COUNTER, TOTAL_FOR_MAKE FROM :jo_complaints WHERE CMPLID = :cmplid; END; Q1 Complaints Q3 Q4 Result Q SAP AG. All rights reserved. Public 21

22 Using data in SAP HANA Set Operations Operation Calculations on Data Business Function Calls R Procedure Calls Predictive Analysis Algorithms Operations can be all sorts of operations on data not just basic SQL operations but also more complex logic 2013 SAP AG. All rights reserved. Public 22

23 SAP HANA Application Function Library What is Application Function Library (AFL)? Set of native, pre-built, parameter-driven, commonly used algorithms Optimized for performance Functions can be called from SQLScript The Business Function Library (BFL) contains algorithms primarily related to finance Stock Flow, Lease, Depreciation, Discounted cash flow, Inflated cash flow, The Predictive Analysis Library (PAL) contains algorithms primarily related to predictive analysis and data mining Regressions, KNN, k-means, Exponential Smoothing, Apriori, 2013 SAP AG. All rights reserved. Public 23

24 SAP HANA Programming Model Technologies Presentation HTML5 / SAPUI5 Client-side JavaScript Browser Complete UI Rendering http(s), OData (pure data only) Control Flow OData Server-side JavaScript Data Processing SQL / Views / SQLScript Application Function Library (AFL) HANA Extended Application Services Procedural Application Logic Database HdbNet (minimal data volume) Data-intense Application Logic 2013 SAP AG. All rights reserved. Public 24

25 SAP HANA Extended Application Services What are Extended Application Services? Small footprint application server / web server for application development inside SAP HANA Enable application development and deployment while minimizing architectural layers Create apps that have an http-based UI (browser, mobile apps) Apps run directly on SAP HANA, w/o additional external servers or components simplified system architecture; low TCO Tight integration with SAP HANA DB best possible performance Scope Lightweight web-based applications Complex Enterprise Business Applications 2013 SAP AG. All rights reserved. Public 25

26 SAP HANA Extended Application Services OData Service Implementation 2013 SAP AG. All rights reserved. Public 26

27 SAP HANA Extended Application Services JavaScript Service Implementation var isearchterm= $.request.parameters.get('searchterm'); var output = ''; var list = []; function createentry(rs){ return { "CMPLID" : rs.getinteger(1), "MAKE" : rs.getstring(2), "MODEL" : rs.getstring(3), "CDESCR" : rs.getstring(4) }; } var query = "SELECT CMPLID, MAKE, MODEL, CDESCR FROM \"KA\".\"COMPLAINTS\" " + "WHERE CONTAINS (CDESCR,?) ORDER BY SCORE() DESC LIMIT 10 "; var dbconn = $.db.getconnection(); var stmt = dbconn.preparecall( query ); stmt.setstring(1, isearchterm); stmt.execute(); var result = stmt.getresultset(); while (result.next()) { list.push(createentry(result)); } result.close(); stmt.close(); dbconn.close(); output = JSON.stringify( {"entries": list } ); $.response.setbody(output); $.response.contenttype = 'text/json'; 2013 SAP AG. All rights reserved. Public 27

28 SAP HANA Programming Model Technologies Presentation HTML5 / SAPUI5 Client-side JavaScript Browser Complete UI Rendering http(s), OData (pure data only) Control Flow OData Server-side JavaScript Data Processing SQL / Views / SQLScript Application Function Library (AFL) HANA Extended Application Services Procedural Application Logic Database HdbNet (minimal data volume) Data-intense Application Logic 2013 SAP AG. All rights reserved. Public 28

29 SAP HANA SAPUI5 SAP UI development toolkit for HTML5 (SAPUI5) is a cross-browser JavaScript library for building rich internet applications SAP AG. All rights reserved. Public 29

30 SAP HANA SAPUI5 //Create an instance of the table control var otable = new sap.ui.table.table({ title: "Complaints", visiblerowcount: 10, firstvisiblerow: 1, columnheaderheight: 30, navigationmode: sap.ui.table.navigationmode.paginator }); //Define the columns and the control templates to be used otable.addcolumn(new sap.ui.table.column({ label: new sap.ui.commons.label({text: "ID"}), template: new sap.ui.commons.textfield().bindproperty("value", "CMPLID"), sortproperty: "CMPLID", filterproperty: "CMPLID", width: "50px" })); otable.addcolumn(new sap.ui.table.column({ label: new sap.ui.commons.label({text: "Make"}), template: new sap.ui.commons.textfield().bindproperty("value", "MAKE"), sortproperty: "MAKE", filterproperty: "MAKE", width: "50px" }));... //Create a model and bind the table rows to this model var omodel = new sap.ui.model.odata.odatamodel("../data/complaints.xsodata/", false); otable.setmodel(omodel); otable.bindrows("/complaints"); otable.placeat('result'); 2013 SAP AG. All rights reserved. Public 30

31 SAP HANA Studio Development Perspective and Repository Environment for building native HANA applications Developing Testing Debugging Supportability Lifecycle Management Application objects are stored in the repository Versioning Packaging Transport 2013 SAP AG. All rights reserved. Public 31

32 What else?

33 Using data in SAP HANA HANA Search UI Search UI configured with the Info Access (InA) toolkit for HTML5 running natively on SAP HANA HANA App built with SAPUI5 Application running natively on / against SAP HANA SAP Business Objects BI Analytical applications build with BI Suite products Apps on HANA Applications on any platform using SQL via ODBC/JDBC SQL, MDX Info Access (InA) Service server-side JS, OData Extended Application Services Modeler, Dev. Workbench Views Procedures JS code Search Engine Analytic Engine Calculation Engine Engines Tables Linguistic Processing Entity, Fact Extraction SAP HANA Studio App Objects Store Preprocessor SAP HANA 2013 SAP AG. All rights reserved. Public 33

34 SAP HANA Fulltext Search and Text Analysis Capabilities Native full text search In-database text analysis Graphical modeling of search models Info Access (InA) toolkit for HTML5 UIs Benefits Exploit unstructured content in SAP HANA without additional costs Extract meaningful information from text Combine structured and unstructured information for unified information access Less data duplication and movement leverage one infrastructure for analytical and search workloads Speed up HTML5 application development InA toolkit 2013 SAP AG. All rights reserved. Public 34

35 SAP HANA Search Model Example 2013 SAP AG. All rights reserved. Public 35

36 SAP HANA Info Access (InA) toolkit for HTML SAP AG. All rights reserved. Public 36

37 SAP HANA Text Analysis Source Table COMPLAINTS CREATE FULLTEXT INDEX FTI_COMPLAINTS ON COMPLAINTS(CDESCR) CONFIGURATION 'EXTRACTION_CORE' TEXT ANALYSIS ON; 2013 SAP AG. All rights reserved. Public 37

38 SAP HANA Text Analysis Downstream Processing Text Analysis results are stored in a table and therefore can be leveraged in all supported HANA scenarios Standard analytics Create Analytic Views and Calculation Views on top e.g. companies mentioned in news articles over time Data mining, predictive Use R, Predictive Analysis Library (PAL) functions e.g. clustering, time series analysis etc. Search Based Applications Create a search model and build a search UI with the HANA Info Access (InA) toolkit for HTML5 Text Analysis results can be used to navigate and filter search results e.g. people finder, search UI for internal documents 2013 SAP AG. All rights reserved. Public 38

39 Use Cases Real-time analytics on large data volumes Financials Production planning, monitoring Sales optimization Combine structured and unstructured information Patent research Consumer sentiment analysis, brand monitoring Healthcare 2013 SAP AG. All rights reserved. Public 39

40 How to get started

41 SAP HANA Developer edition For product evaluations, trials, students, data exploration projects, etc. Software is free, developers pay cloud provider for server usage. Focused on small- to mid-sized data footprint, with non-productive use only Community supported through Available of choice on 4 public cloud providers SAP AG. All rights reserved. Public 41

42 Additional Resources 30 days trial, development community Additional information, e.g. use cases Videos and courses Online documentation, e.g. Developer Guide 2013 SAP AG. All rights reserved. Public 42

43 Thank you Contact information: Markus Fath SAP HANA Product Management

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

SAP HANA als Entwicklungsplattform. Matthias Kupczak HANA Center of Excellence (CoE) Switzerland SAP Forum - 12. Juni 2013

SAP HANA als Entwicklungsplattform. Matthias Kupczak HANA Center of Excellence (CoE) Switzerland SAP Forum - 12. Juni 2013 SAP HANA als Entwicklungsplattform Matthias Kupczak HANA Center of Excellence (CoE) Switzerland SAP Forum - 12. Juni 2013 1 SAP HANA A Database for application logic? 2 3 SAP HANA 4 Extended Services (XS)

More information

SAP HANA Core Data Services (CDS) Reference

SAP HANA Core Data Services (CDS) Reference PUBLIC SAP HANA Platform SPS 12 Document Version: 1.0 2016-05-11 Content 1 Getting Started with Core Data Services....4 1.1 Developing Native SAP HANA Applications....5 1.2 Roles and Permissions....7 1.3

More information

Introduction to SAP HANA SQLScript Rich Heilman SESSION CODE: BT162

Introduction to SAP HANA SQLScript Rich Heilman SESSION CODE: BT162 Introduction to SAP HANA SQLScript Rich Heilman SESSION CODE: BT162 Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase decision. This presentation

More information

A Few Cool Features in BW 7.4 on HANA that Make a Difference

A Few Cool Features in BW 7.4 on HANA that Make a Difference A Few Cool Features in BW 7.4 on HANA that Make a Difference Here is a short summary of new functionality in BW 7.4 on HANA for those familiar with traditional SAP BW. I have collected and highlighted

More information

Predictive Analytics Powered by SAP HANA. Cary Bourgeois Principal Solution Advisor Platform and Analytics

Predictive Analytics Powered by SAP HANA. Cary Bourgeois Principal Solution Advisor Platform and Analytics Predictive Analytics Powered by SAP HANA Cary Bourgeois Principal Solution Advisor Platform and Analytics Agenda Introduction to Predictive Analytics Key capabilities of SAP HANA for in-memory predictive

More information

SAP HANA Update Overview of SAP HANA SPS 08

SAP HANA Update Overview of SAP HANA SPS 08 SAP HANA Update Overview of SAP HANA SPS 08 SAP HANA Rob Lightfoot - SAP MENA, 2014 V2.0 Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase

More information

SAP HANA In-Memory in Virtualized Data Centers. Arne Arnold, SAP HANA Product Management January 2013

SAP HANA In-Memory in Virtualized Data Centers. Arne Arnold, SAP HANA Product Management January 2013 SAP HANA In-Memory in Virtualized Data Centers Arne Arnold, SAP HANA Product Management January 2013 Agenda Virtualization In-Memory Pros & Cons with In-Memory Computing Virtualized SAP HANA Platform What

More information

Exploring the Synergistic Relationships Between BPC, BW and HANA

Exploring the Synergistic Relationships Between BPC, BW and HANA September 9 11, 2013 Anaheim, California Exploring the Synergistic Relationships Between, BW and HANA Sheldon Edelstein SAP Database and Solution Management Learning Points SAP Business Planning and Consolidation

More information

SAP HANA Cloud Platform

SAP HANA Cloud Platform SAP HANA Cloud Platform Introduction Rui Nogueira, SAP AG - TIP CORE June 12 th, 2013 Building An Application For The Cloud 2013 SAP AG or an SAP affiliate company. All rights reserved. 2 Building an Enterprise-Ready

More information

[Analysts: Dr. Carsten Bange, Larissa Seidler, September 2013]

[Analysts: Dr. Carsten Bange, Larissa Seidler, September 2013] BARC RESEARCH NOTE SAP BusinessObjects Business Intelligence with SAP HANA [Analysts: Dr. Carsten Bange, Larissa Seidler, September 2013] This document is not to be shared, distributed or reproduced in

More information

Maximierung des Geschäftserfolgs durch SAP Predictive Analytics. Andreas Forster, May 2014

Maximierung des Geschäftserfolgs durch SAP Predictive Analytics. Andreas Forster, May 2014 Maximierung des Geschäftserfolgs durch SAP Predictive Analytics Andreas Forster, May 2014 Legal Disclaimer The information in this presentation is confidential and proprietary to SAP and may not be disclosed

More information

SAP NetWeaver Information Lifecycle Management

SAP NetWeaver Information Lifecycle Management SAP NetWeaver Information Lifecycle Management What s New in Release 7.03 and Future Direction June 2012 SAP NetWeaver Information Lifecycle Management Information lifecycle management Retention management

More information

SAP HANA SPS 09 - What s New? HANA IM Services: SDI and SDQ

SAP HANA SPS 09 - What s New? HANA IM Services: SDI and SDQ SAP HANA SPS 09 - What s New? HANA IM Services: SDI and SDQ (Delta from SPS 08 to SPS 09) SAP HANA Product Management November, 2014 2014 SAP SE or an SAP affiliate company. All rights reserved. 1 Agenda

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

An In-Depth Look at In-Memory Predictive Analytics for Developers

An In-Depth Look at In-Memory Predictive Analytics for Developers September 9 11, 2013 Anaheim, California An In-Depth Look at In-Memory Predictive Analytics for Developers Philip Mugglestone SAP Learning Points Understand the SAP HANA Predictive Analysis library (PAL)

More information

Extend your analytic capabilities with SAP Predictive Analysis

Extend your analytic capabilities with SAP Predictive Analysis September 9 11, 2013 Anaheim, California Extend your analytic capabilities with SAP Predictive Analysis Charles Gadalla Learning Points Advanced analytics strategy at SAP Simplifying predictive analytics

More information

SAP HANA Cloud Portal Overview and Scenarios

SAP HANA Cloud Portal Overview and Scenarios SAP HANA Cloud Portal Overview and Scenarios HERUG 2014 Conference - Montevideo April 2014 Twitter: @portal_sap / #hanacloudportal HERUG 2014 Conference Event Website Event overview Information and Agenda

More information

SAP HANA Cloud Platform

SAP HANA Cloud Platform SAP HANA Cloud Platform SAP Forum 2015 César Martín 12 de marzo de 2015 SAP HANA Cloud Platform Build, extend, and run next-generation applications on SAP HANA in the cloud The in-memory cloud platform-as-a-service

More information

SAP Technology Overview and Strategy

SAP Technology Overview and Strategy SAP Technology Overview and Strategy Helmut Grimm, Sr. Director Global Business Development, SAP AG Arne Speck, Solution Principal Technology, SAP Switzerland Disclaimer This presentation outlines our

More information

SAP Real-time Data Platform. April 2013

SAP Real-time Data Platform. April 2013 SAP Real-time Data Platform April 2013 Agenda Introduction SAP Real Time Data Platform Overview SAP Sybase ASE SAP Sybase IQ SAP EIM Questions and Answers 2012 SAP AG. All rights reserved. 2 Introduction

More information

SAP HANA Live for SAP Business Suite. David Richert Presales Expert BI & EIM May 29, 2013

SAP HANA Live for SAP Business Suite. David Richert Presales Expert BI & EIM May 29, 2013 SAP HANA Live for SAP Business Suite David Richert Presales Expert BI & EIM May 29, 2013 Agenda Next generation business requirements for Operational Analytics SAP HANA Live - Platform for Real-Time Intelligence

More information

SAP Business Suite powered by SAP HANA

SAP Business Suite powered by SAP HANA SAP Business Suite powered by SAP HANA CeBIT 2013, March 5 th Bernd Leukert, Corporate Officer and Executive Vice President Application Innovation, SAP AG Magnitude of Change: Omission of Restrictions

More information

OWB Users, Enter The New ODI World

OWB Users, Enter The New ODI World OWB Users, Enter The New ODI World Kulvinder Hari Oracle Introduction Oracle Data Integrator (ODI) is a best-of-breed data integration platform focused on fast bulk data movement and handling complex data

More information

What's New in SAS Data Management

What's New in SAS Data Management Paper SAS034-2014 What's New in SAS Data Management Nancy Rausch, SAS Institute Inc., Cary, NC; Mike Frost, SAS Institute Inc., Cary, NC, Mike Ames, SAS Institute Inc., Cary ABSTRACT The latest releases

More information

Business Intelligence Competency Partners Untangling the Confusion What SAP BW powered by HANA and HANA LIVE mean to your organization

Business Intelligence Competency Partners Untangling the Confusion What SAP BW powered by HANA and HANA LIVE mean to your organization Business Intelligence Competency Partners Untangling the Confusion What SAP BW powered by HANA and HANA LIVE mean to your organization Sven Jensen Program Director Audience, Objective & Agenda This presentation

More information

What's New in SAP HANA SPS09 The Modern Platform for All Applications. Balaji Krishna, SAP HANA Product Management

What's New in SAP HANA SPS09 The Modern Platform for All Applications. Balaji Krishna, SAP HANA Product Management What's New in SAP HANA SPS09 The Modern Platform for All Applications Balaji Krishna, SAP HANA Product Management Legal disclaimer The information in this presentation is confidential and proprietary to

More information

Providing real-time, built-in analytics with S/4HANA. Jürgen Thielemans, SAP Enterprise Architect SAP Belgium&Luxembourg

Providing real-time, built-in analytics with S/4HANA. Jürgen Thielemans, SAP Enterprise Architect SAP Belgium&Luxembourg Providing real-time, built-in analytics with S/4HANA Jürgen Thielemans, SAP Enterprise Architect SAP Belgium&Luxembourg SAP HANA Analytics Vision Situation today: OLTP and OLAP separated, one-way streets

More information

SAP BusinessObjects (BI) 4.1 on SAP HANA Piepaolo Vezzosi, SAP Product Strategy. Orange County Convention Center Orlando, Florida June 3-5, 2014

SAP BusinessObjects (BI) 4.1 on SAP HANA Piepaolo Vezzosi, SAP Product Strategy. Orange County Convention Center Orlando, Florida June 3-5, 2014 SAP BusinessObjects (BI) 4.1 on SAP HANA Piepaolo Vezzosi, SAP Product Strategy Orange County Convention Center Orlando, Florida June 3-5, 2014 Learning points SAP HANA scenarios for business intelligence

More information

SAP HANA Cloud Platform Overview Customer

SAP HANA Cloud Platform Overview Customer SAP HANA Cloud Platform Overview Customer BUILD New Cloud Apps EXTEND On-Premise Apps EXTEND Cloud Apps ON-PREMISE SOLUTION CLOUD SOLUTION Data Data RUN Application Management and Runtime 2014 SAP AG or

More information

SAP SE - Legal Requirements and Requirements

SAP SE - Legal Requirements and Requirements Finding the signals in the noise Niklas Packendorff @packendorff Solution Expert Analytics & Data Platform Legal disclaimer The information in this presentation is confidential and proprietary to SAP and

More information

In-memory databases and innovations in Business Intelligence

In-memory databases and innovations in Business Intelligence Database Systems Journal vol. VI, no. 1/2015 59 In-memory databases and innovations in Business Intelligence Ruxandra BĂBEANU, Marian CIOBANU University of Economic Studies, Bucharest, Romania babeanu.ruxandra@gmail.com,

More information

SQL Server 2012 Business Intelligence Boot Camp

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

More information

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

Leveraging BI Tools & HANA. Tracy Nguyen, North America Analytics COE April 15, 2016

Leveraging BI Tools & HANA. Tracy Nguyen, North America Analytics COE April 15, 2016 Leveraging BI Tools & HANA Tracy Nguyen, North America Analytics COE April 15, 2016 Legal disclaimer The information in this presentation is confidential and proprietary to SAP and may not be disclosed

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

SAP Predictive Analytics Roadmap Charles Gadalla SAP SESSION CODE: #####

SAP Predictive Analytics Roadmap Charles Gadalla SAP SESSION CODE: ##### SAP Predictive Analytics Roadmap Charles Gadalla SAP SESSION CODE: ##### LEARNING POINTS What are SAP s Advanced Analytics offerings Advanced Analytics gives a competitive advantage, it can no longer be

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

Business Performance without limits how in memory. computing changes everything

Business Performance without limits how in memory. computing changes everything Business Performance without limits how in memory computing changes everything Information Explosion is unprecedented An inflection point for the enterprise VELOCITY Worldwide digital content will double

More information

SAP BusinessObjects Design Studio Overview. Jie Deng, Product Management Analysis Clients November 2012

SAP BusinessObjects Design Studio Overview. Jie Deng, Product Management Analysis Clients November 2012 SAP BusinessObjects Design Studio Overview Jie Deng, Product Management Analysis Clients November 2012 Legal Disclaimer 2 SAP BusinessObjects Dashboarding Strategy Self Service Dashboarding Professional

More information

SAP HANA Technical Academy. 18.6.2014, WU Wien

SAP HANA Technical Academy. 18.6.2014, WU Wien SAP HANA Technical Academy 18.6.2014, WU Wien Agenda SAP HANA Introduction and Overview SAP HANA Studio Hands-on labs Modeling SAP HANA Views Attribute Views Analytic Views Calculation Views Hands-on labs

More information

Hadoop & SAS Data Loader for Hadoop

Hadoop & SAS Data Loader for Hadoop Turning Data into Value Hadoop & SAS Data Loader for Hadoop Sebastiaan Schaap Frederik Vandenberghe Agenda What s Hadoop SAS Data management: Traditional In-Database In-Memory The Hadoop analytics lifecycle

More information

Business Application Services Testing

Business Application Services Testing Business Application Services Testing Curriculum Structure Course name Duration(days) Express 2 Testing Concept and methodologies 3 Introduction to Performance Testing 3 Web Testing 2 QTP 5 SQL 5 Load

More information

Enhance your Analytics using Logical Data Warehouse and Data Virtualization thru SAP HANA smart data access SESSION CODE: 0210

Enhance your Analytics using Logical Data Warehouse and Data Virtualization thru SAP HANA smart data access SESSION CODE: 0210 Enhance your Analytics using Logical Data Warehouse and Data Virtualization thru SAP HANA smart data access Balaji Krishna, Product Management SAP HANA Platform. SAP Labs @balajivkrishna SESSION CODE:

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

Outlines. Business Intelligence. What Is Business Intelligence? Data mining life cycle

Outlines. Business Intelligence. What Is Business Intelligence? Data mining life cycle Outlines Business Intelligence Lecture 15 Why integrate BI into your smart client application? Integrating Mining into your application Integrating into your application What Is Business Intelligence?

More information

SAP Predictive Analytics: An Overview and Roadmap. Charles Gadalla, SAP @cgadalla SESSION CODE: 603

SAP Predictive Analytics: An Overview and Roadmap. Charles Gadalla, SAP @cgadalla SESSION CODE: 603 SAP Predictive Analytics: An Overview and Roadmap Charles Gadalla, SAP @cgadalla SESSION CODE: 603 Advanced Analytics SAP Vision Embed Smart Agile Analytics into Decision Processes to Deliver Business

More information

Introduction to Oracle Business Intelligence Standard Edition One. Mike Donohue Senior Manager, Product Management Oracle Business Intelligence

Introduction to Oracle Business Intelligence Standard Edition One. Mike Donohue Senior Manager, Product Management Oracle Business Intelligence Introduction to Oracle Business Intelligence Standard Edition One Mike Donohue Senior Manager, Product Management Oracle Business Intelligence The following is intended to outline our general product direction.

More information

How to Implement a SAP HANA Database Procedure and consume it from an ABAP Program Step-by-Step Tutorial

How to Implement a SAP HANA Database Procedure and consume it from an ABAP Program Step-by-Step Tutorial How to Implement a SAP HANA Database Procedure and consume it from an ABAP Program Step-by-Step Tutorial Table of Contents Prerequisites... 3 Benefits of using SAP HANA Procedures... 3 Objectives... 3

More information

Welcome to an introduction to SAP Business One.

Welcome to an introduction to SAP Business One. Welcome to an introduction to SAP Business One. In this topic, we will answer the question: What is Business One? We define SAP Business One and discuss the options and available platforms for running

More information

Placing customers in the driver s seat to deliver amazing user experiences

Placing customers in the driver s seat to deliver amazing user experiences SAP Solution Brief SAP Web IDE Objectives Solution Benefits Quick Facts Placing customers in the driver s seat to deliver amazing user experiences Build applications with consumergrade UX using SAP Web

More information

Predictive Analytics

Predictive Analytics Predictive Analytics How many of you used predictive today? 2015 SAP SE. All rights reserved. 2 2015 SAP SE. All rights reserved. 3 How can you apply predictive to your business? Predictive Analytics is

More information

SAP HANA implementation on SLT with a Non SAP source. Poornima Ramachandra

SAP HANA implementation on SLT with a Non SAP source. Poornima Ramachandra SAP HANA implementation on SLT with a Non SAP source Poornima Ramachandra AGENDA Introduction Planning Implementation Lessons Learnt Introduction The Company Maidenform System Landscape BUSINESS CHALLENGE

More information

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

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

More information

SAP HANA Reinventing Real-Time Businesses through Innovation, Value & Simplicity. Eduardo Rodrigues October 2013

SAP HANA Reinventing Real-Time Businesses through Innovation, Value & Simplicity. Eduardo Rodrigues October 2013 Reinventing Real-Time Businesses through Innovation, Value & Simplicity Eduardo Rodrigues October 2013 Agenda The Existing Data Management Conundrum Innovations Transformational Impact at Customers Summary

More information

Lofan Abrams Data Services for Big Data Session # 2987

Lofan Abrams Data Services for Big Data Session # 2987 Lofan Abrams Data Services for Big Data Session # 2987 Big Data Are you ready for blast-off? Big Data, for better or worse: 90% of world s data generated over last two years. ScienceDaily, ScienceDaily

More information

In-memory computing with SAP HANA

In-memory computing with SAP HANA In-memory computing with SAP HANA June 2015 Amit Satoor, SAP @asatoor 2015 SAP SE or an SAP affiliate company. All rights reserved. 1 Hyperconnectivity across people, business, and devices give rise to

More information

This module provides an overview of service and cloud technologies using the Microsoft.NET Framework and the Windows Azure cloud.

This module provides an overview of service and cloud technologies using the Microsoft.NET Framework and the Windows Azure cloud. Module 1: Overview of service and cloud technologies This module provides an overview of service and cloud technologies using the Microsoft.NET Framework and the Windows Azure cloud. Key Components of

More information

Work Better Connected. Orange County Convention Center May 5-7, 2015 Orlando, Florida

Work Better Connected. Orange County Convention Center May 5-7, 2015 Orlando, Florida Work Better Connected. Orange County Convention Center May 5-7, 2015 Orlando, Florida Renewing your SAP Enterprise Portal implementation with SAP Fiori launchpad Inbal Sabag Customer Success Expert SAP

More information

An Oracle White Paper February 2014. Oracle Data Integrator 12c Architecture Overview

An Oracle White Paper February 2014. Oracle Data Integrator 12c Architecture Overview An Oracle White Paper February 2014 Oracle Data Integrator 12c Introduction Oracle Data Integrator (ODI) 12c is built on several components all working together around a centralized metadata repository.

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

Using MySQL for Big Data Advantage Integrate for Insight Sastry Vedantam sastry.vedantam@oracle.com

Using MySQL for Big Data Advantage Integrate for Insight Sastry Vedantam sastry.vedantam@oracle.com Using MySQL for Big Data Advantage Integrate for Insight Sastry Vedantam sastry.vedantam@oracle.com Agenda The rise of Big Data & Hadoop MySQL in the Big Data Lifecycle MySQL Solutions for Big Data Q&A

More information

Cisco Data Preparation

Cisco Data Preparation Data Sheet Cisco Data Preparation Unleash your business analysts to develop the insights that drive better business outcomes, sooner, from all your data. As self-service business intelligence (BI) and

More information

Decoding the Big Data Deluge a Virtual Approach. Dan Luongo, Global Lead, Field Solution Engineering Data Virtualization Business Unit, Cisco

Decoding the Big Data Deluge a Virtual Approach. Dan Luongo, Global Lead, Field Solution Engineering Data Virtualization Business Unit, Cisco Decoding the Big Data Deluge a Virtual Approach Dan Luongo, Global Lead, Field Solution Engineering Data Virtualization Business Unit, Cisco High-volume, velocity and variety information assets that demand

More information

SAP Business Planning & Consolidation 10.1. Discover its enhanced capabilities

SAP Business Planning & Consolidation 10.1. Discover its enhanced capabilities SAP Business Planning & Consolidation 10.1 Discover its enhanced capabilities 11/06/2016 Agenda element61 SAP BPC 10.1 Intro Demo of SAP BPC 10.1 (Planning focus) What we are about... What we are about...

More information

SAP Sybase Replication Server What s New in 15.7.1 SP100. Bill Zhang, Product Management, SAP HANA Lisa Spagnolie, Director of Product Marketing

SAP Sybase Replication Server What s New in 15.7.1 SP100. Bill Zhang, Product Management, SAP HANA Lisa Spagnolie, Director of Product Marketing SAP Sybase Replication Server What s New in 15.7.1 SP100 Bill Zhang, Product Management, SAP HANA Lisa Spagnolie, Director of Product Marketing Agenda SAP Sybase Replication Server Overview Replication

More information

SAP HANA Cloud Platform, Portal Service: Overview SAP Cloud Experience and SAP Portal Product Management May 2016

SAP HANA Cloud Platform, Portal Service: Overview SAP Cloud Experience and SAP Portal Product Management May 2016 SAP HANA Cloud Platform, Portal Service: Overview SAP Cloud Experience and SAP Portal Product Management May 2016 Agenda The SAP HANA Cloud Platform Introducing Portal Service Use Cases & Positioning Cloud

More information

Using Microsoft Business Intelligence Dashboards and Reports in the Federal Government

Using Microsoft Business Intelligence Dashboards and Reports in the Federal Government Using Microsoft Business Intelligence Dashboards and Reports in the Federal Government A White Paper on Leveraging Existing Investments in Microsoft Technology for Analytics and Reporting June 2013 Dev

More information

Introducing Oracle Exalytics In-Memory Machine

Introducing Oracle Exalytics In-Memory Machine Introducing Oracle Exalytics In-Memory Machine Jon Ainsworth Director of Business Development Oracle EMEA Business Analytics 1 Copyright 2011, Oracle and/or its affiliates. All rights Agenda Topics Oracle

More information

EA104 World Premiere of SAP BusinessObjects Design Studio. Eric Schemer, Senior Director Product Management, BI Clients, SAP AG October, 2013

EA104 World Premiere of SAP BusinessObjects Design Studio. Eric Schemer, Senior Director Product Management, BI Clients, SAP AG October, 2013 EA104 World Premiere of SAP BusinessObjects Design Studio Eric Schemer, Senior Director Product Management, BI Clients, SAP AG October, 2013 Disclaimer This presentation outlines our general product direction

More information

Business Intelligence mit SAP: Strategie, Neuerungen, Nutzen. Andreas Forster / Solution Advisor June 2013

Business Intelligence mit SAP: Strategie, Neuerungen, Nutzen. Andreas Forster / Solution Advisor June 2013 Business Intelligence mit SAP: Strategie, Neuerungen, Nutzen Andreas Forster / Solution Advisor June 2013 Agenda SAP Business Intelligence Vision SAP BusinessObjects Suite SAP BusinessObjects BI and SAP

More information

The New Economics of SAP Business Suite powered by SAP HANA. 2013 SAP AG. All rights reserved. 2

The New Economics of SAP Business Suite powered by SAP HANA. 2013 SAP AG. All rights reserved. 2 The New Economics of SAP Business Suite powered by SAP HANA 2013 SAP AG. All rights reserved. 2 COMMON MYTH Running SAP Business Suite on SAP HANA is more expensive than on a classical database 2013 2014

More information

SAP HANA - Main Memory Technology: A Challenge for Development of Business Applications. Jürgen Primsch, SAP AG July 2011

SAP HANA - Main Memory Technology: A Challenge for Development of Business Applications. Jürgen Primsch, SAP AG July 2011 SAP HANA - Main Memory Technology: A Challenge for Development of Business Applications Jürgen Primsch, SAP AG July 2011 Why In-Memory? Information at the Speed of Thought Imagine access to business data,

More information

Consumption of OData Services of Open Items Analytics Dashboard using SAP Predictive Analysis

Consumption of OData Services of Open Items Analytics Dashboard using SAP Predictive Analysis Consumption of OData Services of Open Items Analytics Dashboard using SAP Predictive Analysis (Version 1.17) For validation Document version 0.1 7/7/2014 Contents What is SAP Predictive Analytics?... 3

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

Extending The Value of SAP with the SAP BusinessObjects Business Intelligence Platform Product Integration Roadmap

Extending The Value of SAP with the SAP BusinessObjects Business Intelligence Platform Product Integration Roadmap Extending The Value of SAP with the SAP BusinessObjects Business Intelligence Platform Product Integration Roadmap Naomi Tomioka Phipps Principal Solution Advisor Business User South East Asia 22 nd April,

More information

Understanding the SAP BI Strategy

Understanding the SAP BI Strategy Understanding the SAP BI Strategy Blair Wheadon, GM of Enterprise BI September 2014 Use this title slide only with an image Legal disclaimer The information in this presentation is confidential and proprietary

More information

Trends, Strategy, Roadmaps and Product Direction for SAP BI tools in SAP HANA environment

Trends, Strategy, Roadmaps and Product Direction for SAP BI tools in SAP HANA environment September 9 11, 2013 Anaheim, California Trends, Strategy, Roadmaps and Product Direction for SAP BI tools in SAP HANA environment Surya K Dutta surdutta@deloitte.com Analytics New possibilities In-Memory

More information

Demonstration of SAP Predictive Analysis 1.0, consumption from SAP BI clients and best practices

Demonstration of SAP Predictive Analysis 1.0, consumption from SAP BI clients and best practices September 10-13, 2012 Orlando, Florida Demonstration of SAP Predictive Analysis 1.0, consumption from SAP BI clients and best practices Vishwanath Belur, Product Manager, SAP Predictive Analysis Learning

More information

SAP BusinessObjects Business Intelligence 4.1 One Strategy for Enterprise BI. May 2013

SAP BusinessObjects Business Intelligence 4.1 One Strategy for Enterprise BI. May 2013 SAP BusinessObjects Business Intelligence 4.1 One Strategy for Enterprise BI May 2013 SAP s Strategic Focus on Business Intelligence Core Self-service Mobile Extreme Social Core for innovation Complete

More information

Design & Innovation from SAP AppHaus Realization with SAP HANA Cloud Platform. Michael Sambeth, Business Development HCP, SAP (Suisse) SA 18.06.

Design & Innovation from SAP AppHaus Realization with SAP HANA Cloud Platform. Michael Sambeth, Business Development HCP, SAP (Suisse) SA 18.06. Design & Innovation from SAP AppHaus Realization with SAP HANA Cloud Platform Michael Sambeth, Business Development HCP, SAP (Suisse) SA 18.06.2015 Legal disclaimer The information in this presentation

More information

SAP Database Strategy Overview. Uwe Grigoleit September 2013

SAP Database Strategy Overview. Uwe Grigoleit September 2013 SAP base Strategy Overview Uwe Grigoleit September 2013 SAP s In-Memory and management Strategy Big- in Business-Context: Are you harnessing the opportunity? Mobile Transactions Things Things Instant Messages

More information

Building Real-Time Analytics Apps with HANA

Building Real-Time Analytics Apps with HANA Building Real-Time Analytics Apps with HANA Why SAP HANA Now? Columnar Databases Large Data Inflection Point? Moore s Law What is SAP HANA? A Database / RDBMS? An Appliance? A Platform? Answer All of the

More information

SAP HANA Security Guide

SAP HANA Security Guide PUBLIC SAP HANA Platform SPS 12 Document Version: 1.0 2016-05-11 Content 1 Important Critical Configurations.... 6 2 Introduction to SAP HANA Security....7 3 SAP HANA Security Patches....11 4 SAP HANA

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

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

SAP BusinessObjects. May 2011

SAP BusinessObjects. May 2011 SAP BusinessObjects Mobile Business Intelligence May 2011 Safe Harbor The information in this presentation is confidential and proprietary to SAP and may not be disclosed without the permission of SAP.

More information

SAP Solution Brief SAP Technology SAP HANA. SAP HANA An In-Memory Data Platform for Real-Time Business

SAP Solution Brief SAP Technology SAP HANA. SAP HANA An In-Memory Data Platform for Real-Time Business SAP Brief SAP Technology SAP HANA Objectives SAP HANA An In-Memory Data Platform for Real-Time Business Fast, broad, and meaningful insight at your service Real-time analytics Fast, broad, and meaningful

More information

Toronto 26 th SAP BI. Leap Forward with SAP

Toronto 26 th SAP BI. Leap Forward with SAP Toronto 26 th SAP BI Leap Forward with SAP Business Intelligence SAP BI 4.0 and SAP BW Operational BI with SAP ERP SAP HANA and BI Operational vs Decision making reporting Verify the evolution of the KPIs,

More information

SAP Big Data and Cloud Application Development. Mark Mumy Director, Enterprise Architecture and Big Data mark.mumy@sap.com

SAP Big Data and Cloud Application Development. Mark Mumy Director, Enterprise Architecture and Big Data mark.mumy@sap.com SAP Big Data and Cloud Application Development Mark Mumy Director, Enterprise Architecture and Big Data mark.mumy@sap.com Big Data Exploitation A Business Imperative.. Big Data isn t just one more technology

More information

SaPHAL Sales Prediction powered by HANA and Predictive Analytics

SaPHAL Sales Prediction powered by HANA and Predictive Analytics SaPHAL Sales Prediction powered by HANA and Predictive Analytics 1 SaPHAL Sales Prediction Powered by HANA and Predictive Analytics 1 Introduction - SaPHAL Agenda 2 3 4 Business Case Pain Points & Solution

More information

SAP Analytics Roadmap for Small and Midsize Companies. Kevin Chan, Director, Solutions Management @ SAP

SAP Analytics Roadmap for Small and Midsize Companies. Kevin Chan, Director, Solutions Management @ SAP SAP Analytics Roadmap for Small and Midsize Companies Kevin Chan, Director, Solutions Management @ SAP A WORLD OF ACCELERATING CHANGE An emerging middle class growing to 5B Data doubling every 18 months

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

Course 20489B: Developing Microsoft SharePoint Server 2013 Advanced Solutions OVERVIEW

Course 20489B: Developing Microsoft SharePoint Server 2013 Advanced Solutions OVERVIEW Course 20489B: Developing Microsoft SharePoint Server 2013 Advanced Solutions OVERVIEW About this Course This course provides SharePoint developers the information needed to implement SharePoint solutions

More information

Microsoft SQL Server 2012: What to Expect

Microsoft SQL Server 2012: What to Expect ASPE RESOURCE SERIES Microsoft SQL Server 2012: What to Expect Prepared for ASPE by Global Knowledge's Brian D. Egler MCITP-DBA, MCT, Real Skills. Real Results. Real IT. in partnership with Microsoft SQL

More information