SlideShare una empresa de Scribd logo
1 de 52
SAP HANA Session 1
Introduction
Problem Statement
                                       In an organization every year massive
                                       amounts of data is created and how fast
                                       your business reacts to important
                                       information determines whether you
                                       succeed or fail. This is a big problem and
                                       its getting bigger.
In a Sloan Management survey in 2010
60% of executives said their companies           Few
have more data than they know how to
use effectively.
                                                 Facts
                                          IDC estimates that worldwide digital
With data doubling every 18 months,       content added up to 1 trillion gigabytes in
that percentage is going to keep growing. 2011. They predict this will double in 18
According to EMC, by the end of 2011      months, and every 18 months thereafter.
there was 1.8 Zeta byte of digital data.

                  www.xpress-analytics.com         Ph: 8775734486
Now exactly what is a Zeta Byte ?




      www.xpress-analytics.com   Ph: 8775734486
Real Time Consumption of Data

                               People want instant access to
                               information – ‘in the
                               moment’’ - whether that is a
                               moment of risk or a moment
                               of opportunity. If the moment
                               has passed and your business
                               has not taken the right action,
                               it has failed. People want
                               instant answers. They want
                               them to be right. They want
                               them anywhere, any time.

    www.xpress-analytics.com      Ph: 8775734486
www.xpress-analytics.com   Ph: 8775734486
www.xpress-analytics.com   Ph: 8775734486
Agenda
1. Introduction to HANA: Vision and Strategy


2. Solution Overview & Roadmap


3. Business Value


4. HANA Modeling Studio


5. Connecting from BOE


6. Real time Examples




            www.xpress-analytics.com   Ph: 8775734486
Solution – A Technology to process and analyze massive amounts
                          of data in real time




•In Memory Storage
•Multi Core Architecture
•Columnar Storage
•Partitioning
•Compression
•Massive parallel processing




               www.xpress-analytics.com      Ph: 8775734486
Vision: In-Memory Computing
Technology Constrained Business Outcome
              Current Scenario

                                                  Sub-optimal execution speed
                                                  Lack of responsiveness due to data latency
                                                  and deployment bottlenecks
                                                  Inability to update demand plan with
                                                  greater than monthly frequency

    Increasing Data
        Volumes                                   Lack of business transparency
                                                  Sales & Operations Planning based on
                                 Information      subsets of highly aggregated information,
   Calculation Speed
                                   Latency        being several days or weeks outdated.

     Type and # of
     Data Sources
                                                  Reactive business model
                                                  Missed opportunities and competitive
                                                  disadvantage due to lack of speed and
                                                  agility
                                                  Utilities: daily- or hour-based billing
                                                  and consumption analysis/simulation.




                       www.xpress-analytics.com   Ph: 8775734486
In-Memory Computing


                   Technology that allows the processing of
                   massive quantities of real time data
                   in the main memory of the server
                   to provide immediate results from
                   analyses and transactions




      www.xpress-analytics.com      Ph: 8775734486
Vision: In-Memory Computing
Leapfrogging Current Technology Constraints

                    Future State
                                                     Flexible Real Time Analytics
                                                     Real-time customer profitability
                                                     Effective marketing campaign spend based
                                                     on large-volume data analysis


   TeraBytes of Data                                 Improve Business Performance
      In-Memory                                      IT rapidly delivering flexible solutions
                                                     enabling business
    100 GB/s data                                    Speed up billing and reconciliation cycles
                                   Real Time
     througput                                       for complex goods manufacturers
                                                     Planning and simulation on the fly based on
     Freedom from
    the data source                                  actual non-aggregated data


                                                     Competitive Advantage
                                                     E.g. Utilities Industry:
                                                     Sales growth and market advantage from
                                                     demand/cost driven pricing that optimizes
                                                     multiple variables – consumption data,
                                                     hourly energy price, weather forecast, etc.



                         www.xpress-analytics.com   Ph: 8775734486
In-Memory Computing – The Time is NOW
              Orchestrating Technology Innovations

    The elements of In-Memory computing are not new. However, dramatically improved hardware economics and technology
innovations in software has now made it possible for SAP to deliver on its vision of the Real-Time Enterprise with In-Memory business
                                                            applications



    HW Technology Innovations                                             SAP SW Technology Innovations

                   Multi-Core Architecture (8 x 8core CPU                                  Row and Column Store
                   per blade)
                   Massive parallel scaling with many
                   blades                                                                    Compression
                   64bit address space – 2TB in current
                   servers                                                                   Partitioning
                   100GB/s data throughput
                   Dramatic decline in
                   price/performance                                                        No Aggregate Tables

                                                                                           Real-Time Data Capture
                                                                                           Insert Only on Delta

                       www.xpress-analytics.com                                 Ph: 8775734486
Using main memory as the data store
The most obvious reason to use main memory as the data store for a database is
speed of access
                                          The main memory (RAM) is the fastest storage
                                          type. Data in main memory can be accessed
                                          more than a 100,000 times faster than data
                                          on a spinning hard disk.

                                          flash technology storage is 1000 slower than
                                          main memory.

                                          Main memory is connected directly to the
                                          processors through a very high-speed bus,
                                          whereas hard disks are connected through a
                                          chain of buses (QPI, PCIe, SAN) and controllers
                                          (I/O hub, RAID controller or SAN adapter,
                                          and storage controller).


                   www.xpress-analytics.com        Ph: 8775734486
Minimizing data movement
Even though today’s memory capacities allow keeping enormous amounts of data
in-memory, compressing the data in-memory is still desirable. The goal is to compress
data in a way that does not use up performance gained, while still minimizing data
movement from RAM to the processor.




                  www.xpress-analytics.com           Ph: 8775734486
