SQL Server Point of View. Overview on Key Enhancements and Updates

Size: px
Start display at page:

Download "SQL Server 2014. Point of View. Overview on Key Enhancements and Updates"

Transcription

1 Point of View Overview on Key Enhancements and Updates Executive Overview Data and analytics strategies and solutions must be flexible and scalable to meet future needs. They must give users real-time access to data and provide a variety of visualization and graphing choices for examining data. They must securely integrate varied disparate data sources. They must work on public cloud, private cloud, traditional systems and third-party ecosystems in a world of hybrid technology at high performance. And, they must be capable of running on mobile devices of all shapes and sizes so that people can work when and where they need and want, with any type of data - big or small. Avanade Data and Analytics services and solutions help businesses access and analyze their vast stores of data for immediate insights into the dynamics of their business. We combine the power of SQL Server 2014 with our global experience and expertise with the latest Microsoft technologies. We build solutions that help executives and managers make confident, timely business decisions to guide their organizations to success today and into the future. makes it easier and more cost effective to build high-performance, mission-critical applications, enterpriseready data assets, and data and analytics solutions that help employees make better decisions, faster. These solutions have the flexibility to be deployed on premises, in the cloud or in a hybrid environment, and can be managed through a common and familiar tool set. April 1, 2014 brought the twelfth release of Microsoft SQL Server. brings enhancements to the database engine and management tools. Updates to the database engine significantly improve query performance for a wide range of SQL workloads including OLTP applications and data warehousing. New releases in data management provide features to integrate the use of Azure services as a first-class part of an organizations SQL ecosystem. While the updates to the database engine were significant, the rest of the SQL Server suite remained unchanged from SQL The release of was accompanied by the release of the Microsoft Analytics Platform System (APS), which couples the massively parallel processing (MPP) version of SQL Server PDW with HDInsight, Microsoft s 100 percent Apache Hadoop distribution. APS is a turnkey appliance that provides Microsoft s PolyBase technology, which enables the ability to query and integrate data using T-SQL syntax across the PDW and HDInsight instances with the appliance, plus Azure HDInsight, Hortonworks HDP and Cloudera. APS is the only current SQL SKU that provides the PolyBase capability. The focus of this document will be on SQL Server 2014, APS will be covered in the Avanade Data & Analytics Big Data Point of View 2014 document. This document is not intended to cover all of the features of the SQL Server suite and is focused on the significant updates in this release Avanade Inc. All rights reserved.

2 Introduction enables customers to build mission-critical applications and data analysis solutions using highperformance, in-memory technology across OLTP, data warehousing, business intelligence and analytics workloads without having to buy expensive add-ons or high-end appliances. uses a common set of tools to deploy and manage databases both on premises and in the cloud, which makes it easier for businesses to take advantage of the cloud with existing skillsets. The updates to SQL Server are categorized and will be reviewed as follows: Performance Enhancements High-volume transaction processing (OLTP) Data warehousing Management Enhancements High availability Backup and restore Security Other Minor Updates Analysis services Business intelligence Definitions Azure is Microsoft s cloud services platform previously known as Windows Azure. It was renamed to Microsoft Azure on April 3, Azure provides data services, application services and networking services through a highly redundant series of data centers across the global that delivers a percent monthly SLA. OLTP Online Transaction Processing OLAP Online Analytical Processing In-memory A DMS that primarily relies on main memory for computer data storage, which are faster than disk-optimized databases since internal optimization algorithms execute fewer CPU instructions. Hekaton The code name for the in-memory OLTP feature within the SQL Server database engine for OLTP workloads. xvelocity The code name for the ColumnStore feature within the SQL Server database engine for data warehousing workloads. ACID A transaction processing term that stands for Atomicity, Consistency, Isolation and Durability. Microsoft Mainstream Support Defined as five years from the release date or for two years after the successor product (N+1) is released, whichever is longer. Microsoft Extended Support Defined as 5 years following Mainstream support or for 2 years after the second successor product (N+2) is released, whichever is longer. Microsoft Online Support Defined as at least 10 years from product release. Updates Performance Enhancement High-Volume Transaction Processing (OLTP) Database performance has become an important subject for any database administrator, database analysts and IT directors. That is why Microsoft has focused on the performance factor within to achieve 10x-30x improvement without touching your code whatsoever. They did that through in-memory OLTP with no page buffer. In-Memory OLTP (also known as Memory-Optimized Tables, In-Memory Tables or by its code-name Hekaton) substantially improves transactional performance that is fully transactional, durable and does not require any special T-SQL syntax Avanade Inc. All rights reserved. 2

3 For businesses, this means you can create a memory-optimized table and add it to a memory optimized file group, which is translated to.dll entry points. Moreover In-memory OLTP achieves significant performance and scalability gains by using: Algorithms that are optimized for accessing memory-resident data. Optimistic concurrency control that eliminates logical locks. Lock-free objects that eliminate all physical locks and latches. Threads that perform transactional work don t use locks or latches for concurrency control. Natively compiled stored procedures, which have significantly better performance than interpreted stored procedures when accessing a memoryoptimized table. The use of In-Memory Tables is not viable for all usage scenarios and the implementation of memoryoptimized tables should be preserved for implementations in scenarios that require: High data insertion to appendonly tables where contention is typically high. High read performance against tables that receive periodic batch inserts and updates. High business logic processing within the database with intensive usage of inserts, updates and deletes. represents the first release of In-Memory OLTP and does come with some limitations including a reduced set field types, row sizes, and foreign key and check constraints. Proper review of the limitations is highly recommended before starting an In- Memory OLTP implementation. Performance enhancements in SQL Server 2014 include In-Memory and highvolume transaction processing (OLTP), which both give businesses with large or many databases and a high volume of transactions the ability to provide realtime information in a timely manner. For example, these improvements allow companies with multiple warehouses to have the ability to look up inventory quickly and in real time with potential improvement on customer service and satisfaction. Data Warehousing The traditional data warehouse is under pressure from the growing weight of explosive volumes of data, the expansive variety of data types and the real-time processing velocity of how data is being used to grow and operate the business. Businesses need a logical architecture that can smoothly scale to meet these volume demands with real-time processing power and the ability to manage any data type to rapidly connect the business to valuable insights. Key benefits of Microsoft data warehousing capabilities include: Incorporate a wider variety of data sources that include mobile, social, scanners, photos, videos, sensors, devices, RFID, web logs, advanced analytics, click streams, machine learning and third-party data sources. Query both traditional relational data and these new data types with common T-SQL commands using PolyBase. Scale from tens of terabytes up to multi-petabytes by incrementally adding nodes to your existing infrastructure. Enable users to get results from their queries in near real-time. Queries that took hours can be reduced to minutes and seconds through inmemory and streaming technologies. Provide a trusted infrastructure that gives users confidence in the credibility and consistency of the data. Microsoft claims up to a 100x performance gain in query performance when using In-Memory ColumnStore found in Enterprise Edition. ColumnStore, also known by its code-name xvelocity, was introduced with SQL Server 2012 and is designed for use with data warehouse or data mart workloads. In-Memory ColumnStore stores and manages data by using column-based data storage and column-based query processing. A ColumnStore index works well for mostly read-only queries that perform analysis on large data sets. ColumnStore indexes provide high performance gains for queries that use full table scans. ColumnStore indexes should not be used for queries that perform searches for single values Avanade Inc. All rights reserved. 3

