SlideShare a Scribd company logo
1 of 45
The SAP Startup Focus Program –
Tackling Big Data With the Power of Small
Marcus Krug and Sönke Moosmann, SAP Innovation Center
© 2013 SAP AG. All rights reserved. 2Public
Agenda
 SAP Innovation Center
 Why Startups Matter To Us?
 SAP Startups Focus Program (SFP)
SAP Innovation Center
© 2013 SAP AG. All rights reserved. 4Public
Who We Are
 Established in February 2011
 First of its kind for SAP AG
 Now: 35 FTEs
 Soon: 100 FTEs plus 200
students
© 2013 SAP AG. All rights reserved. 5Public
Looking Beyond ERP
Personalized
Medicine
Online
Gaming
Film
Production
Smart
Energy
Supply-
Chain
Innovation
Technologies
 In-Memory-
Technology
 Cloud
 Mobility
SAP and Startups
How Does That Fit Together?
© 2013 SAP AG. All rights reserved. 7Public
Some Might See Us as…
 Grow old
 Slow
BUT TURTLES ARE
ALSO…
 Quite „fundamental“,
according to ancient
Asian mythology
© 2013 SAP AG. All rights reserved. 8Public
Commonalities - Innovation….
Business
(viable)
Technology
(feasible)
Innovation
Human Values
(desirable,usable)
© 2013 SAP AG. All rights reserved. 9Public
BIG Data
Video
Audio
DemandContent
GPS
Customer Data
ServiceCalls
Emails
Virtual Goods
Social MediaMobile
InstantMessages
SAP HANA
© 2013 SAP AG. All rights reserved. 10Public
BIG Ambitions
SAP Strategic Goals 2015
 20 Bn in Revenue
 35% Margin
 1,000,000,000 Users
→ Dramatically extend SAP‘s ecosystem
And if we join forces…
© 2013 SAP AG. All rights reserved. 11Public
This is What Will Happen…
SAP Startup Focus Program
What Startups Can Expect From Us
© 2013 SAP AG. All rights reserved. 13Public
Access…
1. Technology
 Many startups face „big data“ and „real-time“ challenges → SAP
HANA
2. Customers
 SAP Install Base of close to 200,000 customers across 25 industries
3. Financing
 SAP Ventures
© 2013 SAP AG. All rights reserved. 14Public
SFP – All About Access
Technology
 SAP HANA One Developer Edition (free) → 1 year per default (flexible)
 Physical and virtual HANA bootcamps, HANA virtual learning platform
 technical advisor
Joint Go-to-Market
 Appearances at SAP and non-SAP events
 Solution showcases on HANA marketplace
 Dedicated GTM advisor → GTM plan
 Pipeline creation to drive SFP startups‘ revenue
Access to SAP Ventures and other VCs
 SAP Ventures and other VCs (155 Mio $ HANA Real-time Fund)
© 2013 SAP AG. All rights reserved. 15Public
SFP – From Idea to (Market) Impact
Attend Startup
Forum
Development
Accelerator GTM
Boot Camp
SFP ≈ 1 year ≥1 year: commercial state
Market-ready
solution
SFP selection
Pitch at Forum
© 2013 SAP AG. All rights reserved. 16Public
SFP – Then, Now and Beyond
March - May 2012
- The first 10
startups
- Recruited from
friends + family
- High touch
March – Sept 2012
- From 10 -100
- startup forums
held globally
- HANA boot camps
- HANA developer
edition on AWS
Sapphire EMEA
2012
- ≈150 startups
- 50 with Proof-of-
Concept
2013 – Transition
to Scale!
As of now:
- 200+ startups in
SFP
- 60+ productive
solutions
Goals 2013
- 1000+ startups in
SFP
- 200+ productive
solutions
© 2013 SAP AG. All rights reserved. 17Public
Some References
(Israel)(US) (US)
(France)
(UK)(UK)(Israel)
(US)
(Canada)
(US) (US) (Germany)
etc….
SAP HANA
Crunching Big Data Made Easy
© 2013 SAP AG. All rights reserved. 19Public
The Microscope :: A Tool for Biological Exploration
Before the invention of the microscope
 Difficult to study tiny structures
 Only models, hypotheses about
 Cells
 Micro-organisms
 Difficult to verify / falsify hypotheses
After the invention of the microscope
 Tiny structures are plain to see
 Can be studied in real time
Challenges
... and how HANA helps tackle these
© 2013 SAP AG. All rights reserved. 21Public
Data Challenge
CRM* data
GPS
Demand
Speed
Velocity
Transactions
Opportunities
Servicecalls
Customer
Sales orders
Inventory
E-mails
Tweets
Planning
Things
Mobile
Instantmessages
VELOCITY
VOLUME VARIETY
© 2013 SAP AG. All rights reserved. 22Public
Algorithmic Challenge
Challenges
Forecasting
Key
Influencers
Trends
Anomalies
Relationships
© 2013 SAP AG. All rights reserved. 23Public
Presentation Challenge
© 2013 SAP AG. All rights reserved. 24Public
Application
Server
SAP HANA Overview
Predictive
analytics
Scripting
Data
Modeling
R Integration
Math
Libraries
Column and
row store
+
Multi-core/
parallelization
In-memory
Compression
SQL interface on
columns & rows
SQL
T
Text
Engine
Data Challenges
How do you crunch big data in real time?
© 2013 SAP AG. All rights reserved. 27Public
Optimizing Data Access Patterns
Challenge: Data locality!
 Yes, DRAM is 100,000 times faster than disk…
 But DRAM access is still 4-60 times slower than on-chip caches
© 2013 SAP AG. All rights reserved. 28Public
 SAP HANA supports rows, but is optimized for column-order data organization
Order Country Product Sales
456 France corn 1000
457 Italy wheat 900
458 Italy corn 600
459 Spain rice 800
Column and Row Store
456 France corn 1000
457 Italy wheat 900
458 Italy corn 600
459 Spain rice 800
456
457
458
459
France
Italy
Italy
Spain
corn
wheat
corn
rice
1000
900
600
800
Row order organization
Column order organization
Single-record access:
SELECT * FROM SalesOrders
WHERE Order = ‘457’
SQL
Single-scan aggregation:
SELECT Country, SUM(sales) FROM
SalesOrders WHERE Product=‘corn’ GROUP BY
Country

© 2013 SAP AG. All rights reserved. 29Public
Combining OLTP and OLAP
 Write operations are accumulated
in a dedicated data structure (delta
store)
 Write operations are insert-only!
 Integration of differential data in async.
merge process.
 MVCC enables processing of
OLTP workloads
 Insert only approach favors implementation of