Columnar storage
Relational databases organize data in tables, which contain the data
records. The difference



                                                 between row-based and
                                                 columnar
                                                  Row-based storage stores
                                                 a table in a sequence of
                                                 rows.
                                                  Column-based storage
                                                 stores a table in a
                                                 sequence of columns.




              www.xpress-analytics.com   Ph: 8775734486
Row or Column ?




www.xpress-analytics.com   Ph: 8775734486
Pushing application logic to the database



An application executing the application
logic on the data has to get the data from
the database, process it, and possibly
send it back to the database to store the
results. Leads to network over heads and
latency

           How will it be to process the data
           where it is, at the database ???

                   www.xpress-analytics.com   Ph: 8775734486
Data partitioning & Parallelization


on a 10-core processor the time needed
is one-tenth of the time
that a single core would need

servers available today can hold terabytes of
data in memory and provide up to
eight processors per server with up to 10 cores
per processor

To accommodate the memory and
computing power requirements that go
beyond the limits of a single server, data can
be divided into subsets and placed across a
cluster of servers, forming a distributed
database (scale-out approach).

                      www.xpress-analytics.com    Ph: 8775734486
In a recent independent benchmark HANA raced through a 100TB
test database with 100 billion records. First, HANA achieved a 20x
data compression level, which was remarkable. More impressive,
though, was that with no caching, indexing, or materializing of the
query results, the query responses were a mere 300 to 500
milliseconds. Compare this to some Oracle documentation that
has claimed it was "lightning fast" at processing 100 million records
in one second. HANA, then, can run 1,000 times more data in less
than one-half the time than Oracle.

            www.xpress-analytics.com   Ph: 8775734486
Beyond benchmarks, in the real world of Wall Street, one
HANA application is using Sybase CEP (Complex Event
Processing) to feed more than 2.1 million updates per second
into the database. In a retail environment in Japan, one
customer achieved 400,000 times performance improvement
over its previous database environment. Adobe uses HANA to
analyze customer data in real time and T-Mobile runs three
HANA databases to analyze and reduce customer churn. It's
stories like these that make HANA the fastest growing product
in SAP history.

             www.xpress-analytics.com   Ph: 8775734486
SAP HANA Use Cases
Agile Data Mart
        In this scenario, SAP HANA acts as the central hub to collect data from a
        few SAP and non-SAP source systems and then display some fairly simple
        and focused analytics in a single-purpose dashboard for users

SAP Business Suite Accelerator
    The second major scenario where SAP HANA is being used is to accelerate
    transactions and reports inside the SAP Business Suite. Again, SAP HANA is
    being set up as a stand-alone system in the landscape, side-by-side with the
    database under the SAP Business Suite applications. In this scenario,
    however, SAP HANA is being used to “off load” some of the transactions or
    reports that typically take a long time (hours or days) to run, but it is not
    being used as the primary database under the application.




               www.xpress-analytics.com            Ph: 8775734486
SAP HANA Use Cases
Primary Database for SAP NetWeaver Business Warehouse

In this scenario a company replaces the previously underlying database for their SAP
BW system with SAP HANA. The IT team can perform a standard DB migration over to
SAP HANA and then enable specific objects to be in-memory optimized as necessary
depending on the company’s requirements.


Custom Applications for SAP HANA

As stated earlier, SAP HANA is a full-blown, do-just-about-anything-you-want
application platform. It speaks pure SQL, and it includes all of the most common APIs,
so you can literally write any type of application you want on top of it.




                 www.xpress-analytics.com           Ph: 8775734486
www.xpress-analytics.com   Ph: 8775734486
www.xpress-analytics.com   Ph: 8775734486
www.xpress-analytics.com   Ph: 8775734486
www.xpress-analytics.com   Ph: 8775734486
www.xpress-analytics.com   Ph: 8775734486
History behind SAP HANA




www.xpress-analytics.com   Ph: 8775734486
www.xpress-analytics.com   Ph: 8775734486
www.xpress-analytics.com   Ph: 8775734486
SAP Appliance Business Partners




 www.xpress-analytics.com   Ph: 8775734486
www.xpress-analytics.com   Ph: 8775734486
SAP HANA Architecture




www.xpress-analytics.com   Ph: 8775734486
www.xpress-analytics.com   Ph: 8775734486
SAP HANA Configurations




www.xpress-analytics.com   Ph: 8775734486 v
Product Availability Matrix




www.xpress-analytics.com   Ph: 8775734486
www.xpress-analytics.com   Ph: 8775734486
www.xpress-analytics.com   Ph: 8775734486
SAP BusinessObjects Data Services Platform
                                                                               Rich Transforms


         Integrate heterogeneous
         data into BWA




                                                                          Integrated Data Quality
                                                                               Text Analytics




                     Extract From Any Data Source into HANA
                     Syndicate From HANA to Any Consumer

                                www.xpress-analytics.com      Ph: 8775734486
© SAP 2007/Page 39
SAP BusinessObjects Data Services Platform
                                                                               Rich Transforms


         Integrate heterogeneous
         data into BWA




                                                                          Integrated Data Quality
                                                                               Text Analytics




                     Extract From Any Data Source into HANA
                     Syndicate From HANA to Any Consumer

                                www.xpress-analytics.com      Ph: 8775734486
© SAP 2007/Page 40
Real Time Enterprise: Value Proposition
                      Addressing Key Business Drivers
1.   Real-Time Decision Making                                              There is a significant interest from business to get agile
                                                                             There is a significant interest from business to get agile
                                                                            analytic solutions.
                                                                             analytic solutions.
       •    Fast and easy creation of ad-hoc views on business              „In a down economy, companies focus on cash protection.
                                                                             „In a down economy, companies focus on cash protection.
                                                                            The decision on what needs to be done to make
                                                                             The decision on what needs to be done to make
       •    Access to real time analysis                                    procurement more efficient is being made in the
                                                                             procurement more efficient is being made in the
                                                                            procurement department“.
                                                                             procurement department“.