4 Improvements in In-Memory ColumnStores in include allowing updates to tables that use a ColumnStore index, providing near realtime analysis and greater compatibility with standard SQL commands and table structures. Improvements in data compress provide up to 7x data compression over the uncompressed data size. Tables that use a clustered ColumnStore index can have no other indexes. Additionally, its columns can have no foreign key constraints. These limitations must be considered during the design of data models that will leverage a clustered ColumnStore index. In contrast, a non-clustered ColumnStore index can coexist with other indexes and do not have the same foreign key constraints. Advancements in data warehouse capabilities allow organizations to store the ever-growing amount of data as a result of big data and business intelligence trends. Features include PolyBase and ColumnStore indexes which give businesses the ability to combine data from any source or data type, at any velocity into actionable real-time insight. For example, PolyBase enables businesses to take advantage of nonrelational Hadoop data, like social media insights, that are stored in the Hadoop Distributed File System (HDFS), bypassing Hadoop s MapReduce distributed computing engine. As a result, you don t need to understand HDFS (typically written in Java) to take full advantage of non-relational data types. This means that businesses can leverage data warehousing features to bring unstructured data like social insights together. They can make the data more understandable and identify how it relates to other data - both structured and unstructured, such as sales in a retail store. Management Enhancements High Availability This section introduces SQL Server high-availability solutions that improve the availability of servers or databases. A high-availability solution masks the effects of a hardware or software failure and maintains the availability of applications so that the perceived downtime for businesses and users is minimized. Microsoft s customers tout the fact that they re able to achieve the percent availability using AlwaysOn Availability Groups. AlwaysOn Availability Groups (AG) was a feature introduced in SQL Server 2012 to provide higher availability at a lower cost with an easier setup, as well as administration over traditional SQL Clustering and Replication (e.g. transactional, merge). AlwaysOn AG replicates databases to redundant servers and avoids the need for expensive shared data storage and identical hardware that was previously required for SQL Clustering. Improvements in AlwaysOn AG features include support for In-Memory Tables and In-Memory ColumnStore indexes, plus Microsoft Azure Virtual Machines may be used as a replica target. The number of replicas has been increased from four to eight, allowing for more options for creating disaster recovery fail-over replicas and geo-located read-only replicas. Replicas may be implemented in Synchronous mode, used for high availability where the replica is used as a fail-over target, and Asynchronous mode, used for disaster recovery and read-only replicas. Synchronous mode changes to the primary database are not marked as being complete until the secondary replica update is complete. This provides full ACID transaction compliance, but comes with performance degradation and care should be exercised to limit network latency between servers. Asynchronous replication mode removes the performance penalty as changes to the primary database are updated to replicas as soon as possible. But, this comes at the cost that a replica may be out of sync with the primary for some period of time or, possibly, if the primary has a failure. Improvements in high-availability give an organization s servers or databases a comprehensive suite of database protection tools. For example, database mirroring is a solution to increase database availability by supporting almost instantaneous failover. This feature has broad benefits to businesses as it protects data in the event of a disaster. For example, a retail business will benefit from highavailability in its point-of-sale registers, keeping them always up and running with no downtime. This way, the business can always complete a customer s transaction with no interruptions Avanade Inc. All rights reserved. 4

5 Resource Governor Enhancements Resource Governor enables you to manage SQL Server workloads and resources by specifying limits on resource consumption by incoming requests. Resource Governor enables you to specify limits on the amount of CPU, physical IO and memory that incoming application requests can use. Resource limits can be reconfigured in real time with minimal impact on workloads that are executing. I/O has been added to Resource Governor, which lets I/O be pooled and tiered following an organization s criteria. This ensures greater scale and performance predictability for SQL Server workloads, especially when running applications in private clouds and environments managed by hosters. Resource Governor enhancements allow organizations with multiple lineof-business applications like CRM, customer portal or order transaction processing to maintain service levels. For example, hosting service providers can leverage Resource Governor as a way to maintain and manage compute usage. This allows them to maintain customer service levels so that the customer never experiences a level of performance lower than agreed upon. Backup and Restore The SQL Server backup and restore component provides an essential safeguard for protecting critical data stored in your SQL Server databases. To minimize the risk of catastrophic data loss, you need to back up your databases to preserve modifications to your data on a regular basis. A well-planned backup and restore strategy helps protect databases against data loss caused by a variety of failures. provides enhanced capabilities to leverage cloud-based storage options for backup and restore, as well as certificate or asymmetric key-based encryptions during backup operations. Cloud-based storage is currently limited to customers with a Microsoft Azure subscription. Introduced in SQL Server 2012 SP1 CU2, the Backup to URL capability in provides SQL Server Management Studio convenience for the setup of an Azure storage Blob for backup and restore. Additionally, SQL Server Managed Backup to Azure is a service that SQL Server provides to manage and schedule database and log backups. It can be configured for instances running on-premises and within Azure Virtual Machines. This means that if an organization experiences an event where there is catastrophic data loss, a well-planned backup and restore strategy has already been established. This enables the organization to be back up and running fast, right where they left off, with data integrity and responsiveness to service level events. Security introduces new permissions to facilitate server-level administration and auditing, including the ability to grant rights to all current and future databases on an instance. Additionally, the server-level permission to provide or restrict access to secured data as a server instance has been added with this release. This means that organizations can be assured they are using enterprise level security for their data assets. With advancements in security, organizations can know what data has been compromised, when it was compromised, and what information was taken. Analyst Perspective Analysts have communicated that Microsoft offers a competitive and expanding set of data and analytics capabilities, as well as packaging and pricing, that appeal to Microsoft developers, independent distributors and now to business users. It does so through a combination of enhanced BI and data discovery capabilities in Office (Excel) 2013 that integrate with data management capabilities in and collaboration, content and user and usage management capabilities in SharePoint with. Microsoft SQL Server continues to be ranked in the Leaders quadrant of the latest Gartner Magic Quadrant reports for Operational Database Management Systems (DBMS), Data Warehouse Database Management Systems and Business Intelligence and Analytics Platforms Avanade Inc. All rights reserved. 5