MVCC
Main Memory
at Blade i
Log
SnapshotsPassive Data (History)
Non-Volatile
Memory
RecoveryLogging
Time
travel
Data
aging
Query Execution Metadata TA Manager
Interface Services and Session Management
Distribution Layer
at Blade i
Main Store Differential
Store
Active Data
Merge
Column
Column
Combined
Column
Column
Column
Combined
Column
Indexes
Inverted
Object
Data Guide
© 2013 SAP AG. All rights reserved. 30Public
Order Country Product Sales
456 France corn 1000
457 Italy wheat 900
458 Spain rice 600
459 Italy rice 800
460 Denmark corn 500
461 Denmark rice 600
462 Belgium rice 600
463 Italy rice 1100
… … … …
Columnar Dictionary Compression
 Dictionary per column
 Uses data-driven fixed-length bit encodings
 Operations directly on compressed data, using integers
 More in cache, less main memory access
1 Belgium
2 Denmark
3 France
4 Italy
5 Spain
1 3
2 4
3 5
4 4
5 2
6 2
7 1
8 4
… …
1 7
2 5,6
3 1
4 2,4,8
5 3
Logical Table
Dictionary
5 entries, so
need 3 bits to
encode!
Compressed
column
(bit fields)
Inverted
indexDictionary
Where was
order 460?
Which orders
in Italy?
© 2013 SAP AG. All rights reserved. 31Public
More Columnar Compression Techniques
© 2013 SAP AG. All rights reserved. 32Public
 Concurrent users
 Concurrent operations within a query
 Data partitioning, on one host 
or
distributed to multiple hosts
 Horizontal and vertical 
parallelization of a
single query
operation, using
multiple
cores / threads
Transparent to developer
Parallelization
Inter Transaction Intra Transaction
Inter Query Intra Query
Inter Operation Intra Operation
Pipeline
Parallelism
Data Parallelism
Pipeline
Parallelism
Data Parallelism
Parallelism
Algorithmic Challenges
Going Beyond Descriptive
© 2013 SAP AG. All rights reserved. 34Public
Extending your analytics capabilities
ANALYTICS MATURITY
LEVELOFINSIGHT
Sense & Respond Predict & Act
Raw
Data
Cleaned
Data
Standard
Reports
Ad Hoc
Reports &
OLAP
Generic
Predictive
Analytics
Predictive
Modeling
Optimization
What happened?
Why did it happen?
What will happen?
What is the best
that could
happen?
© 2013 SAP AG. All rights reserved. 35Public
SAP HANA Modeling
Analytical View Attribute View Column Table
Calculation View
© 2013 SAP AG. All rights reserved. 36Public
Implementing Predictive Analytics
SQLScript
 set of SQL extensions to push data-intensive logic into the database and leverage parallel
execution strategies of the database
PAL (Predictive Analysis Library)
 Built-in C++ statistical and data mining algorithms
 K-means, k-nearest neighbor, decision trees, multiple linear regression, classification, and many
more
R integration
 Leverage R’s 3000+ external packages to perform wide-range data mining and statistical
analysis.
© 2013 SAP AG. All rights reserved. 37Public
Intuitively Design Predictive Models using Predictive Analysis
© 2013 SAP AG. All rights reserved. 38Public
SAP Predictive Analysis
Presentation Challenge
Design HANA apps easy and fast
© 2013 SAP AG. All rights reserved. 40Public
SAP HANA XS Engine
Rationale: Enable application development
and deployment – minimize layers
 HTTP-based UI (browser, mobile apps)
 Runs directly on HANA, minimizes TCO
 Leverages built-in strengths of SAP HANA
for the best possible performance
Scope
 From lightweight environment for small web-
based applications
 To robust environment for complex high-
speed business applications
Control flow logic
Calculation logic
Data
Clients
Presentation logic
HANA
XS
© 2013 SAP AG. All rights reserved. 41Public
Implement UIs with SAPUI5
SAPUI5 is an extensible JavaScript-based HTML5
browser rendering library for Business
Applications.
 Uses the jQuery library as a foundation
 Open AJAX compliant and can be used together
with/uses other standard JS libs
 Supports RIA like client-side features based on
JavaScript
 Supports an extensibility concept regarding
custom controls
 Allows usage of own JavaScript and HTML
Internet
Explorer
Version 9
Version 8
Chrome
Latest
version
Firefox
Version 3.6
and latest
version
Safari
Latest
version
© 2013 SAP AG. All rights reserved. 42Public
SAPUI5 Templates
© 2013 SAP AG. All rights reserved. 43Public
Demo :: In-Game Promotion Management
Bigpoint
 Europe‘s largest browser game provider with 300 Mio
users
 Revenue through selling „virtual goods“
 1-3% of users are buying virtual offers.
Goals
 Perform real-time massive amount of event stream
analytics
 Filter and monitor online players
 Enabling in-game promotion offers and track results in
real-time
© 2013 SAP AG. All rights reserved. 44Public
In Summary
In-memory data management
 Column-oriented data layout
 Compression
 Parallelization
 Optimized for big data
 Transparent to developer
HANA Applications
 XS Engine
 Application Server
 Control logic
 SAPUI5
 Reduced TCO
Predictive Analytics
 SQLScript
 R integration
 Predictive Analysis
Library
 Unlock new insights
© 2013 SAP AG. All rights reserved. 45Public
Take Your Chance!
The SAP Startup Forum is coming to
Berlin again!
 When: June 19th
 Where: SAP Office Berlin
(Rosenthaler Str. 30)
 For more info, visit our event website:
http://www.saphana.com/community/learn/startups/forums/berlin
 Or turn to us directly
Thank you!
Sönke Moosmann
SAP Innovation Center
soenke.moosmann@sap.com
Marcus Krug
SAP Innovation Center
marcus.krug@sap.com

More Related Content

What's hot

Sap HANA Presentation to SAPnsight Dallas Breakfast Huddle in June 2014
Sap HANA Presentation to SAPnsight Dallas Breakfast Huddle in June 2014Sap HANA Presentation to SAPnsight Dallas Breakfast Huddle in June 2014
Sap HANA Presentation to SAPnsight Dallas Breakfast Huddle in June 2014Denis ONeil
 
SAP analytics as enabler for the intelligent enterprise (Iver van de Zand)
SAP analytics as enabler for the intelligent enterprise (Iver van de Zand)SAP analytics as enabler for the intelligent enterprise (Iver van de Zand)
SAP analytics as enabler for the intelligent enterprise (Iver van de Zand)Twan van den Broek
 