1.   Accelerate Business Performance                                        CEO of a multinational transportation company
                                                                            CEO of a multinational transportation company
       •    Increase speed of transactional information flow in areas
            such as planning, forecasting, pricing, offers…
                                                                                     Flexibility to analyse business missed by LoB.
                                                                                      Flexibility to analyse business missed by LoB.
1.   Unlock New Insights                                                             „First performance, and the other is flexibility on a
                                                                                      „First performance, and the other is flexibility on a
                                                                                     business analyst level, who need to do deep diving to
                                                                                      business analyst level, who need to do deep diving to
       •    Remove constraints for analyzing large data volumes -                    better understand and conclude. The second would be
                                                                                      better understand and conclude. The second would be
                                                                                     that also front-end tools are not providing flexibility“.
                                                                                      that also front-end tools are not providing flexibility“.
            trends, data mining, predictive analytics etc.
                                                                                     Executive of a global retail company
                                                                                      Executive of a global retail company
       •    Structured and unstructured data

1.   Improve Business Productivity
                                                                                           Traditional data warehouse processes are too complex
                                                                                            Traditional data warehouse processes are too complex
       •    Business designed and owned analytical models                                  and consume too much time for business departments.
                                                                                            and consume too much time for business departments.
                                                                                           „„The companies […] were frustrated with usual
                                                                                              The companies […] were frustrated with usual
       •    Business self-service  reduce reliance on IT                                  problems […] difficulty to build new information views.
                                                                                            problems […] difficulty to build new information views.
                                                                                           These companies were willing to move data […] into
                                                                                            These companies were willing to move data […] into
       •    Use data from anywhere                                                         another proprietary file format […]. ““
                                                                                            another proprietary file format […].
                                                                                           Analyst
                                                                                           Analyst
1.   Improve IT efficiency
       •    Manage growing data volume and complexity efficiently
       •    Lower landscape costs



                         www.xpress-analytics.com                       Ph: 8775734486
Real Time Enterprise: Value Proposition
The Value Blocks
                     Value Elements                                            In-Memory Enablers
                      New business models  based on real-time                Run performance-critical applications in-memory
                       information and execution                               Combine analytical and transactional applications
                      Improved business agility  Dramatically improve
                                                                               No need for planning levels or aggregation levels
                       planning, forecasting, price optimization and other
                       processes                                               Multi-dimensional simulation models updated in one step
                      New business opportunities  faster, more accurate      Internal and external data securely combined
                       business decisions based on complex, large data         Batch data loads eliminated
                       volumes

                                                                               High performance “real-time” analytics
                      Sense and respond faster  Apply analytics to
                       internal and external data in real-time to trigger      Support for trending, simulation (“what-if”)
                       actions (e.g., market analytics)
                                                                               Business-driven data models
                      Business-driven “What-If”  Ask ad-hoc
                                                                               Support for structured and un-structured data
                       questions against the data set without IT
                                                                               Analysis based on non-aggregated data sets
                      Right information at the right time


                                                                               Eliminate BW database
                      Lower infrastructure costs  server, storage,
                       database                                                Empower business self-service analytics – reduce
                      Lower labor costs  backup/restore,                      shadow IT
                       reporting, performance tuning                           Consolidate data warehouses and data marts
                                                                               In-memory business applications (eliminate database for
                                                                                transactional systems)




                   www.xpress-analytics.com                                  Ph: 8775734486
www.xpress-analytics.com   Ph: 8775734486
HANA Information Modeler




     www.xpress-analytics.com   Ph: 8775734486
HANA Information Modeler
Creating Connectivity to a new system




      www.xpress-analytics.com   Ph: 8775734486
HANA Information Modeler
  Creating Attribute View




  www.xpress-analytics.com   Ph: 8775734486