6 Gartner notes in the Data Warehouse DBMS report that, Customers report a low count of software issues, aboveaverage customer experience and obvious interoperability with Excel (and Office). They also like the easyto-understand licensing and pricing. 2 Gartner gives Microsoft praise for its implementation of In-Memory technologies noted above. In the Operational DBMS report, the analysts state, Microsoft now has in-memory technology for transactions (code named Hekaton) with, ahead of both IBM DB2 and Oracle. 3 Gartner continued its praise of Microsoft in the Business Intelligence and Analytics platform report stating, Of the mega-vendors, Microsoft has made the most progress toward delivering a combination of business user capabilities with an enterprise-capable platform. 4 Forrester Research places Microsoft SQL Server as a Leader in the Forrester Wave : Agile Business Intelligence Platforms, Q In the report, Microsoft SQL Server received high scores from clients for product vision, as well as for client feedback collected as part of a customer survey. Forrester notes that, Microsoft received high client feedback scores for its agile, business user selfservice and [advanced data visualization] ADV functionality. Clients also gave Microsoft BI a high score for its product vision. 5 Forrester Research, has also positioned Microsoft as a Leader in The Forrester Wave : Enterprise Business Intelligence Platforms, Q Forrester analyst Boris Evelson notes in the report that [what] differentiates the Leaders [is] the completeness, comprehensiveness and integration of the entire BI architectural stack. In addition to increasingly popular features like analytics, data visualization, dashboards and data exploration, the Leaders also provide the pixel-perfect, industrial-strength report writers that companies still need. 6 IDC s research study, underwritten by Microsoft, Capturing the $1.6 Trillion Data Dividend, surveyed 2,020 large and mid-sized organizations in 20 countries across a range of public and public sector industries. IDC research showed a correlation between better outcomes from big data and business analytics projects and greater competitiveness of an organization in its industry or a better ability to fulfill its mission in the public sector. Although correlation does not equate to causation, a growing body of case-based research shows financial and productivity benefits directly linked to better data-driven decision making enabled by big data and business analytics solutions. Secondly, IDC research showed that the improved project outcomes accrue to the more innovative organizations that have embraced a data-driven culture, which has resulted in the introduction of: New Data Types and Sources: The number of data types and/or sources being analyzed is rapidly growing as part of the big data trend. Examples include supplementing transactional data with customer behavior and/or demographic data, data from machines or sensors, geolocation applications, mobile devices, social media or document management systems. New Analytics: This constitutes expanding the number and/or type of analytic techniques or methods used, such as using more predictive analytics or using techniques such as MapReduce to supplement SQL. New Metrics: This entails identifying and developing new key performance indicators, such as introducing new ways of measuring enterprise risk or employee performance, introducing a new performance management methodology or introducing new ways of looking at operations. New Users with Access to Big Data and Analytics Solutions: This consists of expanding the number and type of users (internal or external) who have access to the organization s data and analytics solutions and/or outputs generated from them. 7 Market Players, Vendor Comparisons, Competitive Overview Microsoft SQL Server continues to be a strong player compared to Oracle, IBM and SAP. Microsoft continues to grow the SQL Server business. On the Microsoft FY14 Q4 Earnings Review call, Satya Nadella was quoted, We also had another breakout year for SQL Server. With, we released industry leading in-memory technology across all database workloads of online transaction processing, data warehousing and business intelligence. and we grew our SQL business by more than 19 percent. 8 Microsoft continues to garner market share from Oracle and IBM, but we re seeing offerings like MySQL entering the market that was primarily dominated by SQL Server in the past Avanade Inc. All rights reserved. 6

7 Customer/Project Summary Examples There are many benefits for adopting and upgrading an infrastructure to Microsoft. There are many included advancements or improvements in performance, security and management. But some of the most important reasons why an organization would invest in are to increase scalability and availability. As big data becomes an increasing concern and motive, allows organizations to utilize nonrelational Hadoop data, bring structure and unstructured data together for analysis and real time insights. Organizations also want to take advantage of cloud economics. allows organizations the ability to connect and establish a genuine hybrid cloud as well as lower operating cost. also paves the way for organizations to adopt data visualization and modeling tools like PowerView for increased insights into their business. Avanade Approach/Value Mainstream support for SQL Server 2008 ended on July 8, 2014, and extended support for SQL Server 2005 ends on April 12, Customers with business critical applications using SQL Server 2008 and SQL Server 2005 that rely on Microsoft product support should consider migrating to. The time to migrate and test business applications can be a considerable amount of time depending on the portfolio of applications. Beyond the support issues outlined in the previous paragraph, there are four main scenarios where customers should consider moving to : Improve Transactional Performance Customers with line of business transactional applications may want to look at Memory Optimized Tables as a way to improve transactional performance which is only possible with the in-memory capabilities in. Business applications whose performance is affected by engine-level concurrency, such as latch contention or blocking, will see significant improvements when their application moves to In-Memory OLTP. Businesses can leverage improved transactional performance among LOB applications like CRM or logistics tracking, giving users high performance computing to increase efficiency. High Performance Data Analysis - Customers with business intelligence systems that make heavy use of table scans would certainly benefit from the ColumnStore index technology. ColumnStore indexes give high performance gains for queries that use full table scans and benefits include high compression rates which improve query performance by using a smaller in-memory footprint. In turn, query performance can improve because SQL Server can perform more query and data operations in-memory with the in-memory advancements founds in. This can be an essential advancement to bring high performance to real-time insights for sales analytics and adopting mobile visualization tools. Enterprises investing in big data or business intelligence will find that SQL Server 2014 has the performance they need to understand their data or external data whether it is real-time sales data, understanding their possessive social media interactions or analyzing stock market events Avanade Inc. All rights reserved. 7