Enterprise Applications, Microservices and SAP HANA Cloud Platform
Enterprise Applications, Microservices and SAP HANA Cloud PlatformEnterprise Applications, Microservices and SAP HANA Cloud Platform
Enterprise Applications, Microservices and SAP HANA Cloud Platformmsg systems Romania
 
Hadoop, Spark and Big Data Summit presentation with SAP HANA Vora and a path ...
Hadoop, Spark and Big Data Summit presentation with SAP HANA Vora and a path ...Hadoop, Spark and Big Data Summit presentation with SAP HANA Vora and a path ...
Hadoop, Spark and Big Data Summit presentation with SAP HANA Vora and a path ...Ocean9, Inc.
 
SAP Database Platform, ASE & IoT Roadmap
SAP Database Platform, ASE & IoT RoadmapSAP Database Platform, ASE & IoT Roadmap
SAP Database Platform, ASE & IoT RoadmapPaul Marriott
 
SAP Cloud Platform Product Overview
SAP Cloud Platform Product OverviewSAP Cloud Platform Product Overview
SAP Cloud Platform Product OverviewSAP Cloud Platform
 
SAP Cloud Infrastructure Strategy @ Virtualization Week
SAP Cloud Infrastructure Strategy @ Virtualization WeekSAP Cloud Infrastructure Strategy @ Virtualization Week
SAP Cloud Infrastructure Strategy @ Virtualization WeekFrank Stienhans
 
26764 Waldemar Adams 151116 BCN SAP Select
26764 Waldemar Adams 151116 BCN SAP Select26764 Waldemar Adams 151116 BCN SAP Select
26764 Waldemar Adams 151116 BCN SAP SelectWaldemar Adams
 

What's hot (9)

Sap HANA Presentation to SAPnsight Dallas Breakfast Huddle in June 2014
Sap HANA Presentation to SAPnsight Dallas Breakfast Huddle in June 2014Sap HANA Presentation to SAPnsight Dallas Breakfast Huddle in June 2014
Sap HANA Presentation to SAPnsight Dallas Breakfast Huddle in June 2014
 
SAP analytics as enabler for the intelligent enterprise (Iver van de Zand)
SAP analytics as enabler for the intelligent enterprise (Iver van de Zand)SAP analytics as enabler for the intelligent enterprise (Iver van de Zand)
SAP analytics as enabler for the intelligent enterprise (Iver van de Zand)
 
Enterprise Applications, Microservices and SAP HANA Cloud Platform
Enterprise Applications, Microservices and SAP HANA Cloud PlatformEnterprise Applications, Microservices and SAP HANA Cloud Platform
Enterprise Applications, Microservices and SAP HANA Cloud Platform
 
Hadoop, Spark and Big Data Summit presentation with SAP HANA Vora and a path ...
Hadoop, Spark and Big Data Summit presentation with SAP HANA Vora and a path ...Hadoop, Spark and Big Data Summit presentation with SAP HANA Vora and a path ...
Hadoop, Spark and Big Data Summit presentation with SAP HANA Vora and a path ...
 
SAP Database Platform, ASE & IoT Roadmap
SAP Database Platform, ASE & IoT RoadmapSAP Database Platform, ASE & IoT Roadmap
SAP Database Platform, ASE & IoT Roadmap
 
Sap investor symposioum
Sap investor symposioumSap investor symposioum
Sap investor symposioum
 
SAP Cloud Platform Product Overview
SAP Cloud Platform Product OverviewSAP Cloud Platform Product Overview
SAP Cloud Platform Product Overview
 
SAP Cloud Infrastructure Strategy @ Virtualization Week
SAP Cloud Infrastructure Strategy @ Virtualization WeekSAP Cloud Infrastructure Strategy @ Virtualization Week
SAP Cloud Infrastructure Strategy @ Virtualization Week
 
26764 Waldemar Adams 151116 BCN SAP Select
26764 Waldemar Adams 151116 BCN SAP Select26764 Waldemar Adams 151116 BCN SAP Select
26764 Waldemar Adams 151116 BCN SAP Select
 

Similar to The SAP Startup Focus Program – Tackling Big Data With the Power of Small by Soenke Moosmann

In-Memory Database Platform for Big Data
In-Memory Database Platform for Big DataIn-Memory Database Platform for Big Data
In-Memory Database Platform for Big DataSAP Technology
 
Future of Enterprise PaaS
Future of Enterprise PaaSFuture of Enterprise PaaS
Future of Enterprise PaaSSAP Technology
 
Future of Enterprise PaaS (Cloud Foundry Summit 2014)
 Future of Enterprise PaaS (Cloud Foundry Summit 2014) Future of Enterprise PaaS (Cloud Foundry Summit 2014)
Future of Enterprise PaaS (Cloud Foundry Summit 2014)VMware Tanzu
 
Sap hana by jeff_word
Sap hana by jeff_wordSap hana by jeff_word
Sap hana by jeff_wordSunil Joshi
 
SAP HANA McLaren Innovation
SAP HANA McLaren Innovation SAP HANA McLaren Innovation
SAP HANA McLaren Innovation affectosweden
 
SAP HANA: Enterprise Data Management Meets High Performance Enterprise Computing
SAP HANA: Enterprise Data Management Meets High Performance Enterprise ComputingSAP HANA: Enterprise Data Management Meets High Performance Enterprise Computing
SAP HANA: Enterprise Data Management Meets High Performance Enterprise Computingimcpune
 
GITEX Big Data Conference 2014 – SAP Presentation
GITEX Big Data Conference 2014 – SAP PresentationGITEX Big Data Conference 2014 – SAP Presentation
GITEX Big Data Conference 2014 – SAP PresentationPedro Pereira
 
SAP Leonardo / Machine Learning (Iver van de Zand)
SAP Leonardo / Machine Learning (Iver van de Zand)SAP Leonardo / Machine Learning (Iver van de Zand)
SAP Leonardo / Machine Learning (Iver van de Zand)Twan van den Broek
 
Deploy s4 hana
Deploy s4 hanaDeploy s4 hana
Deploy s4 hanaDivya Goel
 
Mobile pulse sept 2014
Mobile pulse sept 2014Mobile pulse sept 2014
Mobile pulse sept 2014Bjørn Sloth
 
The Power of Collective Insight with SAP BI
The Power of Collective Insight with SAP BIThe Power of Collective Insight with SAP BI
The Power of Collective Insight with SAP BIWaldemar Adams
 
SAP IQ 16 Product Annoucement
SAP IQ 16 Product AnnoucementSAP IQ 16 Product Annoucement
SAP IQ 16 Product AnnoucementDobler Consulting
 
Big data tim
Big data timBig data tim
Big data timT Weir
 
