{"id":11192,"date":"2016-10-31T06:15:21","date_gmt":"2016-10-31T13:15:21","guid":{"rendered":"http:\/\/joedantoni.wordpress.com\/?p=1680"},"modified":"2021-04-22T08:13:36","modified_gmt":"2021-04-22T15:13:36","slug":"does-in-memory-oltp-work-with-always-encrypted-aka-that-time-bob-ward-asked-us-a-question","status":"publish","type":"post","link":"https:\/\/www.dcac.com\/2016\/10\/31\/does-in-memory-oltp-work-with-always-encrypted-aka-that-time-bob-ward-asked-us-a-question\/","title":{"rendered":"Does In-Memory OLTP Work with Always Encrypted? (AKA That time Bob Ward asked us a question)"},"content":{"rendered":"

Last week was the PASS Summit, which is the biggest confab of SQL Server professionals on the planet (and educational as ever), Denny Cherry  (b<\/a>|t<\/a>) and I ran into Bob Ward (b<\/a>|t<\/a>) of Microsoft and of 500 level internals presentations. And for the first time ever, Bob asked us a question about SQL Server\u2014of course we didn\u2019t know the answer of the top of our heads, but we felt obligated to research it like we\u2019ve made Bob do so many times. Anyone, the question came up a Bob\u2019s internals session on Hekaton (In-Memory OLTP) and whether it supported the new Always Encrypted feature in SQL Server 2016. I checked books online, but could not find a clear answer, so I fired up SSMS and setup a quick demo.<\/p>\n

 <\/p>\n

Set up Hekaton<\/h3>\n

Let\u2019s get started with setting up Hekaton.<\/p>\n

CREATE DATABASE imoltp  
GO 
 
————————————– 
— create database with a memory-optimized filegroup and a container. 
ALTER DATABASE imoltp ADD FILEGROUP imoltp_mod CONTAINS MEMORY_OPTIMIZED_DATA  
ALTER DATABASE imoltp ADD FILE (name=’imoltp_mod1′, filename=’c:\\temp\\imoltp_mod1′) TO FILEGROUP imoltp_mod  
ALTER DATABASE imoltp SET MEMORY_OPTIMIZED_ELEVATE_TO_SNAPSHOT=ON 
GO  <\/p>\n

In that code, I\u2019m just doing the setup for In-Memory OLTP\u2014you need to added a filegroup, as well as enable the MEMORY_OPTIMIZED_ELEVATE_TO_SNAPSHOT_ON.<\/p>\n

Always Encrypted Setup<\/h3>\n

Next, we needed to setup up Always Encrypted.<\/p>\n

\"image\"<\/a><\/p>\n

In order to configure this, you\u2019ll first need to setup a Column Master Key, and then a Column Encryption Key. I took a sample table from books online, and attempted to encrypt it.<\/p>\n

CREATE TABLE [Employee_Encrypted](
    [BusinessEntityID] [int] NOT NULL IDENTITY(1,1) ,
    [NationalIDNumber] [char](11) COLLATE Latin1_General_BIN2
        ENCRYPTED WITH (ENCRYPTION_TYPE = DETERMINISTIC,
        ALGORITHM = ‘AEAD_AES_256_CBC_HMAC_SHA_256’,
        COLUMN_ENCRYPTION_KEY = ColumnKey1)
        NOT NULL,
    [LoginID] [nvarchar](256) NULL,
    [BirthDate] [date]
        ENCRYPTED WITH (ENCRYPTION_TYPE = RANDOMIZED,
        ALGORITHM = ‘AEAD_AES_256_CBC_HMAC_SHA_256’,
        COLUMN_ENCRYPTION_KEY = ColumnKey1)
        NOT NULL,
         CONSTRAINT [PK_Employee_Encrypted_BusinessEntityID] PRIMARY KEY NONCLUSTERED
(
    [BusinessEntityID] ASC
)
)
WITH  (MEMORY_OPTIMIZED=ON)<\/p>\n

With that T-SQL (and a couple of attempts at getting my parentheses in the right place) it just ran. Nothing major to do\u2014just create table. I confirmed this behavior with Jos de Bruijn, who is the program manager for Hekaton.<\/p>\n

\"\"<\/a> \"\"<\/p>\n","protected":false},"excerpt":{"rendered":"

Last week was the PASS Summit, which is the biggest confab of SQL Server professionals on the planet (and educational as ever), Denny Cherry  (b|t) and I ran into Bob Ward (b|t) of Microsoft and of 500 level internals presentations. And for the first time ever, Bob asked us a question about SQL Server—of course […]\"\"<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[551,271,46],"tags":[563],"class_list":["post-11192","post","type-post","status-publish","format-standard","hentry","category-blog","category-sql-server-2016","category-syndication","tag-donotrepost"],"yoast_head":"\nDoes In-Memory OLTP Work with Always Encrypted? (AKA That time Bob Ward asked us a question) – Denny Cherry & Associates Consulting<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dcac.com\/2016\/10\/31\/does-in-memory-oltp-work-with-always-encrypted-aka-that-time-bob-ward-asked-us-a-question\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Does In-Memory OLTP Work with Always Encrypted? (AKA That time Bob Ward asked us a question) – Denny Cherry & Associates Consulting\" \/>\n<meta property=\"og:description\" content=\"Last week was the PASS Summit, which is the biggest confab of SQL Server professionals on the planet (and educational as ever), Denny Cherry  (b|t) and I ran into Bob Ward (b|t) of Microsoft and of 500 level internals presentations. And for the first time ever, Bob asked us a question about SQL Server—of course […]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dcac.com\/2016\/10\/31\/does-in-memory-oltp-work-with-always-encrypted-aka-that-time-bob-ward-asked-us-a-question\/\" \/>\n<meta property=\"og:site_name\" content=\"Denny Cherry & Associates Consulting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DennyCherryAssociatesConsulting\/\" \/>\n<meta property=\"article:published_time\" content=\"2016-10-31T13:15:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-04-22T15:13:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/joedantoni.files.wordpress.com\/2016\/10\/image_thumb.png?w=244&h=65\" \/>\n<meta name=\"author\" content=\"Joey D'Antoni\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@dcacco\" \/>\n<meta name=\"twitter:site\" content=\"@dcacco\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Joey D'Antoni\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dcac.com\/2016\/10\/31\/does-in-memory-oltp-work-with-always-encrypted-aka-that-time-bob-ward-asked-us-a-question\/\",\"url\":\"https:\/\/www.dcac.com\/2016\/10\/31\/does-in-memory-oltp-work-with-always-encrypted-aka-that-time-bob-ward-asked-us-a-question\/\",\"name\":\"Does In-Memory OLTP Work with Always Encrypted? (AKA That time Bob Ward asked us a question) – Denny Cherry & Associates Consulting\",\"isPartOf\":{\"@id\":\"https:\/\/www.dcac.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dcac.com\/2016\/10\/31\/does-in-memory-oltp-work-with-always-encrypted-aka-that-time-bob-ward-asked-us-a-question\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dcac.com\/2016\/10\/31\/does-in-memory-oltp-work-with-always-encrypted-aka-that-time-bob-ward-asked-us-a-question\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/joedantoni.files.wordpress.com\/2016\/10\/image_thumb.png?w=244&h=65\",\"datePublished\":\"2016-10-31T13:15:21+00:00\",\"dateModified\":\"2021-04-22T15:13:36+00:00\",\"author\":{\"@id\":\"https:\/\/www.dcac.com\/#\/schema\/person\/ac58f2207d3f180aa3e4ee0ce6af0885\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dcac.com\/2016\/10\/31\/does-in-memory-oltp-work-with-always-encrypted-aka-that-time-bob-ward-asked-us-a-question\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dcac.com\/2016\/10\/31\/does-in-memory-oltp-work-with-always-encrypted-aka-that-time-bob-ward-asked-us-a-question\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dcac.com\/2016\/10\/31\/does-in-memory-oltp-work-with-always-encrypted-aka-that-time-bob-ward-asked-us-a-question\/#primaryimage\",\"url\":\"https:\/\/joedantoni.files.wordpress.com\/2016\/10\/image_thumb.png?w=244&h=65\",\"contentUrl\":\"https:\/\/joedantoni.files.wordpress.com\/2016\/10\/image_thumb.png?w=244&h=65\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dcac.com\/2016\/10\/31\/does-in-memory-oltp-work-with-always-encrypted-aka-that-time-bob-ward-asked-us-a-question\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.dcac.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Does In-Memory OLTP Work with Always Encrypted? (AKA That time Bob Ward asked us a question)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dcac.com\/#website\",\"url\":\"https:\/\/www.dcac.com\/\",\"name\":\"Denny Cherry & Associates Consulting\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dcac.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dcac.com\/#\/schema\/person\/ac58f2207d3f180aa3e4ee0ce6af0885\",\"name\":\"Joey D'Antoni\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dcac.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/3fede03569772a55a091b587d76f78d4?s=96&r=x\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/3fede03569772a55a091b587d76f78d4?s=96&r=x\",\"caption\":\"Joey D'Antoni\"},\"url\":\"https:\/\/www.dcac.com\/author\/joeydcac-co\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Does In-Memory OLTP Work with Always Encrypted? (AKA That time Bob Ward asked us a question) – Denny Cherry & Associates Consulting","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.dcac.com\/2016\/10\/31\/does-in-memory-oltp-work-with-always-encrypted-aka-that-time-bob-ward-asked-us-a-question\/","og_locale":"en_US","og_type":"article","og_title":"Does In-Memory OLTP Work with Always Encrypted? (AKA That time Bob Ward asked us a question) – Denny Cherry & Associates Consulting","og_description":"Last week was the PASS Summit, which is the biggest confab of SQL Server professionals on the planet (and educational as ever), Denny Cherry  (b|t) and I ran into Bob Ward (b|t) of Microsoft and of 500 level internals presentations. And for the first time ever, Bob asked us a question about SQL Server—of course […]","og_url":"https:\/\/www.dcac.com\/2016\/10\/31\/does-in-memory-oltp-work-with-always-encrypted-aka-that-time-bob-ward-asked-us-a-question\/","og_site_name":"Denny Cherry & Associates Consulting","article_publisher":"https:\/\/www.facebook.com\/DennyCherryAssociatesConsulting\/","article_published_time":"2016-10-31T13:15:21+00:00","article_modified_time":"2021-04-22T15:13:36+00:00","og_image":[{"url":"https:\/\/joedantoni.files.wordpress.com\/2016\/10\/image_thumb.png?w=244&h=65","type":"","width":"","height":""}],"author":"Joey D'Antoni","twitter_card":"summary_large_image","twitter_creator":"@dcacco","twitter_site":"@dcacco","twitter_misc":{"Written by":"Joey D'Antoni","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.dcac.com\/2016\/10\/31\/does-in-memory-oltp-work-with-always-encrypted-aka-that-time-bob-ward-asked-us-a-question\/","url":"https:\/\/www.dcac.com\/2016\/10\/31\/does-in-memory-oltp-work-with-always-encrypted-aka-that-time-bob-ward-asked-us-a-question\/","name":"Does In-Memory OLTP Work with Always Encrypted? (AKA That time Bob Ward asked us a question) – Denny Cherry & Associates Consulting","isPartOf":{"@id":"https:\/\/www.dcac.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dcac.com\/2016\/10\/31\/does-in-memory-oltp-work-with-always-encrypted-aka-that-time-bob-ward-asked-us-a-question\/#primaryimage"},"image":{"@id":"https:\/\/www.dcac.com\/2016\/10\/31\/does-in-memory-oltp-work-with-always-encrypted-aka-that-time-bob-ward-asked-us-a-question\/#primaryimage"},"thumbnailUrl":"https:\/\/joedantoni.files.wordpress.com\/2016\/10\/image_thumb.png?w=244&h=65","datePublished":"2016-10-31T13:15:21+00:00","dateModified":"2021-04-22T15:13:36+00:00","author":{"@id":"https:\/\/www.dcac.com\/#\/schema\/person\/ac58f2207d3f180aa3e4ee0ce6af0885"},"breadcrumb":{"@id":"https:\/\/www.dcac.com\/2016\/10\/31\/does-in-memory-oltp-work-with-always-encrypted-aka-that-time-bob-ward-asked-us-a-question\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dcac.com\/2016\/10\/31\/does-in-memory-oltp-work-with-always-encrypted-aka-that-time-bob-ward-asked-us-a-question\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dcac.com\/2016\/10\/31\/does-in-memory-oltp-work-with-always-encrypted-aka-that-time-bob-ward-asked-us-a-question\/#primaryimage","url":"https:\/\/joedantoni.files.wordpress.com\/2016\/10\/image_thumb.png?w=244&h=65","contentUrl":"https:\/\/joedantoni.files.wordpress.com\/2016\/10\/image_thumb.png?w=244&h=65"},{"@type":"BreadcrumbList","@id":"https:\/\/www.dcac.com\/2016\/10\/31\/does-in-memory-oltp-work-with-always-encrypted-aka-that-time-bob-ward-asked-us-a-question\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.dcac.com\/"},{"@type":"ListItem","position":2,"name":"Does In-Memory OLTP Work with Always Encrypted? (AKA That time Bob Ward asked us a question)"}]},{"@type":"WebSite","@id":"https:\/\/www.dcac.com\/#website","url":"https:\/\/www.dcac.com\/","name":"Denny Cherry & Associates Consulting","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dcac.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dcac.com\/#\/schema\/person\/ac58f2207d3f180aa3e4ee0ce6af0885","name":"Joey D'Antoni","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dcac.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/3fede03569772a55a091b587d76f78d4?s=96&r=x","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3fede03569772a55a091b587d76f78d4?s=96&r=x","caption":"Joey D'Antoni"},"url":"https:\/\/www.dcac.com\/author\/joeydcac-co\/"}]}},"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/www.dcac.com\/wp-json\/wp\/v2\/posts\/11192","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dcac.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dcac.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dcac.com\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dcac.com\/wp-json\/wp\/v2\/comments?post=11192"}],"version-history":[{"count":2,"href":"https:\/\/www.dcac.com\/wp-json\/wp\/v2\/posts\/11192\/revisions"}],"predecessor-version":[{"id":11212,"href":"https:\/\/www.dcac.com\/wp-json\/wp\/v2\/posts\/11192\/revisions\/11212"}],"wp:attachment":[{"href":"https:\/\/www.dcac.com\/wp-json\/wp\/v2\/media?parent=11192"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dcac.com\/wp-json\/wp\/v2\/categories?post=11192"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dcac.com\/wp-json\/wp\/v2\/tags?post=11192"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}