HANA Information Modeler
Defining Attributes (Key Attribute, Attribute, Filter and Measure (for numeric data types)




                   www.xpress-analytics.com                Ph: 8775734486
HANA Information Modeler
              Data Preview




www.xpress-analytics.com     Ph: 8775734486
HANA Information Modeler
           Creating Analytic View




www.xpress-analytics.com            Ph: 8775734486
www.xpress-analytics.com   Ph: 8775734486
Connectivity from BO Enterprise Tools

1. Crystal Reports Enterprise - (ODBC, JDBC,
   Universe)


2. IDT (Information Design Tool) - JDBC


3. Explorer – Connection configuration in CMC


4. Advanced Analysis for Office (Q1 2011 release)


5. Web Intelligence – Universe


6. Xcelsius - Universe
Courtesy

Más contenido relacionado

La actualidad más candente

Business Intelligence Overview
Business Intelligence OverviewBusiness Intelligence Overview
Business Intelligence Overviewnetpeachteam
 
Building enterprise advance analytics platform
Building enterprise advance analytics platformBuilding enterprise advance analytics platform
Building enterprise advance analytics platformHaoran Du
 
Data-Ed Online Presents: Data Warehouse Strategies
Data-Ed Online Presents: Data Warehouse StrategiesData-Ed Online Presents: Data Warehouse Strategies
Data-Ed Online Presents: Data Warehouse StrategiesDATAVERSITY
 
Become Data Driven With Hadoop as-a-Service
Become Data Driven With Hadoop as-a-ServiceBecome Data Driven With Hadoop as-a-Service
Become Data Driven With Hadoop as-a-ServiceMammoth Data
 
Business intelligence in the real time economy
Business intelligence in the real time economyBusiness intelligence in the real time economy
Business intelligence in the real time economyJohan Blomme
 
Anexinet Big Data Solutions
Anexinet Big Data SolutionsAnexinet Big Data Solutions
Anexinet Big Data SolutionsMark Kromer
 
Datawarehousing and Business Intelligence
Datawarehousing and Business IntelligenceDatawarehousing and Business Intelligence
Datawarehousing and Business IntelligencePrithwis Mukerjee
 
Business Intelligence
Business Intelligence Business Intelligence
Business Intelligence arunvanlvanoor
 
Use cases for Hadoop and Big Data Analytics - InfoSphere BigInsights
Use cases for Hadoop and Big Data Analytics - InfoSphere BigInsightsUse cases for Hadoop and Big Data Analytics - InfoSphere BigInsights
Use cases for Hadoop and Big Data Analytics - InfoSphere BigInsightsGord Sissons
 
Business Intelligence - Intro
Business Intelligence - IntroBusiness Intelligence - Intro
Business Intelligence - IntroDavid Hubbard
 
Https _sapmats-de.sap-ag.de_download_download
Https  _sapmats-de.sap-ag.de_download_downloadHttps  _sapmats-de.sap-ag.de_download_download
Https _sapmats-de.sap-ag.de_download_downloadMichelle Crapo
 
Use Big Data Technologies to Modernize Your Enterprise Data Warehouse
Use Big Data Technologies to Modernize Your Enterprise Data Warehouse Use Big Data Technologies to Modernize Your Enterprise Data Warehouse
Use Big Data Technologies to Modernize Your Enterprise Data Warehouse EMC
 
Business Intelligence Presentation (1/2)
Business Intelligence Presentation (1/2)Business Intelligence Presentation (1/2)
Business Intelligence Presentation (1/2)Bernardo Najlis
 
Business Intelligence - A Management Perspective
Business Intelligence - A Management PerspectiveBusiness Intelligence - A Management Perspective
Business Intelligence - A Management Perspectivevinaya.hs
 
Introduction to Business Intelligence
Introduction to Business IntelligenceIntroduction to Business Intelligence
Introduction to Business IntelligenceRonan Soares
 
High Performance BI with Cognos and ParAccel Analytic Database
High Performance BI with Cognos and ParAccel Analytic DatabaseHigh Performance BI with Cognos and ParAccel Analytic Database
High Performance BI with Cognos and ParAccel Analytic DatabaseKarol Chlasta
 
Overview of analytics and big data in practice
Overview of analytics and big data in practiceOverview of analytics and big data in practice
Overview of analytics and big data in practiceVivek Murugesan
 

La actualidad más candente (20)

Business Intelligence Overview
Business Intelligence OverviewBusiness Intelligence Overview
Business Intelligence Overview
 
Building enterprise advance analytics platform
Building enterprise advance analytics platformBuilding enterprise advance analytics platform
Building enterprise advance analytics platform
 
Business intelligence
Business intelligenceBusiness intelligence
Business intelligence
 
Data-Ed Online Presents: Data Warehouse Strategies
Data-Ed Online Presents: Data Warehouse StrategiesData-Ed Online Presents: Data Warehouse Strategies
Data-Ed Online Presents: Data Warehouse Strategies
 
Become Data Driven With Hadoop as-a-Service
Become Data Driven With Hadoop as-a-ServiceBecome Data Driven With Hadoop as-a-Service
Become Data Driven With Hadoop as-a-Service
 
Business intelligence in the real time economy
Business intelligence in the real time economyBusiness intelligence in the real time economy
Business intelligence in the real time economy
 
Anexinet Big Data Solutions
Anexinet Big Data SolutionsAnexinet Big Data Solutions
Anexinet Big Data Solutions
 
Datawarehousing and Business Intelligence
Datawarehousing and Business IntelligenceDatawarehousing and Business Intelligence
Datawarehousing and Business Intelligence
 
Business Intelligence
Business Intelligence Business Intelligence
Business Intelligence
 
Use cases for Hadoop and Big Data Analytics - InfoSphere BigInsights
Use cases for Hadoop and Big Data Analytics - InfoSphere BigInsightsUse cases for Hadoop and Big Data Analytics - InfoSphere BigInsights
Use cases for Hadoop and Big Data Analytics - InfoSphere BigInsights
 
Business Intelligence - Intro
Business Intelligence - IntroBusiness Intelligence - Intro
Business Intelligence - Intro
 
Https _sapmats-de.sap-ag.de_download_download
Https  _sapmats-de.sap-ag.de_download_downloadHttps  _sapmats-de.sap-ag.de_download_download
Https _sapmats-de.sap-ag.de_download_download
 
Business intelligence
Business intelligenceBusiness intelligence
Business intelligence
 
Use Big Data Technologies to Modernize Your Enterprise Data Warehouse
Use Big Data Technologies to Modernize Your Enterprise Data Warehouse Use Big Data Technologies to Modernize Your Enterprise Data Warehouse
Use Big Data Technologies to Modernize Your Enterprise Data Warehouse
 
Business Intelligence Presentation (1/2)
Business Intelligence Presentation (1/2)Business Intelligence Presentation (1/2)
Business Intelligence Presentation (1/2)
 
Business Intelligence - A Management Perspective
Business Intelligence - A Management PerspectiveBusiness Intelligence - A Management Perspective
Business Intelligence - A Management Perspective
 
Why mTAB?
Why mTAB?Why mTAB?
Why mTAB?
 
Introduction to Business Intelligence
Introduction to Business IntelligenceIntroduction to Business Intelligence
Introduction to Business Intelligence
 
High Performance BI with Cognos and ParAccel Analytic Database
High Performance BI with Cognos and ParAccel Analytic DatabaseHigh Performance BI with Cognos and ParAccel Analytic Database
High Performance BI with Cognos and ParAccel Analytic Database
 
Overview of analytics and big data in practice
Overview of analytics and big data in practiceOverview of analytics and big data in practice
Overview of analytics and big data in practice
 

Similar a Sap hana Overview

Getting more out of your big data
Getting more out of your big dataGetting more out of your big data
Getting more out of your big dataNathan Bijnens
 
Analyze This! Best Practices For Big And Fast Data
Analyze This! Best Practices For Big And Fast DataAnalyze This! Best Practices For Big And Fast Data
Analyze This! Best Practices For Big And Fast DataEMC
 
Big data? No. Big Decisions are What You Want
Big data? No. Big Decisions are What You WantBig data? No. Big Decisions are What You Want
Big data? No. Big Decisions are What You WantStuart Miniman
 
Building a business intelligence architecture fit for the 21st century by Jon...
Building a business intelligence architecture fit for the 21st century by Jon...Building a business intelligence architecture fit for the 21st century by Jon...
Building a business intelligence architecture fit for the 21st century by Jon...Mark Tapley
 
sap hana|sap hana database| Introduction to sap hana
sap hana|sap hana database| Introduction to sap hanasap hana|sap hana database| Introduction to sap hana
sap hana|sap hana database| Introduction to sap hanaJames L. Lee
 
Take Action: The New Reality of Data-Driven Business
Take Action: The New Reality of Data-Driven BusinessTake Action: The New Reality of Data-Driven Business
Take Action: The New Reality of Data-Driven BusinessInside Analysis
 
Technology in support of utilities challenges
Technology in support of utilities challengesTechnology in support of utilities challenges
Technology in support of utilities challengesAitor Ibañez
 
Introduction to HANA in-memory from SAP
Introduction to HANA in-memory from SAPIntroduction to HANA in-memory from SAP
Introduction to HANA in-memory from SAPugur candan
 
Real Time Business Platform by Ivan Novick from Pivotal
Real Time Business Platform by Ivan Novick from PivotalReal Time Business Platform by Ivan Novick from Pivotal
Real Time Business Platform by Ivan Novick from PivotalVMware Tanzu Korea
 
Innovating With Data and Analytics
Innovating With Data and AnalyticsInnovating With Data and Analytics
Innovating With Data and AnalyticsVMware Tanzu
 
Accenture hana-in-memory-pov
Accenture hana-in-memory-povAccenture hana-in-memory-pov
Accenture hana-in-memory-povK Thomas
 
Adrian Simpson, Chief Innovation Officer at SAP - Differentiate Through Innov...
Adrian Simpson, Chief Innovation Officer at SAP - Differentiate Through Innov...Adrian Simpson, Chief Innovation Officer at SAP - Differentiate Through Innov...
Adrian Simpson, Chief Innovation Officer at SAP - Differentiate Through Innov...Global Business Events
 
Top SAP Online training institute in Hyderabad
Top SAP Online training institute in HyderabadTop SAP Online training institute in Hyderabad
Top SAP Online training institute in HyderabadAadhyaKrishnan
 
BI Forum 2009 - Principy architektury MPP datového skladu
BI Forum 2009 - Principy architektury MPP datového skladuBI Forum 2009 - Principy architektury MPP datového skladu
BI Forum 2009 - Principy architektury MPP datového skladuOKsystem
 
Ab cs of big data
Ab cs of big dataAb cs of big data
Ab cs of big dataDigimark
 
Embedded Analytics: The Next Mega-Wave of Innovation
Embedded Analytics: The Next Mega-Wave of InnovationEmbedded Analytics: The Next Mega-Wave of Innovation
Embedded Analytics: The Next Mega-Wave of InnovationInside Analysis
 
Hybrid Transactional/Analytics Processing: Beyond the Big Database Hype
Hybrid Transactional/Analytics Processing: Beyond the Big Database HypeHybrid Transactional/Analytics Processing: Beyond the Big Database Hype
Hybrid Transactional/Analytics Processing: Beyond the Big Database HypeAli Hodroj
 
AWS Webcast - Sales Productivity Solutions with MicroStrategy and Redshift
AWS Webcast - Sales Productivity Solutions with MicroStrategy and RedshiftAWS Webcast - Sales Productivity Solutions with MicroStrategy and Redshift
AWS Webcast - Sales Productivity Solutions with MicroStrategy and RedshiftAmazon Web Services
 

Similar a Sap hana Overview (20)

Getting more out of your big data
Getting more out of your big dataGetting more out of your big data
Getting more out of your big data
 
Analyze This! Best Practices For Big And Fast Data
Analyze This! Best Practices For Big And Fast DataAnalyze This! Best Practices For Big And Fast Data
Analyze This! Best Practices For Big And Fast Data
 
Big data? No. Big Decisions are What You Want
Big data? No. Big Decisions are What You WantBig data? No. Big Decisions are What You Want
Big data? No. Big Decisions are What You Want
 
Barak regev
Barak regevBarak regev
Barak regev
 
Building a business intelligence architecture fit for the 21st century by Jon...
Building a business intelligence architecture fit for the 21st century by Jon...Building a business intelligence architecture fit for the 21st century by Jon...
Building a business intelligence architecture fit for the 21st century by Jon...
 
sap hana|sap hana database| Introduction to sap hana
sap hana|sap hana database| Introduction to sap hanasap hana|sap hana database| Introduction to sap hana
sap hana|sap hana database| Introduction to sap hana
 
Take Action: The New Reality of Data-Driven Business
Take Action: The New Reality of Data-Driven BusinessTake Action: The New Reality of Data-Driven Business
Take Action: The New Reality of Data-Driven Business
 
Technology in support of utilities challenges
Technology in support of utilities challengesTechnology in support of utilities challenges
Technology in support of utilities challenges
 
Introduction to HANA in-memory from SAP
Introduction to HANA in-memory from SAPIntroduction to HANA in-memory from SAP
Introduction to HANA in-memory from SAP
 
Real Time Business Platform by Ivan Novick from Pivotal
Real Time Business Platform by Ivan Novick from PivotalReal Time Business Platform by Ivan Novick from Pivotal
Real Time Business Platform by Ivan Novick from Pivotal
 
Innovating With Data and Analytics
Innovating With Data and AnalyticsInnovating With Data and Analytics
Innovating With Data and Analytics
 
The ABCs of Big Data
The ABCs of Big DataThe ABCs of Big Data
The ABCs of Big Data
 
Accenture hana-in-memory-pov
Accenture hana-in-memory-povAccenture hana-in-memory-pov
Accenture hana-in-memory-pov
 
Adrian Simpson, Chief Innovation Officer at SAP - Differentiate Through Innov...
Adrian Simpson, Chief Innovation Officer at SAP - Differentiate Through Innov...Adrian Simpson, Chief Innovation Officer at SAP - Differentiate Through Innov...
Adrian Simpson, Chief Innovation Officer at SAP - Differentiate Through Innov...
 
Top SAP Online training institute in Hyderabad
Top SAP Online training institute in HyderabadTop SAP Online training institute in Hyderabad
Top SAP Online training institute in Hyderabad
 
BI Forum 2009 - Principy architektury MPP datového skladu
BI Forum 2009 - Principy architektury MPP datového skladuBI Forum 2009 - Principy architektury MPP datového skladu
BI Forum 2009 - Principy architektury MPP datového skladu
 
Ab cs of big data
Ab cs of big dataAb cs of big data
Ab cs of big data
 
Embedded Analytics: The Next Mega-Wave of Innovation
Embedded Analytics: The Next Mega-Wave of InnovationEmbedded Analytics: The Next Mega-Wave of Innovation
Embedded Analytics: The Next Mega-Wave of Innovation
 
Hybrid Transactional/Analytics Processing: Beyond the Big Database Hype
Hybrid Transactional/Analytics Processing: Beyond the Big Database HypeHybrid Transactional/Analytics Processing: Beyond the Big Database Hype
Hybrid Transactional/Analytics Processing: Beyond the Big Database Hype
 
AWS Webcast - Sales Productivity Solutions with MicroStrategy and Redshift
AWS Webcast - Sales Productivity Solutions with MicroStrategy and RedshiftAWS Webcast - Sales Productivity Solutions with MicroStrategy and Redshift
AWS Webcast - Sales Productivity Solutions with MicroStrategy and Redshift
 

Sap hana Overview

  • 1. SAP HANA Session 1 Introduction
  • 2. Problem Statement In an organization every year massive amounts of data is created and how fast your business reacts to important information determines whether you succeed or fail. This is a big problem and its getting bigger. In a Sloan Management survey in 2010 60% of executives said their companies Few have more data than they know how to use effectively. Facts IDC estimates that worldwide digital With data doubling every 18 months, content added up to 1 trillion gigabytes in that percentage is going to keep growing. 2011. They predict this will double in 18 According to EMC, by the end of 2011 months, and every 18 months thereafter. there was 1.8 Zeta byte of digital data. www.xpress-analytics.com Ph: 8775734486
  • 3. Now exactly what is a Zeta Byte ? www.xpress-analytics.com Ph: 8775734486
  • 4. Real Time Consumption of Data People want instant access to information – ‘in the moment’’ - whether that is a moment of risk or a moment of opportunity. If the moment has passed and your business has not taken the right action, it has failed. People want instant answers. They want them to be right. They want them anywhere, any time. www.xpress-analytics.com Ph: 8775734486
  • 5. www.xpress-analytics.com Ph: 8775734486
  • 6. www.xpress-analytics.com Ph: 8775734486
  • 7. Agenda 1. Introduction to HANA: Vision and Strategy 2. Solution Overview & Roadmap 3. Business Value 4. HANA Modeling Studio 5. Connecting from BOE 6. Real time Examples www.xpress-analytics.com Ph: 8775734486
  • 8. Solution – A Technology to process and analyze massive amounts of data in real time •In Memory Storage •Multi Core Architecture •Columnar Storage •Partitioning •Compression •Massive parallel processing www.xpress-analytics.com Ph: 8775734486
  • 9. Vision: In-Memory Computing Technology Constrained Business Outcome Current Scenario Sub-optimal execution speed Lack of responsiveness due to data latency and deployment bottlenecks Inability to update demand plan with greater than monthly frequency Increasing Data Volumes Lack of business transparency Sales & Operations Planning based on Information subsets of highly aggregated information, Calculation Speed Latency being several days or weeks outdated. Type and # of Data Sources Reactive business model Missed opportunities and competitive disadvantage due to lack of speed and agility Utilities: daily- or hour-based billing and consumption analysis/simulation. www.xpress-analytics.com Ph: 8775734486
  • 10. In-Memory Computing Technology that allows the processing of massive quantities of real time data in the main memory of the server to provide immediate results from analyses and transactions www.xpress-analytics.com Ph: 8775734486
  • 11. Vision: In-Memory Computing Leapfrogging Current Technology Constraints Future State Flexible Real Time Analytics Real-time customer profitability Effective marketing campaign spend based on large-volume data analysis TeraBytes of Data Improve Business Performance In-Memory IT rapidly delivering flexible solutions enabling business 100 GB/s data Speed up billing and reconciliation cycles Real Time througput for complex goods manufacturers Planning and simulation on the fly based on Freedom from the data source actual non-aggregated data Competitive Advantage E.g. Utilities Industry: Sales growth and market advantage from demand/cost driven pricing that optimizes multiple variables – consumption data, hourly energy price, weather forecast, etc. www.xpress-analytics.com Ph: 8775734486
  • 12. In-Memory Computing – The Time is NOW Orchestrating Technology Innovations The elements of In-Memory computing are not new. However, dramatically improved hardware economics and technology innovations in software has now made it possible for SAP to deliver on its vision of the Real-Time Enterprise with In-Memory business applications HW Technology Innovations SAP SW Technology Innovations Multi-Core Architecture (8 x 8core CPU Row and Column Store per blade) Massive parallel scaling with many blades Compression 64bit address space – 2TB in current servers Partitioning 100GB/s data throughput Dramatic decline in price/performance No Aggregate Tables Real-Time Data Capture Insert Only on Delta www.xpress-analytics.com Ph: 8775734486
  • 13. Using main memory as the data store The most obvious reason to use main memory as the data store for a database is speed of access The main memory (RAM) is the fastest storage type. Data in main memory can be accessed more than a 100,000 times faster than data on a spinning hard disk. flash technology storage is 1000 slower than main memory. Main memory is connected directly to the processors through a very high-speed bus, whereas hard disks are connected through a chain of buses (QPI, PCIe, SAN) and controllers (I/O hub, RAID controller or SAN adapter, and storage controller). www.xpress-analytics.com Ph: 8775734486
  • 14. Minimizing data movement Even though today’s memory capacities allow keeping enormous amounts of data in-memory, compressing the data in-memory is still desirable. The goal is to compress data in a way that does not use up performance gained, while still minimizing data movement from RAM to the processor. www.xpress-analytics.com Ph: 8775734486
  • 15. Columnar storage Relational databases organize data in tables, which contain the data records. The difference between row-based and columnar Row-based storage stores a table in a sequence of rows. Column-based storage stores a table in a sequence of columns. www.xpress-analytics.com Ph: 8775734486
  • 16. Row or Column ? www.xpress-analytics.com Ph: 8775734486
  • 17. Pushing application logic to the database An application executing the application logic on the data has to get the data from the database, process it, and possibly send it back to the database to store the results. Leads to network over heads and latency How will it be to process the data where it is, at the database ??? www.xpress-analytics.com Ph: 8775734486
  • 18. Data partitioning & Parallelization on a 10-core processor the time needed is one-tenth of the time that a single core would need servers available today can hold terabytes of data in memory and provide up to eight processors per server with up to 10 cores per processor To accommodate the memory and computing power requirements that go beyond the limits of a single server, data can be divided into subsets and placed across a cluster of servers, forming a distributed database (scale-out approach). www.xpress-analytics.com Ph: 8775734486
  • 19. In a recent independent benchmark HANA raced through a 100TB test database with 100 billion records. First, HANA achieved a 20x data compression level, which was remarkable. More impressive, though, was that with no caching, indexing, or materializing of the query results, the query responses were a mere 300 to 500 milliseconds. Compare this to some Oracle documentation that has claimed it was "lightning fast" at processing 100 million records in one second. HANA, then, can run 1,000 times more data in less than one-half the time than Oracle. www.xpress-analytics.com Ph: 8775734486
  • 20. Beyond benchmarks, in the real world of Wall Street, one HANA application is using Sybase CEP (Complex Event Processing) to feed more than 2.1 million updates per second into the database. In a retail environment in Japan, one customer achieved 400,000 times performance improvement over its previous database environment. Adobe uses HANA to analyze customer data in real time and T-Mobile runs three HANA databases to analyze and reduce customer churn. It's stories like these that make HANA the fastest growing product in SAP history. www.xpress-analytics.com Ph: 8775734486
  • 21. SAP HANA Use Cases Agile Data Mart In this scenario, SAP HANA acts as the central hub to collect data from a few SAP and non-SAP source systems and then display some fairly simple and focused analytics in a single-purpose dashboard for users SAP Business Suite Accelerator The second major scenario where SAP HANA is being used is to accelerate transactions and reports inside the SAP Business Suite. Again, SAP HANA is being set up as a stand-alone system in the landscape, side-by-side with the database under the SAP Business Suite applications. In this scenario, however, SAP HANA is being used to “off load” some of the transactions or reports that typically take a long time (hours or days) to run, but it is not being used as the primary database under the application. www.xpress-analytics.com Ph: 8775734486
  • 22. SAP HANA Use Cases Primary Database for SAP NetWeaver Business Warehouse In this scenario a company replaces the previously underlying database for their SAP BW system with SAP HANA. The IT team can perform a standard DB migration over to SAP HANA and then enable specific objects to be in-memory optimized as necessary depending on the company’s requirements. Custom Applications for SAP HANA As stated earlier, SAP HANA is a full-blown, do-just-about-anything-you-want application platform. It speaks pure SQL, and it includes all of the most common APIs, so you can literally write any type of application you want on top of it. www.xpress-analytics.com Ph: 8775734486
  • 23. www.xpress-analytics.com Ph: 8775734486
  • 24. www.xpress-analytics.com Ph: 8775734486
  • 25. www.xpress-analytics.com Ph: 8775734486
  • 26. www.xpress-analytics.com Ph: 8775734486
  • 27. www.xpress-analytics.com Ph: 8775734486
  • 28. History behind SAP HANA www.xpress-analytics.com Ph: 8775734486
  • 29. www.xpress-analytics.com Ph: 8775734486
  • 30. www.xpress-analytics.com Ph: 8775734486
  • 31. SAP Appliance Business Partners www.xpress-analytics.com Ph: 8775734486
  • 32. www.xpress-analytics.com Ph: 8775734486
  • 34. www.xpress-analytics.com Ph: 8775734486
  • 37. www.xpress-analytics.com Ph: 8775734486
  • 38. www.xpress-analytics.com Ph: 8775734486
  • 39. SAP BusinessObjects Data Services Platform Rich Transforms Integrate heterogeneous data into BWA Integrated Data Quality Text Analytics Extract From Any Data Source into HANA Syndicate From HANA to Any Consumer www.xpress-analytics.com Ph: 8775734486 © SAP 2007/Page 39
  • 40. SAP BusinessObjects Data Services Platform Rich Transforms Integrate heterogeneous data into BWA Integrated Data Quality Text Analytics Extract From Any Data Source into HANA Syndicate From HANA to Any Consumer www.xpress-analytics.com Ph: 8775734486 © SAP 2007/Page 40
  • 41. Real Time Enterprise: Value Proposition Addressing Key Business Drivers 1. Real-Time Decision Making There is a significant interest from business to get agile There is a significant interest from business to get agile analytic solutions. analytic solutions. • Fast and easy creation of ad-hoc views on business „In a down economy, companies focus on cash protection. „In a down economy, companies focus on cash protection. The decision on what needs to be done to make The decision on what needs to be done to make • Access to real time analysis procurement more efficient is being made in the procurement more efficient is being made in the procurement department“. procurement department“. 1. Accelerate Business Performance CEO of a multinational transportation company CEO of a multinational transportation company • Increase speed of transactional information flow in areas such as planning, forecasting, pricing, offers… Flexibility to analyse business missed by LoB. Flexibility to analyse business missed by LoB. 1. Unlock New Insights „First performance, and the other is flexibility on a „First performance, and the other is flexibility on a business analyst level, who need to do deep diving to business analyst level, who need to do deep diving to • Remove constraints for analyzing large data volumes - better understand and conclude. The second would be better understand and conclude. The second would be that also front-end tools are not providing flexibility“. that also front-end tools are not providing flexibility“. trends, data mining, predictive analytics etc. Executive of a global retail company Executive of a global retail company • Structured and unstructured data 1. Improve Business Productivity Traditional data warehouse processes are too complex Traditional data warehouse processes are too complex • Business designed and owned analytical models and consume too much time for business departments. and consume too much time for business departments. „„The companies […] were frustrated with usual The companies […] were frustrated with usual • Business self-service  reduce reliance on IT problems […] difficulty to build new information views. problems […] difficulty to build new information views. These companies were willing to move data […] into These companies were willing to move data […] into • Use data from anywhere another proprietary file format […]. ““ another proprietary file format […]. Analyst Analyst 1. Improve IT efficiency • Manage growing data volume and complexity efficiently • Lower landscape costs www.xpress-analytics.com Ph: 8775734486
  • 42. Real Time Enterprise: Value Proposition The Value Blocks Value Elements In-Memory Enablers  New business models  based on real-time  Run performance-critical applications in-memory information and execution  Combine analytical and transactional applications  Improved business agility  Dramatically improve  No need for planning levels or aggregation levels planning, forecasting, price optimization and other processes  Multi-dimensional simulation models updated in one step  New business opportunities  faster, more accurate  Internal and external data securely combined business decisions based on complex, large data  Batch data loads eliminated volumes  High performance “real-time” analytics  Sense and respond faster  Apply analytics to internal and external data in real-time to trigger  Support for trending, simulation (“what-if”) actions (e.g., market analytics)  Business-driven data models  Business-driven “What-If”  Ask ad-hoc  Support for structured and un-structured data questions against the data set without IT  Analysis based on non-aggregated data sets  Right information at the right time  Eliminate BW database  Lower infrastructure costs  server, storage, database  Empower business self-service analytics – reduce  Lower labor costs  backup/restore, shadow IT reporting, performance tuning  Consolidate data warehouses and data marts  In-memory business applications (eliminate database for transactional systems) www.xpress-analytics.com Ph: 8775734486
  • 43. www.xpress-analytics.com Ph: 8775734486
  • 44. HANA Information Modeler www.xpress-analytics.com Ph: 8775734486
  • 45. HANA Information Modeler Creating Connectivity to a new system www.xpress-analytics.com Ph: 8775734486
  • 46. HANA Information Modeler Creating Attribute View www.xpress-analytics.com Ph: 8775734486
  • 47. HANA Information Modeler Defining Attributes (Key Attribute, Attribute, Filter and Measure (for numeric data types) www.xpress-analytics.com Ph: 8775734486
  • 48. HANA Information Modeler Data Preview www.xpress-analytics.com Ph: 8775734486
  • 49. HANA Information Modeler Creating Analytic View www.xpress-analytics.com Ph: 8775734486
  • 50. www.xpress-analytics.com Ph: 8775734486
  • 51. Connectivity from BO Enterprise Tools 1. Crystal Reports Enterprise - (ODBC, JDBC, Universe) 2. IDT (Information Design Tool) - JDBC 3. Explorer – Connection configuration in CMC 4. Advanced Analysis for Office (Q1 2011 release) 5. Web Intelligence – Universe 6. Xcelsius - Universe

Notas del editor

  1. Business users of all levels are empowered to conduct immediate ad hoc data analyses and transaction processing using massive amounts of real time data for expanded business insight. It frees up IT resources and lowers the cost of operations.
  2. Defining Attributes (Key Attribute, Attribute, Filter and Measure (for numeric data types) Right click  Data Preview Right click  Activate: This action will activate the Attribute View with selected fields as key figures and associated measures.
  3. We can also view distinct values in each of these fields and perform a quick analysis (data disbursement in graphical format) Analyzing the data present in an attribute: (By selecting Dimensions, Measures and applying filters) Also, we can change the type of chart we want to use depending on the type of data.
  4. The model of Attributes and Analytic View will appear as below after establishing the relationships: Activate the view by right clicking in the studio Now the Analytic View is ready to be accessed by the Explorer.