WHY SAP Real Time Data Platform - RTDP
WHY SAP Real Time Data Platform - RTDPWHY SAP Real Time Data Platform - RTDP
WHY SAP Real Time Data Platform - RTDPugur candan
 
Sap hana l1 -reinventing real-time businesses through innovation, value & si...
Sap hana l1  -reinventing real-time businesses through innovation, value & si...Sap hana l1  -reinventing real-time businesses through innovation, value & si...
Sap hana l1 -reinventing real-time businesses through innovation, value & si...Daniel Lahl
 
Financial analystprogrammarch2014
Financial analystprogrammarch2014Financial analystprogrammarch2014
Financial analystprogrammarch2014Company Spotlight
 
Digital Business with SAP B1 - Introduction
Digital Business with SAP B1 - IntroductionDigital Business with SAP B1 - Introduction
Digital Business with SAP B1 - Introductionjzelynlim95
 
SAP IT session on SAP Screen Personas at TechEd 2013
SAP IT session on SAP Screen Personas at TechEd 2013SAP IT session on SAP Screen Personas at TechEd 2013
SAP IT session on SAP Screen Personas at TechEd 2013Peter Spielvogel
 

Similar to The SAP Startup Focus Program – Tackling Big Data With the Power of Small by Soenke Moosmann (20)

In-Memory Database Platform for Big Data
In-Memory Database Platform for Big DataIn-Memory Database Platform for Big Data
In-Memory Database Platform for Big Data
 
Future of Enterprise PaaS
Future of Enterprise PaaSFuture of Enterprise PaaS
Future of Enterprise PaaS
 
Future of Enterprise PaaS (Cloud Foundry Summit 2014)
 Future of Enterprise PaaS (Cloud Foundry Summit 2014) Future of Enterprise PaaS (Cloud Foundry Summit 2014)
Future of Enterprise PaaS (Cloud Foundry Summit 2014)
 
Sap hana by jeff_word
Sap hana by jeff_wordSap hana by jeff_word
Sap hana by jeff_word
 
SAP HANA McLaren Innovation
SAP HANA McLaren Innovation SAP HANA McLaren Innovation
SAP HANA McLaren Innovation
 
SAP HANA: Enterprise Data Management Meets High Performance Enterprise Computing
SAP HANA: Enterprise Data Management Meets High Performance Enterprise ComputingSAP HANA: Enterprise Data Management Meets High Performance Enterprise Computing
SAP HANA: Enterprise Data Management Meets High Performance Enterprise Computing
 
GITEX Big Data Conference 2014 – SAP Presentation
GITEX Big Data Conference 2014 – SAP PresentationGITEX Big Data Conference 2014 – SAP Presentation
GITEX Big Data Conference 2014 – SAP Presentation
 
SAP Leonardo / Machine Learning (Iver van de Zand)
SAP Leonardo / Machine Learning (Iver van de Zand)SAP Leonardo / Machine Learning (Iver van de Zand)
SAP Leonardo / Machine Learning (Iver van de Zand)
 
Deploy s4 hana
Deploy s4 hanaDeploy s4 hana
Deploy s4 hana
 
Mobile pulse sept 2014
Mobile pulse sept 2014Mobile pulse sept 2014
Mobile pulse sept 2014
 
The Power of Collective Insight with SAP BI
The Power of Collective Insight with SAP BIThe Power of Collective Insight with SAP BI
The Power of Collective Insight with SAP BI
 
SAP IQ 16 Product Annoucement
SAP IQ 16 Product AnnoucementSAP IQ 16 Product Annoucement
SAP IQ 16 Product Annoucement
 
Google Technical Webinar - Building Mashups with Google Apps and SAP, using S...
Google Technical Webinar - Building Mashups with Google Apps and SAP, using S...Google Technical Webinar - Building Mashups with Google Apps and SAP, using S...
Google Technical Webinar - Building Mashups with Google Apps and SAP, using S...
 
Big data tim
Big data timBig data tim
Big data tim
 
WHY SAP Real Time Data Platform - RTDP
WHY SAP Real Time Data Platform - RTDPWHY SAP Real Time Data Platform - RTDP
WHY SAP Real Time Data Platform - RTDP
 
Sap hana l1 -reinventing real-time businesses through innovation, value & si...
Sap hana l1  -reinventing real-time businesses through innovation, value & si...Sap hana l1  -reinventing real-time businesses through innovation, value & si...
Sap hana l1 -reinventing real-time businesses through innovation, value & si...
 
Financial analystprogrammarch2014
Financial analystprogrammarch2014Financial analystprogrammarch2014
Financial analystprogrammarch2014
 
Digital Business with SAP B1 - Introduction
Digital Business with SAP B1 - IntroductionDigital Business with SAP B1 - Introduction
Digital Business with SAP B1 - Introduction
 
SAP IT session on SAP Screen Personas at TechEd 2013
SAP IT session on SAP Screen Personas at TechEd 2013SAP IT session on SAP Screen Personas at TechEd 2013
SAP IT session on SAP Screen Personas at TechEd 2013
 
SAP HANA Cloud Platform - From Your Datacenter to The Cloud & Back
SAP HANA Cloud Platform - From Your Datacenter to The Cloud & BackSAP HANA Cloud Platform - From Your Datacenter to The Cloud & Back
SAP HANA Cloud Platform - From Your Datacenter to The Cloud & Back
 

More from Codemotion

Fuzz-testing: A hacker's approach to making your code more secure | Pascal Ze...
Fuzz-testing: A hacker's approach to making your code more secure | Pascal Ze...Fuzz-testing: A hacker's approach to making your code more secure | Pascal Ze...
Fuzz-testing: A hacker's approach to making your code more secure | Pascal Ze...Codemotion
 
Pompili - From hero to_zero: The FatalNoise neverending story
Pompili - From hero to_zero: The FatalNoise neverending storyPompili - From hero to_zero: The FatalNoise neverending story
Pompili - From hero to_zero: The FatalNoise neverending storyCodemotion
 
Pastore - Commodore 65 - La storia
Pastore - Commodore 65 - La storiaPastore - Commodore 65 - La storia
Pastore - Commodore 65 - La storiaCodemotion
 
Pennisi - Essere Richard Altwasser
Pennisi - Essere Richard AltwasserPennisi - Essere Richard Altwasser
Pennisi - Essere Richard AltwasserCodemotion
 
Michel Schudel - Let's build a blockchain... in 40 minutes! - Codemotion Amst...
Michel Schudel - Let's build a blockchain... in 40 minutes! - Codemotion Amst...Michel Schudel - Let's build a blockchain... in 40 minutes! - Codemotion Amst...
Michel Schudel - Let's build a blockchain... in 40 minutes! - Codemotion Amst...Codemotion
 