8 Enhanced Disaster Recovery - Customers will find the AlwaysOn Availability Groups feature essential as a comprehensive disaster-recovery solution that provides an enterpriselevel alternative to database mirroring. Advancements in disaster recovery allow enterprises and organizations to minimize risk and automate data management. supports two different availability alternative modes: a. Asynchronous-commit mode. This availability mode is a disaster-recovery solution that works well when the availability replicas are distributed over considerable distances. b. Synchronous-commit mode. This availability mode emphasizes high availability and data protection over performance, at the cost of increased transaction latency. A given availability group can support up to three synchronous-commit availability replicas, including the current primary replica. Mobile and Data Visualization Tools - PowerView and PowerPivot make it easier to manipulate larger datasets with the familiarity and convenience of Excel. Data has the power to enrich and improve productivity for nearly every employee at an organization. Unfortunately data analysis is seen as intimidating and often reserved for those with strong statistical or mathematical backgrounds. Microsoft SQL Server 2014 combines the ease of use found in Office 365 to enable every employee the ability to analyze datasets and produce impressive graphics. For example, PowerView and PowerPivot allow an organization to model sales data as a great way to present data to decision makers and track KPIs. Conclusion Today s enterprises must leverage every asset, resource and opportunity to achieve its business objectives and remain flexible in a constantly changing business climate. Avanade Data and Analytics services and solutions help you retain and understand all of your data for immediate insights into how you can accelerate the growth of your business with the power of SQL Server Using our global experience and expertise with the latest Microsoft technologies, we build solutions that help your executives and managers stay ahead of the competition - by giving them the ability to make confident, timely business decisions to minimize risk and capitalize on real time opportunities. References 1 library/bb aspx Gartner: Magic Quadrant for Data Warehouse Database Management Systems - Mark Beyer, Roxane Edjlali, Mar 2104 Gartner: Magic Quadrant for Operational Database Management Systems - Donald Feinberg, Merv Adrian, Nick Heudecker, Oct 2014 Gartner: Magic Quadrant for Business Intelligence and Analytics Platforms - Rita L. Sallam, Joao Tapadinhas et al., Feb Forrester: Forrester Wave : Agile Business Intelligence Platforms: Q Boris Evelson, Jul Forrester: Forrester Wave : Enterprise Business Intelligence Platforms, Q Boris Evelson, Dec 2013 IDC Whitepaper: Capturing the $1.6 Trillion Data Dividend (Sponsored by Microsoft, Dan Vesset, Henry Morris etc al., May Relations: Earnings Release FY14 Q4, Earnings Call Transcript - Jul 2014 iii Microsoft Developer Network iv Datasheet v Microsoft Developer Network vi Microsoft quick-notes poster Team Leader BMW About Avanade Avanade helps customers realize results in a digital world through business technology solutions, cloud and managed services that combine insight, innovation and expertise focused on Microsoft technologies. Our people have helped thousands of organizations in all industries improve business agility, employee productivity and customer loyalty. Avanade combines the collective business, technical and industry expertise of its worldwide network of experts with the rigor of an industrialized delivery model to provide high quality solutions using proven and emerging technologies with flexible deployment models on premises, cloud-based or outsourced. Avanade, which is majority owned by Accenture, was founded in 2000 by Accenture LLP and Microsoft Corporation and has 22,000 professionals in more than 20 countries. Additional information can be found at Avanade Inc. All rights reserved. The Avanade name and logo are registered trademarks in the US and other countries. Other brand and product names are trademarks of their of their respective owners.

Parallel Data Warehouse

Parallel Data Warehouse MICROSOFT S ANALYTICS SOLUTIONS WITH PARALLEL DATA WAREHOUSE Parallel Data Warehouse Stefan Cronjaeger Microsoft May 2013 AGENDA PDW overview Columnstore and Big Data Business Intellignece Project Ability

More information

Microsoft Analytics Platform System. Solution Brief

Microsoft Analytics Platform System. Solution Brief Microsoft Analytics Platform System Solution Brief Contents 4 Introduction 4 Microsoft Analytics Platform System 5 Enterprise-ready Big Data 7 Next-generation performance at scale 10 Engineered for optimal

More information

SQL Server 2012 Parallel Data Warehouse. Solution Brief

SQL Server 2012 Parallel Data Warehouse. Solution Brief SQL Server 2012 Parallel Data Warehouse Solution Brief Published February 22, 2013 Contents Introduction... 1 Microsoft Platform: Windows Server and SQL Server... 2 SQL Server 2012 Parallel Data Warehouse...

More information

SQL Server 2014. What s New? Christopher Speer. Technology Solution Specialist (SQL Server, BizTalk Server, Power BI, Azure) v-cspeer@microsoft.

SQL Server 2014. What s New? Christopher Speer. Technology Solution Specialist (SQL Server, BizTalk Server, Power BI, Azure) v-cspeer@microsoft. SQL Server 2014 What s New? Christopher Speer Technology Solution Specialist (SQL Server, BizTalk Server, Power BI, Azure) v-cspeer@microsoft.com The evolution of the Microsoft data platform What s New

More information

Microsoft SQL Server 2008 R2 Enterprise Edition and Microsoft SharePoint Server 2010

Microsoft SQL Server 2008 R2 Enterprise Edition and Microsoft SharePoint Server 2010 Microsoft SQL Server 2008 R2 Enterprise Edition and Microsoft SharePoint Server 2010 Better Together Writer: Bill Baer, Technical Product Manager, SharePoint Product Group Technical Reviewers: Steve Peschka,

More information

SQL Server 2014 New Features/In- Memory Store. Juergen Thomas Microsoft Corporation

SQL Server 2014 New Features/In- Memory Store. Juergen Thomas Microsoft Corporation SQL Server 2014 New Features/In- Memory Store Juergen Thomas Microsoft Corporation AGENDA 1. SQL Server 2014 what and when 2. SQL Server 2014 In-Memory 3. SQL Server 2014 in IaaS scenarios 2 SQL Server

More information

Please give me your feedback

Please give me your feedback Please give me your feedback Session BB4089 Speaker Claude Lorenson, Ph. D and Wendy Harms Use the mobile app to complete a session survey 1. Access My schedule 2. Click on this session 3. Go to Rate &

More information

Big Data Processing: Past, Present and Future

Big Data Processing: Past, Present and Future Big Data Processing: Past, Present and Future Orion Gebremedhin National Solutions Director BI & Big Data, Neudesic LLC. VTSP Microsoft Corp. Orion.Gebremedhin@Neudesic.COM B-orgebr@Microsoft.com @OrionGM

More information

Business Intelligence Discover a wider perspective for your business

Business Intelligence Discover a wider perspective for your business Business Intelligence Discover a wider perspective for your business The tasks facing Business Intelligence The growth of information in recent years has reached an unprecedented level. Companies are intensely

More information

SQL Server 2012 Performance White Paper

SQL Server 2012 Performance White Paper Published: April 2012 Applies to: SQL Server 2012 Copyright The information contained in this document represents the current view of Microsoft Corporation on the issues discussed as of the date of publication.

More information

TAMING THE BIG CHALLENGE OF BIG DATA MICROSOFT HADOOP

TAMING THE BIG CHALLENGE OF BIG DATA MICROSOFT HADOOP Pythian White Paper TAMING THE BIG CHALLENGE OF BIG DATA MICROSOFT HADOOP ABSTRACT As companies increasingly rely on big data to steer decisions, they also find themselves looking for ways to simplify

More information

Modernizing Your Data Warehouse for Hadoop

Modernizing Your Data Warehouse for Hadoop Modernizing Your Data Warehouse for Hadoop Big data. Small data. All data. Audie Wright, DW & Big Data Specialist Audie.Wright@Microsoft.com O 425-538-0044, C 303-324-2860 Unlock Insights on Any Data Taking

More information

Microsoft Big Data. Solution Brief

Microsoft Big Data. Solution Brief Microsoft Big Data Solution Brief Contents Introduction... 2 The Microsoft Big Data Solution... 3 Key Benefits... 3 Immersive Insight, Wherever You Are... 3 Connecting with the World s Data... 3 Any Data,

More information

Data platform evolution

Data platform evolution 2 Data platform evolution Top Reasons Reasons to to upgrade 1) End of extended support 2) Enhanced SQL Server 2014 features and performance 3) Impact on security and compliance 4) Cloud strategy Top Blockers

More information

Cass Walker TLG Learning

Cass Walker TLG Learning Cass Walker TLG Learning Query Window Zoom Query Window Outlining T-SQL Language Enhancements Integration Services Catalogs Default Location for Backup Files MS Help Viewer FileTable AlwaysOn PowerPivot

More information

SQL Server 2016. Everything built-in. Csom Gergely Microsoft Adat platform szakértő

SQL Server 2016. Everything built-in. Csom Gergely Microsoft Adat platform szakértő SQL Server 2016 Everything built-in Csom Gergely Microsoft Adat platform szakértő SQL Server 2016: Everything built-in built-in built-in built-in built-in built-in $2,230 80 70 60 50 43 69 49 SQL Server

More information

Upgrading Your SQL Server Skills to Microsoft SQL Server 2014 va

Upgrading Your SQL Server Skills to Microsoft SQL Server 2014 va Upgrading Your SQL Server Skills to Microsoft SQL Server 2014 va Day(s): 5 Course Code: M10977 Version: A Overview This five-day instructor-led course teaches students how to use the enhancements and new

More information

Updating Your SQL Server Skills to Microsoft SQL Server 2014