Richard Süselbeck - Building your own ride share app - Codemotion Amsterdam 2019
Richard Süselbeck - Building your own ride share app - Codemotion Amsterdam 2019Richard Süselbeck - Building your own ride share app - Codemotion Amsterdam 2019
Richard Süselbeck - Building your own ride share app - Codemotion Amsterdam 2019Codemotion
 
Eward Driehuis - What we learned from 20.000 attacks - Codemotion Amsterdam 2019
Eward Driehuis - What we learned from 20.000 attacks - Codemotion Amsterdam 2019Eward Driehuis - What we learned from 20.000 attacks - Codemotion Amsterdam 2019
Eward Driehuis - What we learned from 20.000 attacks - Codemotion Amsterdam 2019Codemotion
 
Francesco Baldassarri - Deliver Data at Scale - Codemotion Amsterdam 2019 -
Francesco Baldassarri  - Deliver Data at Scale - Codemotion Amsterdam 2019 - Francesco Baldassarri  - Deliver Data at Scale - Codemotion Amsterdam 2019 -
Francesco Baldassarri - Deliver Data at Scale - Codemotion Amsterdam 2019 - Codemotion
 
Martin Förtsch, Thomas Endres - Stereoscopic Style Transfer AI - Codemotion A...
Martin Förtsch, Thomas Endres - Stereoscopic Style Transfer AI - Codemotion A...Martin Förtsch, Thomas Endres - Stereoscopic Style Transfer AI - Codemotion A...
Martin Förtsch, Thomas Endres - Stereoscopic Style Transfer AI - Codemotion A...Codemotion
 
Melanie Rieback, Klaus Kursawe - Blockchain Security: Melting the "Silver Bul...
Melanie Rieback, Klaus Kursawe - Blockchain Security: Melting the "Silver Bul...Melanie Rieback, Klaus Kursawe - Blockchain Security: Melting the "Silver Bul...
Melanie Rieback, Klaus Kursawe - Blockchain Security: Melting the "Silver Bul...Codemotion
 
Angelo van der Sijpt - How well do you know your network stack? - Codemotion ...
Angelo van der Sijpt - How well do you know your network stack? - Codemotion ...Angelo van der Sijpt - How well do you know your network stack? - Codemotion ...
Angelo van der Sijpt - How well do you know your network stack? - Codemotion ...Codemotion
 
Lars Wolff - Performance Testing for DevOps in the Cloud - Codemotion Amsterd...
Lars Wolff - Performance Testing for DevOps in the Cloud - Codemotion Amsterd...Lars Wolff - Performance Testing for DevOps in the Cloud - Codemotion Amsterd...
Lars Wolff - Performance Testing for DevOps in the Cloud - Codemotion Amsterd...Codemotion
 
Sascha Wolter - Conversational AI Demystified - Codemotion Amsterdam 2019
Sascha Wolter - Conversational AI Demystified - Codemotion Amsterdam 2019Sascha Wolter - Conversational AI Demystified - Codemotion Amsterdam 2019
Sascha Wolter - Conversational AI Demystified - Codemotion Amsterdam 2019Codemotion
 
Michele Tonutti - Scaling is caring - Codemotion Amsterdam 2019
Michele Tonutti - Scaling is caring - Codemotion Amsterdam 2019Michele Tonutti - Scaling is caring - Codemotion Amsterdam 2019
Michele Tonutti - Scaling is caring - Codemotion Amsterdam 2019Codemotion
 
Pat Hermens - From 100 to 1,000+ deployments a day - Codemotion Amsterdam 2019
Pat Hermens - From 100 to 1,000+ deployments a day - Codemotion Amsterdam 2019Pat Hermens - From 100 to 1,000+ deployments a day - Codemotion Amsterdam 2019
Pat Hermens - From 100 to 1,000+ deployments a day - Codemotion Amsterdam 2019Codemotion
 
James Birnie - Using Many Worlds of Compute Power with Quantum - Codemotion A...
James Birnie - Using Many Worlds of Compute Power with Quantum - Codemotion A...James Birnie - Using Many Worlds of Compute Power with Quantum - Codemotion A...
James Birnie - Using Many Worlds of Compute Power with Quantum - Codemotion A...Codemotion
 
Don Goodman-Wilson - Chinese food, motor scooters, and open source developmen...
Don Goodman-Wilson - Chinese food, motor scooters, and open source developmen...Don Goodman-Wilson - Chinese food, motor scooters, and open source developmen...
Don Goodman-Wilson - Chinese food, motor scooters, and open source developmen...Codemotion
 
Pieter Omvlee - The story behind Sketch - Codemotion Amsterdam 2019
Pieter Omvlee - The story behind Sketch - Codemotion Amsterdam 2019Pieter Omvlee - The story behind Sketch - Codemotion Amsterdam 2019
Pieter Omvlee - The story behind Sketch - Codemotion Amsterdam 2019Codemotion
 
Dave Farley - Taking Back “Software Engineering” - Codemotion Amsterdam 2019
Dave Farley - Taking Back “Software Engineering” - Codemotion Amsterdam 2019Dave Farley - Taking Back “Software Engineering” - Codemotion Amsterdam 2019
Dave Farley - Taking Back “Software Engineering” - Codemotion Amsterdam 2019Codemotion
 
Joshua Hoffman - Should the CTO be Coding? - Codemotion Amsterdam 2019
Joshua Hoffman - Should the CTO be Coding? - Codemotion Amsterdam 2019Joshua Hoffman - Should the CTO be Coding? - Codemotion Amsterdam 2019
Joshua Hoffman - Should the CTO be Coding? - Codemotion Amsterdam 2019Codemotion
 

More from Codemotion (20)

Fuzz-testing: A hacker's approach to making your code more secure | Pascal Ze...
Fuzz-testing: A hacker's approach to making your code more secure | Pascal Ze...Fuzz-testing: A hacker's approach to making your code more secure | Pascal Ze...
Fuzz-testing: A hacker's approach to making your code more secure | Pascal Ze...
 
Pompili - From hero to_zero: The FatalNoise neverending story
Pompili - From hero to_zero: The FatalNoise neverending storyPompili - From hero to_zero: The FatalNoise neverending story
Pompili - From hero to_zero: The FatalNoise neverending story
 
Pastore - Commodore 65 - La storia
Pastore - Commodore 65 - La storiaPastore - Commodore 65 - La storia
Pastore - Commodore 65 - La storia
 
Pennisi - Essere Richard Altwasser
Pennisi - Essere Richard AltwasserPennisi - Essere Richard Altwasser
Pennisi - Essere Richard Altwasser
 
Michel Schudel - Let's build a blockchain... in 40 minutes! - Codemotion Amst...
Michel Schudel - Let's build a blockchain... in 40 minutes! - Codemotion Amst...Michel Schudel - Let's build a blockchain... in 40 minutes! - Codemotion Amst...
Michel Schudel - Let's build a blockchain... in 40 minutes! - Codemotion Amst...
 
Richard Süselbeck - Building your own ride share app - Codemotion Amsterdam 2019
Richard Süselbeck - Building your own ride share app - Codemotion Amsterdam 2019Richard Süselbeck - Building your own ride share app - Codemotion Amsterdam 2019
Richard Süselbeck - Building your own ride share app - Codemotion Amsterdam 2019
 
Eward Driehuis - What we learned from 20.000 attacks - Codemotion Amsterdam 2019
Eward Driehuis - What we learned from 20.000 attacks - Codemotion Amsterdam 2019Eward Driehuis - What we learned from 20.000 attacks - Codemotion Amsterdam 2019
Eward Driehuis - What we learned from 20.000 attacks - Codemotion Amsterdam 2019
 
Francesco Baldassarri - Deliver Data at Scale - Codemotion Amsterdam 2019 -
Francesco Baldassarri  - Deliver Data at Scale - Codemotion Amsterdam 2019 - Francesco Baldassarri  - Deliver Data at Scale - Codemotion Amsterdam 2019 -
Francesco Baldassarri - Deliver Data at Scale - Codemotion Amsterdam 2019 -
 
Martin Förtsch, Thomas Endres - Stereoscopic Style Transfer AI - Codemotion A...
Martin Förtsch, Thomas Endres - Stereoscopic Style Transfer AI - Codemotion A...Martin Förtsch, Thomas Endres - Stereoscopic Style Transfer AI - Codemotion A...
Martin Förtsch, Thomas Endres - Stereoscopic Style Transfer AI - Codemotion A...
 
Melanie Rieback, Klaus Kursawe - Blockchain Security: Melting the "Silver Bul...
Melanie Rieback, Klaus Kursawe - Blockchain Security: Melting the "Silver Bul...Melanie Rieback, Klaus Kursawe - Blockchain Security: Melting the "Silver Bul...
Melanie Rieback, Klaus Kursawe - Blockchain Security: Melting the "Silver Bul...
 
Angelo van der Sijpt - How well do you know your network stack? - Codemotion ...
Angelo van der Sijpt - How well do you know your network stack? - Codemotion ...Angelo van der Sijpt - How well do you know your network stack? - Codemotion ...
Angelo van der Sijpt - How well do you know your network stack? - Codemotion ...
 
Lars Wolff - Performance Testing for DevOps in the Cloud - Codemotion Amsterd...
Lars Wolff - Performance Testing for DevOps in the Cloud - Codemotion Amsterd...Lars Wolff - Performance Testing for DevOps in the Cloud - Codemotion Amsterd...
Lars Wolff - Performance Testing for DevOps in the Cloud - Codemotion Amsterd...
 
Sascha Wolter - Conversational AI Demystified - Codemotion Amsterdam 2019
Sascha Wolter - Conversational AI Demystified - Codemotion Amsterdam 2019Sascha Wolter - Conversational AI Demystified - Codemotion Amsterdam 2019
Sascha Wolter - Conversational AI Demystified - Codemotion Amsterdam 2019
 
Michele Tonutti - Scaling is caring - Codemotion Amsterdam 2019
Michele Tonutti - Scaling is caring - Codemotion Amsterdam 2019Michele Tonutti - Scaling is caring - Codemotion Amsterdam 2019
Michele Tonutti - Scaling is caring - Codemotion Amsterdam 2019
 
Pat Hermens - From 100 to 1,000+ deployments a day - Codemotion Amsterdam 2019
Pat Hermens - From 100 to 1,000+ deployments a day - Codemotion Amsterdam 2019Pat Hermens - From 100 to 1,000+ deployments a day - Codemotion Amsterdam 2019
Pat Hermens - From 100 to 1,000+ deployments a day - Codemotion Amsterdam 2019
 
James Birnie - Using Many Worlds of Compute Power with Quantum - Codemotion A...
James Birnie - Using Many Worlds of Compute Power with Quantum - Codemotion A...James Birnie - Using Many Worlds of Compute Power with Quantum - Codemotion A...
James Birnie - Using Many Worlds of Compute Power with Quantum - Codemotion A...
 
Don Goodman-Wilson - Chinese food, motor scooters, and open source developmen...
Don Goodman-Wilson - Chinese food, motor scooters, and open source developmen...Don Goodman-Wilson - Chinese food, motor scooters, and open source developmen...
Don Goodman-Wilson - Chinese food, motor scooters, and open source developmen...
 
Pieter Omvlee - The story behind Sketch - Codemotion Amsterdam 2019
Pieter Omvlee - The story behind Sketch - Codemotion Amsterdam 2019Pieter Omvlee - The story behind Sketch - Codemotion Amsterdam 2019
Pieter Omvlee - The story behind Sketch - Codemotion Amsterdam 2019
 
Dave Farley - Taking Back “Software Engineering” - Codemotion Amsterdam 2019
Dave Farley - Taking Back “Software Engineering” - Codemotion Amsterdam 2019Dave Farley - Taking Back “Software Engineering” - Codemotion Amsterdam 2019
Dave Farley - Taking Back “Software Engineering” - Codemotion Amsterdam 2019
 
Joshua Hoffman - Should the CTO be Coding? - Codemotion Amsterdam 2019
Joshua Hoffman - Should the CTO be Coding? - Codemotion Amsterdam 2019Joshua Hoffman - Should the CTO be Coding? - Codemotion Amsterdam 2019
Joshua Hoffman - Should the CTO be Coding? - Codemotion Amsterdam 2019
 

Recently uploaded

Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsRavi Sanghani
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfpanagenda
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityIES VE
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesKari Kakkonen
 
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesThousandEyes
 
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Scott Andery
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Strongerpanagenda
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPathCommunity
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 

Recently uploaded (20)

Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and Insights
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdfSo einfach geht modernes Roaming fuer Notes und Nomad.pdf
So einfach geht modernes Roaming fuer Notes und Nomad.pdf
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a reality
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examples
 
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
 
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 