Updating Your SQL Server Skills to Microsoft SQL Server 2014 Course 10977B: Updating Your SQL Server Skills to Microsoft SQL Server 2014 Page 1 of 8 Updating Your SQL Server Skills to Microsoft SQL Server 2014 Course 10977B: 4 days; Instructor-Led Introduction This

More information

Whitepaper: Solution Overview - Breakthrough Insight. Published: March 7, 2012. Applies to: Microsoft SQL Server 2012. Summary:

Whitepaper: Solution Overview - Breakthrough Insight. Published: March 7, 2012. Applies to: Microsoft SQL Server 2012. Summary: Whitepaper: Solution Overview - Breakthrough Insight Published: March 7, 2012 Applies to: Microsoft SQL Server 2012 Summary: Today s Business Intelligence (BI) platform must adapt to a whole new scope,

More information

SQL Server 2016 New Features!

SQL Server 2016 New Features! SQL Server 2016 New Features! Improvements on Always On Availability Groups: Standard Edition will come with AGs support with one db per group synchronous or asynchronous, not readable (HA/DR only). Improved

More information

Modern Data Warehousing

Modern Data Warehousing Modern Data Warehousing Cem Kubilay Microsoft CEE, Turkey & Israel Time is FY15 Gartner Survey April 2014 Piloting on premise 15% 10% 4% 14% 57% 2014 5% think Hadoop will replace existing DW solution (2013:

More information

Updating Your SQL Server Skills from Microsoft SQL Server 2008 to Microsoft SQL Server 2014

Updating Your SQL Server Skills from Microsoft SQL Server 2008 to Microsoft SQL Server 2014 Course Code: M10977 Vendor: Microsoft Course Overview Duration: 5 RRP: 2,025 Updating Your SQL Server Skills from Microsoft SQL Server 2008 to Microsoft SQL Server 2014 Overview This five-day instructor-led

More information

How to make BIG DATA work for you. Faster results with Microsoft SQL Server PDW

How to make BIG DATA work for you. Faster results with Microsoft SQL Server PDW How to make BIG DATA work for you. Faster results with Microsoft SQL Server PDW Roger Breu PDW Solution Specialist Microsoft Western Europe Marcus Gullberg PDW Partner Account Manager Microsoft Sweden

More information

Updating Your SQL Server Skills to Microsoft SQL Server 2014

Updating Your SQL Server Skills to Microsoft SQL Server 2014 Course 10977A: Updating Your SQL Server Skills to Microsoft SQL Server 2014 Course Details Course Outline Module 1: Introduction to SQL Server 2014 This module introduces key features of SQL Server 2014.

More information

Expert Reference Series of White Papers. Unlock the Power of Microsoft SQL Server 2012

Expert Reference Series of White Papers. Unlock the Power of Microsoft SQL Server 2012 Expert Reference Series of White Papers Unlock the Power of Microsoft SQL Server 2012 1-800-COURSES www.globalknowledge.com Unlock the Power of Microsoft SQL Server 2012 Brian D. Egler MCITP/MCSE/MCT 2012,

More information

A Next-Generation Analytics Ecosystem for Big Data. Colin White, BI Research September 2012 Sponsored by ParAccel

A Next-Generation Analytics Ecosystem for Big Data. Colin White, BI Research September 2012 Sponsored by ParAccel A Next-Generation Analytics Ecosystem for Big Data Colin White, BI Research September 2012 Sponsored by ParAccel BIG DATA IS BIG NEWS The value of big data lies in the business analytics that can be generated

More information

Course 10977A: Updating Your SQL Server Skills to Microsoft SQL Server 2014

Course 10977A: Updating Your SQL Server Skills to Microsoft SQL Server 2014 www.etidaho.com (208) 327-0768 Course 10977A: Updating Your SQL Server Skills to Microsoft SQL Server 2014 5 Days About this Course This five day instructor led course teaches students how to use the enhancements

More information

Upgrading to Microsoft SQL Server 2008 R2 from Microsoft SQL Server 2008, SQL Server 2005, and SQL Server 2000

Upgrading to Microsoft SQL Server 2008 R2 from Microsoft SQL Server 2008, SQL Server 2005, and SQL Server 2000 Upgrading to Microsoft SQL Server 2008 R2 from Microsoft SQL Server 2008, SQL Server 2005, and SQL Server 2000 Your Data, Any Place, Any Time Executive Summary: More than ever, organizations rely on data

More information

Hadoop in the Hybrid Cloud

Hadoop in the Hybrid Cloud Presented by Hortonworks and Microsoft Introduction An increasing number of enterprises are either currently using or are planning to use cloud deployment models to expand their IT infrastructure. Big

More information

10977B: Updating Your SQL Server Skills to Microsoft SQL Server 2014

10977B: Updating Your SQL Server Skills to Microsoft SQL Server 2014 10977B: Updating Your SQL Server Skills to Microsoft SQL Server 2014 Course Details Course Code: Duration: Notes: 10977B 5 days This course syllabus should be used to determine whether the course is appropriate

More information

Online Transaction Processing in SQL Server 2008

Online Transaction Processing in SQL Server 2008 Online Transaction Processing in SQL Server 2008 White Paper Published: August 2007 Updated: July 2008 Summary: Microsoft SQL Server 2008 provides a database platform that is optimized for today s applications,

More information

Course 10977: Updating Your SQL Server Skills to Microsoft SQL Server 2014

Course 10977: Updating Your SQL Server Skills to Microsoft SQL Server 2014 Course 10977: Updating Your SQL Server Skills to Microsoft SQL Server 2014 Type:Course Audience(s):IT Professionals Technology:Microsoft SQL Server Level:300 This Revision:B Delivery method: Instructor-led

More information

BIG DATA TRENDS AND TECHNOLOGIES

BIG DATA TRENDS AND TECHNOLOGIES BIG DATA TRENDS AND TECHNOLOGIES THE WORLD OF DATA IS CHANGING Cloud WHAT IS BIG DATA? Big data are datasets that grow so large that they become awkward to work with using onhand database management tools.

More information

Affordable, Scalable, Reliable OLTP in a Cloud and Big Data World: IBM DB2 purescale

Affordable, Scalable, Reliable OLTP in a Cloud and Big Data World: IBM DB2 purescale WHITE PAPER Affordable, Scalable, Reliable OLTP in a Cloud and Big Data World: IBM DB2 purescale Sponsored by: IBM Carl W. Olofson December 2014 IN THIS WHITE PAPER This white paper discusses the concept

More information

Oracle Database - Engineered for Innovation. Sedat Zencirci Teknoloji Satış Danışmanlığı Direktörü Türkiye ve Orta Asya

Oracle Database - Engineered for Innovation. Sedat Zencirci Teknoloji Satış Danışmanlığı Direktörü Türkiye ve Orta Asya Oracle Database - Engineered for Innovation Sedat Zencirci Teknoloji Satış Danışmanlığı Direktörü Türkiye ve Orta Asya Oracle Database 11g Release 2 Shipping since September 2009 11.2.0.3 Patch Set now

More information

SQL Server 2012 and PostgreSQL 9

SQL Server 2012 and PostgreSQL 9 SQL Server 2012 and PostgreSQL 9 A Detailed Comparison of Approaches and Features SQL Server White Paper Published: April 2012 Applies to: SQL Server 2012 Introduction: The question whether to implement

More information

Microsoft SQL Server 2012: What to Expect

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

More information

SAS and Oracle: Big Data and Cloud Partnering Innovation Targets the Third Platform

SAS and Oracle: Big Data and Cloud Partnering Innovation Targets the Third Platform SAS and Oracle: Big Data and Cloud Partnering Innovation Targets the Third Platform David Lawler, Oracle Senior Vice President, Product Management and Strategy Paul Kent, SAS Vice President, Big Data What

More information

MS 10977B Upgrading Your SQL Server Skills to Microsoft SQL Server 2014

MS 10977B Upgrading Your SQL Server Skills to Microsoft SQL Server 2014 MS 10977B Upgrading Your SQL Server Skills to Microsoft SQL Server 2014 Description: Days: 5 Prerequisites: This five-day instructor-led course teaches students how to use the enhancements and new features

More information

Your Data, Any Place, Any Time. Microsoft SQL Server 2008 provides a trusted, productive, and intelligent data platform that enables you to:

Your Data, Any Place, Any Time. Microsoft SQL Server 2008 provides a trusted, productive, and intelligent data platform that enables you to: Your Data, Any Place, Any Time. Microsoft SQL Server 2008 provides a trusted, productive, and intelligent data platform that enables you to: Run your most demanding mission-critical applications. Reduce

More information

Server Consolidation with SQL Server 2008

Server Consolidation with SQL Server 2008 Server Consolidation with SQL Server 2008 White Paper Published: August 2007 Updated: July 2008 Summary: Microsoft SQL Server 2008 supports multiple options for server consolidation, providing organizations

More information

Next-Generation Cloud Analytics with Amazon Redshift

Next-Generation Cloud Analytics with Amazon Redshift Next-Generation Cloud Analytics with Amazon Redshift What s inside Introduction Why Amazon Redshift is Great for Analytics Cloud Data Warehousing Strategies for Relational Databases Analyzing Fast, Transactional

More information

Oracle Database 12c Plug In. Switch On. Get SMART.

Oracle Database 12c Plug In. Switch On. Get SMART. Oracle Database 12c Plug In. Switch On. Get SMART. Duncan Harvey Head of Core Technology, Oracle EMEA March 2015 Safe Harbor Statement The following is intended to outline our general product direction.

More information

Microsoft Big Data Solutions. Anar Taghiyev P-TSP E-mail: b-anarta@microsoft.com;

Microsoft Big Data Solutions. Anar Taghiyev P-TSP E-mail: b-anarta@microsoft.com; Microsoft Big Data Solutions Anar Taghiyev P-TSP E-mail: b-anarta@microsoft.com; Why/What is Big Data and Why Microsoft? Options of storage and big data processing in Microsoft Azure. Real Impact of Big

More information

2015 Ironside Group, Inc. 2

2015 Ironside Group, Inc. 2 2015 Ironside Group, Inc. 2 Introduction to Ironside What is Cloud, Really? Why Cloud for Data Warehousing? Intro to IBM PureData for Analytics (IPDA) IBM PureData for Analytics on Cloud Intro to IBM dashdb

More information

Your Data, Any Place, Any Time.

Your Data, Any Place, Any Time. Your Data, Any Place, Any Time. Microsoft SQL Server 2008 provides a trusted, productive, and intelligent data platform that enables you to: Run your most demanding mission-critical applications. Reduce

More information

Upgrading Your SQL Server Skills to Microsoft SQL Server 2014

Upgrading Your SQL Server Skills to Microsoft SQL Server 2014 CÔNG TY CỔ PHẦN TRƯỜNG CNTT TÂN ĐỨC TAN DUC INFORMATION TECHNOLOGY SCHOOL JSC LEARN MORE WITH LESS! Course 10977 Upgrading Your SQL Server Skills to Microsoft SQL Server 2014 Length: 5 Days Audience: IT

More information

Innovative technology for big data analytics

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

More information

Bringing Big Data to People

Bringing Big Data to People Bringing Big Data to People Microsoft s modern data platform SQL Server 2014 Analytics Platform System Microsoft Azure HDInsight Data Platform Everyone should have access to the data they need. Process

More information

CitusDB Architecture for Real-Time Big Data

CitusDB Architecture for Real-Time Big Data CitusDB Architecture for Real-Time Big Data CitusDB Highlights Empowers real-time Big Data using PostgreSQL Scales out PostgreSQL to support up to hundreds of terabytes of data Fast parallel processing

More information

Microsoft Data Platform Evolution

Microsoft Data Platform Evolution Microsoft Data Platform Evolution New innovations Paweł Potasiński Product Manager Data Insights pawelpo@microsoft.com Disclaimer There is no public release of SQL Server vnext available at the moment.

More information

SQL Server 2012 and MySQL 5

SQL Server 2012 and MySQL 5 SQL Server 2012 and MySQL 5 A Detailed Comparison of Approaches and Features SQL Server White Paper Published: April 2012 Applies to: SQL Server 2012 Introduction: The question whether to implement commercial

More information

Mike Maxey. Senior Director Product Marketing Greenplum A Division of EMC. Copyright 2011 EMC Corporation. All rights reserved.

Mike Maxey. Senior Director Product Marketing Greenplum A Division of EMC. Copyright 2011 EMC Corporation. All rights reserved. Mike Maxey Senior Director Product Marketing Greenplum A Division of EMC 1 Greenplum Becomes the Foundation of EMC s Big Data Analytics (July 2010) E M C A C Q U I R E S G R E E N P L U M For three years,

More information

The Modern Online Application for the Internet Economy: 5 Key Requirements that Ensure Success

The Modern Online Application for the Internet Economy: 5 Key Requirements that Ensure Success The Modern Online Application for the Internet Economy: 5 Key Requirements that Ensure Success 1 Table of Contents Abstract... 3 Introduction... 3 Requirement #1 Smarter Customer Interactions... 4 Requirement

More information

Updating Your Skills to SQL Server 2016

Updating Your Skills to SQL Server 2016 Updating Your Skills to SQL Server 2016 Course 10986A 3 Days Instructor-led, Hands on Course Information This three-day instructor-led course provides students moving from earlier releases of SQL Server

More information

Building your Big Data Architecture on Amazon Web Services

Building your Big Data Architecture on Amazon Web Services Building your Big Data Architecture on Amazon Web Services Abhishek Sinha @abysinha sinhaar@amazon.com AWS Services Deployment & Administration Application Services Compute Storage Database Networking

More information

Building a BI Solution in the Cloud

Building a BI Solution in the Cloud Building a BI Solution in the Cloud Stacia Varga, Principal Consultant Email: stacia@datainspirations.com Twitter: @_StaciaV_ 2 SQLSaturday #467 Sponsors Stacia (Misner) Varga Over 30 years of IT experience,

More information

Big Data Technologies Compared June 2014

Big Data Technologies Compared June 2014 Big Data Technologies Compared June 2014 Agenda What is Big Data Big Data Technology Comparison Summary Other Big Data Technologies Questions 2 What is Big Data by Example The SKA Telescope is a new development

More information

Upgrading Your SQL Server Skills to Microsoft SQL Server 2014

Upgrading Your SQL Server Skills to Microsoft SQL Server 2014 Upgrading Your SQL Server Skills to Microsoft SQL Server 2014 Varighed: 5 Days Kursus Kode: M10977 Beskrivelse: This five-day instructor-led course teaches students how to use the enhancements and new

More information

Food & Beverage Industry Brief

Food & Beverage Industry Brief KudzuCreative Content Creation Food & Beverage Industry Brief KudzuCreative kudzucreative.com Content Created for, Microsoft Dynamics AX Gold Partner laurenparker@kudzucreative.com NOT YOUR FATHER S FUNCTIONALITY

More information

Database Decisions: Performance, manageability and availability considerations in choosing a database

Database Decisions: Performance, manageability and availability considerations in choosing a database Database Decisions: Performance, manageability and availability considerations in choosing a database Reviewing offerings from Oracle, IBM and Microsoft 2012 Oracle and TechTarget Table of Contents Defining

More information

G-Cloud Big Data Suite Powered by Pivotal. December 2014. G-Cloud. service definitions

G-Cloud Big Data Suite Powered by Pivotal. December 2014. G-Cloud. service definitions G-Cloud Big Data Suite Powered by Pivotal December 2014 G-Cloud service definitions TABLE OF CONTENTS Service Overview... 3 Business Need... 6 Our Approach... 7 Service Management... 7 Vendor Accreditations/Awards...

More information

Module 14: Scalability and High Availability

Module 14: Scalability and High Availability Module 14: Scalability and High Availability Overview Key high availability features available in Oracle and SQL Server Key scalability features available in Oracle and SQL Server High Availability High

More information

Data Refinery with Big Data Aspects

Data Refinery with Big Data Aspects International Journal of Information and Computation Technology. ISSN 0974-2239 Volume 3, Number 7 (2013), pp. 655-662 International Research Publications House http://www. irphouse.com /ijict.htm Data

More information

Updating Your SQL Server Skills to Microsoft SQL Server 2014 (10977) H8B96S

Updating Your SQL Server Skills to Microsoft SQL Server 2014 (10977) H8B96S HP Education Services course data sheet Updating Your SQL Server Skills to Microsoft SQL Server 2014 (10977) H8B96S Course Overview In this course, you will learn how to use SQL Server 2014 product features

More information

SELLING PROJECTS ON THE MICROSOFT BUSINESS ANALYTICS PLATFORM

SELLING PROJECTS ON THE MICROSOFT BUSINESS ANALYTICS PLATFORM David Chappell SELLING PROJECTS ON THE MICROSOFT BUSINESS ANALYTICS PLATFORM A PERSPECTIVE FOR SYSTEMS INTEGRATORS Sponsored by Microsoft Corporation Copyright 2014 Chappell & Associates Contents Business

More information

Well packaged sets of preinstalled, integrated, and optimized software on select hardware in the form of engineered systems and appliances

Well packaged sets of preinstalled, integrated, and optimized software on select hardware in the form of engineered systems and appliances INSIGHT Oracle's All- Out Assault on the Big Data Market: Offering Hadoop, R, Cubes, and Scalable IMDB in Familiar Packages Carl W. Olofson IDC OPINION Global Headquarters: 5 Speen Street Framingham, MA

More information

MS-40074: Microsoft SQL Server 2014 for Oracle DBAs

MS-40074: Microsoft SQL Server 2014 for Oracle DBAs MS-40074: Microsoft SQL Server 2014 for Oracle DBAs Description This four-day instructor-led course provides students with the knowledge and skills to capitalize on their skills and experience as an Oracle

More information

Quickly Deploy Microsoft Private Cloud and SQL Server 2012 Data Warehouse on Hitachi Converged Solutions. September 25, 2013

Quickly Deploy Microsoft Private Cloud and SQL Server 2012 Data Warehouse on Hitachi Converged Solutions. September 25, 2013 Quickly Deploy Microsoft Private Cloud and SQL Server 2012 Data Warehouse on Hitachi Converged Solutions September 25, 2013 1 WEBTECH EDUCATIONAL SERIES QUICKLY DEPLOY MICROSOFT PRIVATE CLOUD AND SQL SERVER

More information

HADOOP SOLUTION USING EMC ISILON AND CLOUDERA ENTERPRISE Efficient, Flexible In-Place Hadoop Analytics

HADOOP SOLUTION USING EMC ISILON AND CLOUDERA ENTERPRISE Efficient, Flexible In-Place Hadoop Analytics HADOOP SOLUTION USING EMC ISILON AND CLOUDERA ENTERPRISE Efficient, Flexible In-Place Hadoop Analytics ESSENTIALS EMC ISILON Use the industry's first and only scale-out NAS solution with native Hadoop

More information

INVESTOR PRESENTATION. First Quarter 2014

INVESTOR PRESENTATION. First Quarter 2014 INVESTOR PRESENTATION First Quarter 2014 Note to Investors Certain non-gaap financial information regarding operating results may be discussed during this presentation. Reconciliations of the differences

More information

AGENDA. What is BIG DATA? What is Hadoop? Why Microsoft? The Microsoft BIG DATA story. Our BIG DATA Roadmap. Hadoop PDW

AGENDA. What is BIG DATA? What is Hadoop? Why Microsoft? The Microsoft BIG DATA story. Our BIG DATA Roadmap. Hadoop PDW AGENDA What is BIG DATA? What is Hadoop? Why Microsoft? The Microsoft BIG DATA story Hadoop PDW Our BIG DATA Roadmap BIG DATA? Volume 59% growth in annual WW information 1.2M Zetabytes (10 21 bytes) this

More information

WHITE PAPER Get Your Business Intelligence in a "Box": Start Making Better Decisions Faster with the New HP Business Decision Appliance

WHITE PAPER Get Your Business Intelligence in a Box: Start Making Better Decisions Faster with the New HP Business Decision Appliance WHITE PAPER Get Your Business Intelligence in a "Box": Start Making Better Decisions Faster with the New HP Business Decision Appliance Sponsored by: HP and Microsoft Dan Vesset February 2011 Brian McDonough

More information

Mission Critical Performance & Scale with SQL Server and Windows Server

Mission Critical Performance & Scale with SQL Server and Windows Server Mission Critical Performance & Scale with SQL Server and Windows Server Technical White Paper Published: May 29, 2013 Applies to: Microsoft SQL Server 2014 and SQL Server 2012 Summary: As the volume and

More information

SQL Server 2014. In-Memory by Design. Anu Ganesan August 8, 2014

SQL Server 2014. In-Memory by Design. Anu Ganesan August 8, 2014 SQL Server 2014 In-Memory by Design Anu Ganesan August 8, 2014 Drive Real-Time Business with Real-Time Insights Faster transactions Faster queries Faster insights All built-in to SQL Server 2014. 2 Drive

More information

Managing Big Data with Hadoop & Vertica. A look at integration between the Cloudera distribution for Hadoop and the Vertica Analytic Database

Managing Big Data with Hadoop & Vertica. A look at integration between the Cloudera distribution for Hadoop and the Vertica Analytic Database Managing Big Data with Hadoop & Vertica A look at integration between the Cloudera distribution for Hadoop and the Vertica Analytic Database Copyright Vertica Systems, Inc. October 2009 Cloudera and Vertica

More information

Understanding Microsoft s BI Tools

Understanding Microsoft s BI Tools Understanding Microsoft s BI Tools The purpose of this document is to provide a high level understanding of what tools Microsoft has to support the concepts of data warehousing, business intelligence,

More information

SQL 2012: Bringing Big Data to the Desktop

SQL 2012: Bringing Big Data to the Desktop Big data is getting bigger all the time. According to Gartner, the volume of data worldwide is increasing by at least 59% every year and 85% is unstructured data from a growing variety of new sources.

More information

Aligning Your Strategic Initiatives with a Realistic Big Data Analytics Roadmap

Aligning Your Strategic Initiatives with a Realistic Big Data Analytics Roadmap Aligning Your Strategic Initiatives with a Realistic Big Data Analytics Roadmap 3 key strategic advantages, and a realistic roadmap for what you really need, and when 2012, Cognizant Topics to be discussed

More information

Tagetik Extends Customer Value with SQL Server 2012

Tagetik Extends Customer Value with SQL Server 2012 Tagetik Extends Customer Value with SQL Server 2012 Author: Dave Kasabian Contributors: Marco Pierallini, Luca Pieretti Published: February 2012 Summary: As the 2011 Microsoft ISV Line of Business partner

More information

Einsatzfelder von IBM PureData Systems und Ihre Vorteile.

Einsatzfelder von IBM PureData Systems und Ihre Vorteile. Einsatzfelder von IBM PureData Systems und Ihre Vorteile demirkaya@de.ibm.com Agenda Information technology challenges PureSystems and PureData introduction PureData for Transactions PureData for Analytics

More information

Real-Time Big Data Analytics SAP HANA with the Intel Distribution for Apache Hadoop software

Real-Time Big Data Analytics SAP HANA with the Intel Distribution for Apache Hadoop software Real-Time Big Data Analytics with the Intel Distribution for Apache Hadoop software Executive Summary is already helping businesses extract value out of Big Data by enabling real-time analysis of diverse

More information

ScaleArc for SQL Server

ScaleArc for SQL Server Solution Brief ScaleArc for SQL Server Overview Organizations around the world depend on SQL Server for their revenuegenerating, customer-facing applications, running their most business-critical operations

More information

Advanced In-Database Analytics

Advanced In-Database Analytics Advanced In-Database Analytics Tallinn, Sept. 25th, 2012 Mikko-Pekka Bertling, BDM Greenplum EMEA 1 That sounds complicated? 2 Who can tell me how best to solve this 3 What are the main mathematical functions??

More information

Why DBMSs Matter More than Ever in the Big Data Era

Why DBMSs Matter More than Ever in the Big Data Era E-PAPER FEBRUARY 2014 Why DBMSs Matter More than Ever in the Big Data Era Having the right database infrastructure can make or break big data analytics projects. TW_1401138 Big data has become big news

More information

Microsoft SQL Server 2014 Licensing Guide

Microsoft SQL Server 2014 Licensing Guide Microsoft SQL Server 2014 Licensing Guide Publish Date: April 1, 2014 Contents 1 Overview 1 SQL Server 2014 Editions 3 How SQL Server 2014 Licenses Are Sold 4 SQL Server 2014 Licensing Models 4 Core-Based

More information

BIG DATA AND MICROSOFT. Susie Adams CTO Microsoft Federal

BIG DATA AND MICROSOFT. Susie Adams CTO Microsoft Federal BIG DATA AND MICROSOFT Susie Adams CTO Microsoft Federal THE WORLD OF DATA IS CHANGING Cloud What s making this possible? Electrical efficiency of computers doubles every year and ½. Laptops and mobile

More information

Comprehensive Analytics on the Hortonworks Data Platform

Comprehensive Analytics on the Hortonworks Data Platform Comprehensive Analytics on the Hortonworks Data Platform We do Hadoop. Page 1 Page 2 Back to 2005 Page 3 Vertical Scaling Page 4 Vertical Scaling Page 5 Vertical Scaling Page 6 Horizontal Scaling Page

More information

Harnessing the Power of the Microsoft Cloud for Deep Data Analytics

Harnessing the Power of the Microsoft Cloud for Deep Data Analytics 1 Harnessing the Power of the Microsoft Cloud for Deep Data Analytics Today's Focus How you can operate your business more efficiently and effectively by tapping into Cloud based data analytics solutions

More information

Microsoft SQL Server for Oracle DBAs Course 40045; 4 Days, Instructor-led

Microsoft SQL Server for Oracle DBAs Course 40045; 4 Days, Instructor-led Microsoft SQL Server for Oracle DBAs Course 40045; 4 Days, Instructor-led Course Description This four-day instructor-led course provides students with the knowledge and skills to capitalize on their skills

More information

WINDOWS AZURE DATA MANAGEMENT AND BUSINESS ANALYTICS

WINDOWS AZURE DATA MANAGEMENT AND BUSINESS ANALYTICS WINDOWS AZURE DATA MANAGEMENT AND BUSINESS ANALYTICS Managing and analyzing data in the cloud is just as important as it is anywhere else. To let you do this, Windows Azure provides a range of technologies

More information

Oracle Big Data SQL Technical Update

Oracle Big Data SQL Technical Update Oracle Big Data SQL Technical Update Jean-Pierre Dijcks Oracle Redwood City, CA, USA Keywords: Big Data, Hadoop, NoSQL Databases, Relational Databases, SQL, Security, Performance Introduction This technical

More information

SQL Server 2012 Business Intelligence Boot Camp

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

More information

In-memory databases and innovations in Business Intelligence

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

More information

Common Situations. Departments choosing best in class solutions for their specific needs. Lack of coordinated BI strategy across the enterprise

Common Situations. Departments choosing best in class solutions for their specific needs. Lack of coordinated BI strategy across the enterprise Common Situations Lack of coordinated BI strategy across the enterprise Departments choosing best in class solutions for their specific needs Acquisitions of companies using different BI tools 2 3-5 BI

More information

Data Warehouse as a Service. Lot 2 - Platform as a Service. Version: 1.1, Issue Date: 05/02/2014. Classification: Open

Data Warehouse as a Service. Lot 2 - Platform as a Service. Version: 1.1, Issue Date: 05/02/2014. Classification: Open Data Warehouse as a Service Version: 1.1, Issue Date: 05/02/2014 Classification: Open Classification: Open ii MDS Technologies Ltd 2014. Other than for the sole purpose of evaluating this Response, no

More information

The 3 questions to ask yourself about BIG DATA

The 3 questions to ask yourself about BIG DATA The 3 questions to ask yourself about BIG DATA Do you have a big data problem? Companies looking to tackle big data problems are embarking on a journey that is full of hype, buzz, confusion, and misinformation.

More information

can you effectively plan for the migration and management of systems and applications on Vblock Platforms?

can you effectively plan for the migration and management of systems and applications on Vblock Platforms? SOLUTION BRIEF CA Capacity Management and Reporting Suite for Vblock Platforms can you effectively plan for the migration and management of systems and applications on Vblock Platforms? agility made possible

More information

Tap into Big Data at the Speed of Business

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

More information