The SAP Startup Focus Program – Tackling Big Data With the Power of Small by Soenke Moosmann

  • 1. The SAP Startup Focus Program – Tackling Big Data With the Power of Small Marcus Krug and Sönke Moosmann, SAP Innovation Center
  • 2. © 2013 SAP AG. All rights reserved. 2Public Agenda  SAP Innovation Center  Why Startups Matter To Us?  SAP Startups Focus Program (SFP)
  • 4. © 2013 SAP AG. All rights reserved. 4Public Who We Are  Established in February 2011  First of its kind for SAP AG  Now: 35 FTEs  Soon: 100 FTEs plus 200 students
  • 5. © 2013 SAP AG. All rights reserved. 5Public Looking Beyond ERP Personalized Medicine Online Gaming Film Production Smart Energy Supply- Chain Innovation Technologies  In-Memory- Technology  Cloud  Mobility
  • 6. SAP and Startups How Does That Fit Together?
  • 7. © 2013 SAP AG. All rights reserved. 7Public Some Might See Us as…  Grow old  Slow BUT TURTLES ARE ALSO…  Quite „fundamental“, according to ancient Asian mythology
  • 8. © 2013 SAP AG. All rights reserved. 8Public Commonalities - Innovation…. Business (viable) Technology (feasible) Innovation Human Values (desirable,usable)
  • 9. © 2013 SAP AG. All rights reserved. 9Public BIG Data Video Audio DemandContent GPS Customer Data ServiceCalls Emails Virtual Goods Social MediaMobile InstantMessages SAP HANA
  • 10. © 2013 SAP AG. All rights reserved. 10Public BIG Ambitions SAP Strategic Goals 2015  20 Bn in Revenue  35% Margin  1,000,000,000 Users → Dramatically extend SAP‘s ecosystem And if we join forces…
  • 11. © 2013 SAP AG. All rights reserved. 11Public This is What Will Happen…
  • 12. SAP Startup Focus Program What Startups Can Expect From Us
  • 13. © 2013 SAP AG. All rights reserved. 13Public Access… 1. Technology  Many startups face „big data“ and „real-time“ challenges → SAP HANA 2. Customers  SAP Install Base of close to 200,000 customers across 25 industries 3. Financing  SAP Ventures
  • 14. © 2013 SAP AG. All rights reserved. 14Public SFP – All About Access Technology  SAP HANA One Developer Edition (free) → 1 year per default (flexible)  Physical and virtual HANA bootcamps, HANA virtual learning platform  technical advisor Joint Go-to-Market  Appearances at SAP and non-SAP events  Solution showcases on HANA marketplace  Dedicated GTM advisor → GTM plan  Pipeline creation to drive SFP startups‘ revenue Access to SAP Ventures and other VCs  SAP Ventures and other VCs (155 Mio $ HANA Real-time Fund)
  • 15. © 2013 SAP AG. All rights reserved. 15Public SFP – From Idea to (Market) Impact Attend Startup Forum Development Accelerator GTM Boot Camp SFP ≈ 1 year ≥1 year: commercial state Market-ready solution SFP selection Pitch at Forum
  • 16. © 2013 SAP AG. All rights reserved. 16Public SFP – Then, Now and Beyond March - May 2012 - The first 10 startups - Recruited from friends + family - High touch March – Sept 2012 - From 10 -100 - startup forums held globally - HANA boot camps - HANA developer edition on AWS Sapphire EMEA 2012 - ≈150 startups - 50 with Proof-of- Concept 2013 – Transition to Scale! As of now: - 200+ startups in SFP - 60+ productive solutions Goals 2013 - 1000+ startups in SFP - 200+ productive solutions
  • 17. © 2013 SAP AG. All rights reserved. 17Public Some References (Israel)(US) (US) (France) (UK)(UK)(Israel) (US) (Canada) (US) (US) (Germany) etc….
  • 18. SAP HANA Crunching Big Data Made Easy
  • 19. © 2013 SAP AG. All rights reserved. 19Public The Microscope :: A Tool for Biological Exploration Before the invention of the microscope  Difficult to study tiny structures  Only models, hypotheses about  Cells  Micro-organisms  Difficult to verify / falsify hypotheses After the invention of the microscope  Tiny structures are plain to see  Can be studied in real time
  • 20. Challenges ... and how HANA helps tackle these
  • 21. © 2013 SAP AG. All rights reserved. 21Public Data Challenge CRM* data GPS Demand Speed Velocity Transactions Opportunities Servicecalls Customer Sales orders Inventory E-mails Tweets Planning Things Mobile Instantmessages VELOCITY VOLUME VARIETY
  • 22. © 2013 SAP AG. All rights reserved. 22Public Algorithmic Challenge Challenges Forecasting Key Influencers Trends Anomalies Relationships
  • 23. © 2013 SAP AG. All rights reserved. 23Public Presentation Challenge
  • 24. © 2013 SAP AG. All rights reserved. 24Public Application Server SAP HANA Overview Predictive analytics Scripting Data Modeling R Integration Math Libraries Column and row store + Multi-core/ parallelization In-memory Compression SQL interface on columns & rows SQL T Text Engine
  • 25. Data Challenges How do you crunch big data in real time?
  • 26. © 2013 SAP AG. All rights reserved. 27Public Optimizing Data Access Patterns Challenge: Data locality!  Yes, DRAM is 100,000 times faster than disk…  But DRAM access is still 4-60 times slower than on-chip caches
  • 27. © 2013 SAP AG. All rights reserved. 28Public  SAP HANA supports rows, but is optimized for column-order data organization Order Country Product Sales 456 France corn 1000 457 Italy wheat 900 458 Italy corn 600 459 Spain rice 800 Column and Row Store 456 France corn 1000 457 Italy wheat 900 458 Italy corn 600 459 Spain rice 800 456 457 458 459 France Italy Italy Spain corn wheat corn rice 1000 900 600 800 Row order organization Column order organization Single-record access: SELECT * FROM SalesOrders WHERE Order = ‘457’ SQL Single-scan aggregation: SELECT Country, SUM(sales) FROM SalesOrders WHERE Product=‘corn’ GROUP BY Country 
  • 28. © 2013 SAP AG. All rights reserved. 29Public Combining OLTP and OLAP  Write operations are accumulated in a dedicated data structure (delta store)  Write operations are insert-only!  Integration of differential data in async. merge process.  MVCC enables processing of OLTP workloads  Insert only approach favors implementation of MVCC Main Memory at Blade i Log SnapshotsPassive Data (History) Non-Volatile Memory RecoveryLogging Time travel Data aging Query Execution Metadata TA Manager Interface Services and Session Management Distribution Layer at Blade i Main Store Differential Store Active Data Merge Column Column Combined Column Column Column Combined Column Indexes Inverted Object Data Guide
  • 29. © 2013 SAP AG. All rights reserved. 30Public Order Country Product Sales 456 France corn 1000 457 Italy wheat 900 458 Spain rice 600 459 Italy rice 800 460 Denmark corn 500 461 Denmark rice 600 462 Belgium rice 600 463 Italy rice 1100 … … … … Columnar Dictionary Compression  Dictionary per column  Uses data-driven fixed-length bit encodings  Operations directly on compressed data, using integers  More in cache, less main memory access 1 Belgium 2 Denmark 3 France 4 Italy 5 Spain 1 3 2 4 3 5 4 4 5 2 6 2 7 1 8 4 … … 1 7 2 5,6 3 1 4 2,4,8 5 3 Logical Table Dictionary 5 entries, so need 3 bits to encode! Compressed column (bit fields) Inverted indexDictionary Where was order 460? Which orders in Italy?
  • 30. © 2013 SAP AG. All rights reserved. 31Public More Columnar Compression Techniques
  • 31. © 2013 SAP AG. All rights reserved. 32Public  Concurrent users  Concurrent operations within a query  Data partitioning, on one host 
or distributed to multiple hosts  Horizontal and vertical 
parallelization of a single query
operation, using multiple
cores / threads Transparent to developer Parallelization Inter Transaction Intra Transaction Inter Query Intra Query Inter Operation Intra Operation Pipeline Parallelism Data Parallelism Pipeline Parallelism Data Parallelism Parallelism
  • 33. © 2013 SAP AG. All rights reserved. 34Public Extending your analytics capabilities ANALYTICS MATURITY LEVELOFINSIGHT Sense & Respond Predict & Act Raw Data Cleaned Data Standard Reports Ad Hoc Reports & OLAP Generic Predictive Analytics Predictive Modeling Optimization What happened? Why did it happen? What will happen? What is the best that could happen?
  • 34. © 2013 SAP AG. All rights reserved. 35Public SAP HANA Modeling Analytical View Attribute View Column Table Calculation View
  • 35. © 2013 SAP AG. All rights reserved. 36Public Implementing Predictive Analytics SQLScript  set of SQL extensions to push data-intensive logic into the database and leverage parallel execution strategies of the database PAL (Predictive Analysis Library)  Built-in C++ statistical and data mining algorithms  K-means, k-nearest neighbor, decision trees, multiple linear regression, classification, and many more R integration  Leverage R’s 3000+ external packages to perform wide-range data mining and statistical analysis.
  • 36. © 2013 SAP AG. All rights reserved. 37Public Intuitively Design Predictive Models using Predictive Analysis
  • 37. © 2013 SAP AG. All rights reserved. 38Public SAP Predictive Analysis
  • 39. © 2013 SAP AG. All rights reserved. 40Public SAP HANA XS Engine Rationale: Enable application development and deployment – minimize layers  HTTP-based UI (browser, mobile apps)  Runs directly on HANA, minimizes TCO  Leverages built-in strengths of SAP HANA for the best possible performance Scope  From lightweight environment for small web- based applications  To robust environment for complex high- speed business applications Control flow logic Calculation logic Data Clients Presentation logic HANA XS
  • 40. © 2013 SAP AG. All rights reserved. 41Public Implement UIs with SAPUI5 SAPUI5 is an extensible JavaScript-based HTML5 browser rendering library for Business Applications.  Uses the jQuery library as a foundation  Open AJAX compliant and can be used together with/uses other standard JS libs  Supports RIA like client-side features based on JavaScript  Supports an extensibility concept regarding custom controls  Allows usage of own JavaScript and HTML Internet Explorer Version 9 Version 8 Chrome Latest version Firefox Version 3.6 and latest version Safari Latest version
  • 41. © 2013 SAP AG. All rights reserved. 42Public SAPUI5 Templates
  • 42. © 2013 SAP AG. All rights reserved. 43Public Demo :: In-Game Promotion Management Bigpoint  Europe‘s largest browser game provider with 300 Mio users  Revenue through selling „virtual goods“  1-3% of users are buying virtual offers. Goals  Perform real-time massive amount of event stream analytics  Filter and monitor online players  Enabling in-game promotion offers and track results in real-time
  • 43. © 2013 SAP AG. All rights reserved. 44Public In Summary In-memory data management  Column-oriented data layout  Compression  Parallelization  Optimized for big data  Transparent to developer HANA Applications  XS Engine  Application Server  Control logic  SAPUI5  Reduced TCO Predictive Analytics  SQLScript  R integration  Predictive Analysis Library  Unlock new insights
  • 44. © 2013 SAP AG. All rights reserved. 45Public Take Your Chance! The SAP Startup Forum is coming to Berlin again!  When: June 19th  Where: SAP Office Berlin (Rosenthaler Str. 30)  For more info, visit our event website: http://www.saphana.com/community/learn/startups/forums/berlin  Or turn to us directly
  • 45. Thank you! Sönke Moosmann SAP Innovation Center soenke.moosmann@sap.com Marcus Krug SAP Innovation Center marcus.krug@sap.com

Editor's Notes

  1. Data ComplexityBig dataStructured and unstructuredNoiseHidden patternsAlgorithmic ComplexityMore complex information needs: Predictive, simulationsComplex workflows: provisioning data, cleaning, denoising, pattern miningPresentation ComplexityHow to present complex results in an intellible way
  2. Critical slide!!!Developing a database to solve these two critical challenges requires a careful design and development from the ground up of every aspect of the database. Relabeling an existing DB “in-memory” doesn’t do it. Carful optimizing for optimal cache utilization and for hundreds of parallel threads is what makes the difference, and allows HNA to reach the speeds I just discussed. I can’t over-emphasize hwo important solving these two challenges is to the performance of SAP HANA.
  3. By accessing data in column-store order, you benefit immensely from simplified table-scan and data pre-caching. This can make all the difference in performance.
  4. Intuitively design complex predictive modelsRead and write from data stored in SAP HANA, Universes, IQ, and other sourcesDrag-and-drop visual interface for data selection, preparation, and processing
  5. Visualize, discover, and share hidden insightsAdvanced visualization designed where you’d expect it – natively from within the modelling toolShare insights via PMML and with other BI client tools
  6. Predictive Analytics is a Goldmine for Startups (Forbes, March 2013)http://www.forbes.com/sites/martinzwilling/2013/03/11/predictive-analytics-is-a-goldmine-for-startups/
  7. Predictive Analytics is a Goldmine for Startups (Forbes, March 2013)http://www.forbes.com/sites/martinzwilling/2013/03/11/predictive-analytics-is-a-goldmine-for-startups/