{"id":241809,"date":"2023-07-27T14:37:22","date_gmt":"2023-07-27T21:37:22","guid":{"rendered":"https:\/\/virtual-dba.com\/?p=241809"},"modified":"2023-08-14T15:18:39","modified_gmt":"2023-08-14T22:18:39","slug":"in-memory-tables-sql-server-benefits-limitations-and-how-to-identify","status":"publish","type":"post","link":"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/","title":{"rendered":"In-Memory Tables in SQL Server: Benefits, Limitations, and How to Identify Them"},"content":{"rendered":"\n<p>If you are looking to improve the speed of transactions, especially for high-concurrency workloads that involve a lot of inserts, update, and delete operations, you might benefit from implementing In-Memory OLTP and experience up to 30X performance gain, as some have seen. However, the performance gain depends on the workload.<\/p>\n\n\n\n<p>In this article, we will discuss what this <a href=\"https:\/\/virtual-dba.com\/platforms\/sql-server\/\">SQL Server <\/a>In-Memory OLTP technology is, when to use them, what are the benefits, and highlight the potential risks and challenges you might be facing while implementing the In-Memory OLTP Table feature in your SQL Server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Are In-Memory Tables in SQL Server?<\/h2>\n\n\n\n<p><a href=\"https:\/\/asifulhaque.com\/sql-server-isolation-level\/\" target=\"_blank\" rel=\"noreferrer noopener\">SQL Server<\/a> &amp;In-Memory OLTP (Online Transaction Processing) is a premier technology available in SQL Server and SQL Database for optimizing the performance of transaction processing, data ingestion, data load, and transient data scenarios. This feature allows faster performance of certain types of workloads in SQL Server; by storing data and indexes in memory rather than on disk. This can significantly improve the speed of transactions, especially for high-concurrency workloads that involve a lot of inserts, update, and delete operations.<\/p>\n\n\n\n<p>In-Memory OLTP was first introduced in SQL Server 2014, so this is the minimum requirement for In-Memory OLTP. It can be used in all editions, including Express, Standard, and Enterprise. In-Memory engine provides tables and indexes on which no latches or locks are required during concurrent access. It also provides natively compiled stored procedures.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">When Should You Consider Migrating to In-Memory Tables in SQL Server?<\/h2>\n\n\n\n<p>In-Memory OLTP improves the performance of transaction processing by making data access and transaction execution more efficient and by removing the lock and latch contention between concurrently executing transactions. In-Memory OLTP isn&#8217;t fast because it&#8217;s in memory; it&#8217;s fast because it&#8217;s optimized around the data being In-Memory. It should be noted that In-Memory OLTP is not a replacement for traditional disk-based tables. It should only be used for specific workloads that will benefit from increased performance. In other words, if you have transactional tables with high-volume WRITEs that involve many inserts, updates, and deletes, not a data warehouse mostly for reads, In-Memory OLTP could be a very beneficial feature for you.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Are the Benefits of In-Memory Tables?<\/h2>\n\n\n\n<p>In-Memory OLTP is built into SQL Server and SQL Database. Because these objects behave similarly to their traditional counterparts, you can often gain performance benefits while making only minimal changes to the database and the application. Plus, you can have both memory-optimized and traditional disk-based tables in the same database and run queries across the two.<\/p>\n\n\n\n<p>According to Microsoft, SQL Server uses an optimistic approach where it does not place locks or latches on any version of updated rows of data, which is very different from normal tables. It&#8217;s this mechanism that reduces contention and allows the transactions to process exponentially faster. Instead of locks, In-Memory uses Row Versions, keeping the original row until after the transaction is committed. This allows other transactions to read the original row while updating the new row version. The In-Memory structured version is pageless and optimized for speed inside active memory, giving a significant performance impact depending on workloads.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Are the Limitations of In-Memory Tables?<\/h2>\n\n\n\n<p>In-Memory OLTP supposedly increases performance; however, some features of Disk-based tables are not available in In-Memory tables. Like all SQL Server options, this is not meant for all environments. Many T-SQL operators and functionalities, such as OR, LIKE, BETWEEN, and OUTER JOIN, are not available, which limits developers and business logic in stored procedures. For a full list of unsupported features and syntax to consider, be sure to check out the <a href=\"https:\/\/docs.microsoft.com\/en-us\/sql\/relational-databases\/in-memory-oltp\/transact-sql-constructs-not-supported-by-in-memory-oltp?view=sql-server-ver15\" target=\"_blank\" rel=\"noreferrer noopener\">documentation<\/a>. Below are just a few.<\/p>\n\n\n\n<p>Features not supported for In-Memory tables to keep in mind:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Replication<\/li>\n\n\n\n<li>Mirroring<\/li>\n\n\n\n<li>Linked Servers<\/li>\n\n\n\n<li>Bulk Logging<\/li>\n\n\n\n<li>DDL Triggers<\/li>\n\n\n\n<li>Minimal Logging<\/li>\n\n\n\n<li>Change Data Capture<\/li>\n\n\n\n<li>Data Compression<\/li>\n<\/ul>\n\n\n\n<p>T-SQL not supported in In-Memory Tables:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Foreign Keys (Can only reference other Memory Optimized Table PKs)<\/li>\n\n\n\n<li>ALTER TABLE<\/li>\n\n\n\n<li>CREATE INDEX<\/li>\n\n\n\n<li>TRUNCATE TABLE<\/li>\n\n\n\n<li>DBCC CHECKTABLE<\/li>\n\n\n\n<li>DBCC CHECKDB<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">How to Identify if In-Memory Tables Are Being Used?<\/h2>\n\n\n\n<p>To identify if a certain database has any tables that are In-Memory, the following query can be used. This will return a list of all tables that are In-Memory within that database.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>SELECT *\nFROM sys.tables\nWHERE is_memory_optimized = 1<\/code><\/pre>\n\n\n\n<p>You can also use the following query to get a list of the In-Memory Tables that would have more information on the tables, including their durability.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>SELECT SCHEMA_NAME(Schema_id) SchemaName,\nname TableName,\nis_memory_optimized,\ndurability_desc,\ncreate_date, modify_date\nFROM sys.tables\nGO<\/code><\/pre>\n\n\n\n<p>For any questions about our <a href=\"https:\/\/virtual-dba.com\/platforms\/sql-server\/\">SQL Server Virtual-DBA Services <\/a>or for more information, please <a href=\"https:\/\/virtual-dba.com\/contact-us\/\">contact us<\/a>!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you are looking to improve the speed of transactions, especially for high-concurrency workloads that involve a lot of inserts, update, and delete operations, you might benefit from implementing In-Memory OLTP and experience up to 30X performance gain, as some have seen. However, the performance gain depends on the workload. In this article, we will [&hellip;]<\/p>\n","protected":false},"author":65,"featured_media":241848,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"off","_et_pb_old_content":"","_et_gb_content_width":"","content-type":"","footnotes":""},"categories":[4166,55],"tags":[768,60],"class_list":["post-241809","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-sql-server","tag-in-memory-oltp","tag-sql-server"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.1 (Yoast SEO v27.1.1) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>In-Memory Tables in SQL Server: Benefits, Limitations, and How to Identify Them | Virtual-DBA<\/title>\n<meta name=\"description\" content=\"This blog discusses what SQL Server In-Memory OLTP technology is, when to use them, their benefits, and potential risks.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"In-Memory Tables in SQL Server: Benefits, Limitations, and How to Identify Them\" \/>\n<meta property=\"og:description\" content=\"This blog discusses what SQL Server In-Memory OLTP technology is, when to use them, their benefits, and potential risks.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/\" \/>\n<meta property=\"og:site_name\" content=\"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-27T21:37:22+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-14T22:18:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/In-Memory-Tables-in-SQL-Server-Benefits_-Limitations_-and-How-to-Identify-Them.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"557\" \/>\n\t<meta property=\"og:image:height\" content=\"291\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Mishkat Noor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@virtual_dba\" \/>\n<meta name=\"twitter:site\" content=\"@virtual_dba\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mishkat Noor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/\"},\"author\":{\"name\":\"Mishkat Noor\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/7ebec433cc0d3774f2d7b43a2816a00a\"},\"headline\":\"In-Memory Tables in SQL Server: Benefits, Limitations, and How to Identify Them\",\"datePublished\":\"2023-07-27T21:37:22+00:00\",\"dateModified\":\"2023-08-14T22:18:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/\"},\"wordCount\":753,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/In-Memory-Tables-in-SQL-Server-Benefits_-Limitations_-and-How-to-Identify-Them.jpg\",\"keywords\":[\"in memory oltp\",\"sql server\"],\"articleSection\":[\"Blog\",\"SQL Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/\",\"url\":\"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/\",\"name\":\"In-Memory Tables in SQL Server: Benefits, Limitations, and How to Identify Them | Virtual-DBA\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/In-Memory-Tables-in-SQL-Server-Benefits_-Limitations_-and-How-to-Identify-Them.jpg\",\"datePublished\":\"2023-07-27T21:37:22+00:00\",\"dateModified\":\"2023-08-14T22:18:39+00:00\",\"description\":\"This blog discusses what SQL Server In-Memory OLTP technology is, when to use them, their benefits, and potential risks.\",\"breadcrumb\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/#primaryimage\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/In-Memory-Tables-in-SQL-Server-Benefits_-Limitations_-and-How-to-Identify-Them.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/In-Memory-Tables-in-SQL-Server-Benefits_-Limitations_-and-How-to-Identify-Them.jpg\",\"width\":557,\"height\":291,\"caption\":\"In-Memory Tables in SQL Server- Benefits_ Limitations_ and How to Identify Them\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtual-dba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"In-Memory Tables in SQL Server: Benefits, Limitations, and How to Identify Them\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/virtual-dba.com\/#website\",\"url\":\"https:\/\/virtual-dba.com\/\",\"name\":\"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\",\"description\":\"Remote Database Administration\",\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/virtual-dba.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/virtual-dba.com\/#organization\",\"name\":\"Virtual-DBA: Remote DBA | Remote Database Administration\",\"alternateName\":\"Virtual-DBA powered by XTIVIA\",\"url\":\"https:\/\/virtual-dba.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg\",\"width\":557,\"height\":291,\"caption\":\"Virtual-DBA: Remote DBA | Remote Database Administration\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/virtual_dba\",\"https:\/\/www.linkedin.com\/showcase\/36220649\/\",\"https:\/\/www.youtube.com\/channel\/UCx3AIeUQ2ziTLKZSJDZ-SEg\"],\"description\":\"Eliminate database downtime and spiraling costs with XTIVIA\u2019s Virtual-DBA. In today\u2019s always-on business world, gaps in 24x7 on-call DBA support, neglected maintenance and security, or a stretched team struggling with overwhelming workloads can lead to costly disruptions and threaten business continuity. XTIVIA\u2019s Virtual-DBA provides the immediate, expert database administration you need, exactly when you need it, ensuring optimal performance, ironclad security, and significant cost savings without the burden of expanding your in-house team. The goal of Virtual-DBA is to provide a cost-effective solution for organizations seeking to optimize the security, management, maintenance, availability, and performance of their critical business systems, whether self-managed or cloud-managed (e.g., AWS RDS, Azure SQL Database). We accomplish this through a comprehensive remote DBA service offering designed specifically to meet the Oracle\u00ae, DB2\u00ae, Informix\u00ae, MySQL\u2122, PostgreSQL\u00ae, MongoDB\u00ae, MariaDB, and Microsoft SQL Server\u00ae, CockroachDB, Databricks, AWS, and Azure needs of our clients.\",\"email\":\"info@xtivia.com\",\"telephone\":\"8886853101\",\"legalName\":\"XTIVIA, Inc\",\"foundingDate\":\"1992-05-01\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"201\",\"maxValue\":\"500\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/7ebec433cc0d3774f2d7b43a2816a00a\",\"name\":\"Mishkat Noor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b2db5527db1481cb4d59d1c4a7dc8f37474dfc3d7689444efa3d5be8e2a37d90?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b2db5527db1481cb4d59d1c4a7dc8f37474dfc3d7689444efa3d5be8e2a37d90?s=96&d=mm&r=g\",\"caption\":\"Mishkat Noor\"},\"url\":\"https:\/\/virtual-dba.com\/author\/mishkat-noor\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"In-Memory Tables in SQL Server: Benefits, Limitations, and How to Identify Them | Virtual-DBA","description":"This blog discusses what SQL Server In-Memory OLTP technology is, when to use them, their benefits, and potential risks.","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:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/","og_locale":"en_US","og_type":"article","og_title":"In-Memory Tables in SQL Server: Benefits, Limitations, and How to Identify Them","og_description":"This blog discusses what SQL Server In-Memory OLTP technology is, when to use them, their benefits, and potential risks.","og_url":"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/","og_site_name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","article_published_time":"2023-07-27T21:37:22+00:00","article_modified_time":"2023-08-14T22:18:39+00:00","og_image":[{"width":557,"height":291,"url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/In-Memory-Tables-in-SQL-Server-Benefits_-Limitations_-and-How-to-Identify-Them.jpg","type":"image\/jpeg"}],"author":"Mishkat Noor","twitter_card":"summary_large_image","twitter_creator":"@virtual_dba","twitter_site":"@virtual_dba","twitter_misc":{"Written by":"Mishkat Noor","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/#article","isPartOf":{"@id":"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/"},"author":{"name":"Mishkat Noor","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/7ebec433cc0d3774f2d7b43a2816a00a"},"headline":"In-Memory Tables in SQL Server: Benefits, Limitations, and How to Identify Them","datePublished":"2023-07-27T21:37:22+00:00","dateModified":"2023-08-14T22:18:39+00:00","mainEntityOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/"},"wordCount":753,"commentCount":0,"publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/In-Memory-Tables-in-SQL-Server-Benefits_-Limitations_-and-How-to-Identify-Them.jpg","keywords":["in memory oltp","sql server"],"articleSection":["Blog","SQL Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/","url":"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/","name":"In-Memory Tables in SQL Server: Benefits, Limitations, and How to Identify Them | Virtual-DBA","isPartOf":{"@id":"https:\/\/virtual-dba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/#primaryimage"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/In-Memory-Tables-in-SQL-Server-Benefits_-Limitations_-and-How-to-Identify-Them.jpg","datePublished":"2023-07-27T21:37:22+00:00","dateModified":"2023-08-14T22:18:39+00:00","description":"This blog discusses what SQL Server In-Memory OLTP technology is, when to use them, their benefits, and potential risks.","breadcrumb":{"@id":"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/#primaryimage","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/In-Memory-Tables-in-SQL-Server-Benefits_-Limitations_-and-How-to-Identify-Them.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/In-Memory-Tables-in-SQL-Server-Benefits_-Limitations_-and-How-to-Identify-Them.jpg","width":557,"height":291,"caption":"In-Memory Tables in SQL Server- Benefits_ Limitations_ and How to Identify Them"},{"@type":"BreadcrumbList","@id":"https:\/\/virtual-dba.com\/blog\/in-memory-tables-sql-server-benefits-limitations-and-how-to-identify\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtual-dba.com\/"},{"@type":"ListItem","position":2,"name":"In-Memory Tables in SQL Server: Benefits, Limitations, and How to Identify Them"}]},{"@type":"WebSite","@id":"https:\/\/virtual-dba.com\/#website","url":"https:\/\/virtual-dba.com\/","name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","description":"Remote Database Administration","publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/virtual-dba.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/virtual-dba.com\/#organization","name":"Virtual-DBA: Remote DBA | Remote Database Administration","alternateName":"Virtual-DBA powered by XTIVIA","url":"https:\/\/virtual-dba.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg","width":557,"height":291,"caption":"Virtual-DBA: Remote DBA | Remote Database Administration"},"image":{"@id":"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/virtual_dba","https:\/\/www.linkedin.com\/showcase\/36220649\/","https:\/\/www.youtube.com\/channel\/UCx3AIeUQ2ziTLKZSJDZ-SEg"],"description":"Eliminate database downtime and spiraling costs with XTIVIA\u2019s Virtual-DBA. In today\u2019s always-on business world, gaps in 24x7 on-call DBA support, neglected maintenance and security, or a stretched team struggling with overwhelming workloads can lead to costly disruptions and threaten business continuity. XTIVIA\u2019s Virtual-DBA provides the immediate, expert database administration you need, exactly when you need it, ensuring optimal performance, ironclad security, and significant cost savings without the burden of expanding your in-house team. The goal of Virtual-DBA is to provide a cost-effective solution for organizations seeking to optimize the security, management, maintenance, availability, and performance of their critical business systems, whether self-managed or cloud-managed (e.g., AWS RDS, Azure SQL Database). We accomplish this through a comprehensive remote DBA service offering designed specifically to meet the Oracle\u00ae, DB2\u00ae, Informix\u00ae, MySQL\u2122, PostgreSQL\u00ae, MongoDB\u00ae, MariaDB, and Microsoft SQL Server\u00ae, CockroachDB, Databricks, AWS, and Azure needs of our clients.","email":"info@xtivia.com","telephone":"8886853101","legalName":"XTIVIA, Inc","foundingDate":"1992-05-01","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"201","maxValue":"500"}},{"@type":"Person","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/7ebec433cc0d3774f2d7b43a2816a00a","name":"Mishkat Noor","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b2db5527db1481cb4d59d1c4a7dc8f37474dfc3d7689444efa3d5be8e2a37d90?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b2db5527db1481cb4d59d1c4a7dc8f37474dfc3d7689444efa3d5be8e2a37d90?s=96&d=mm&r=g","caption":"Mishkat Noor"},"url":"https:\/\/virtual-dba.com\/author\/mishkat-noor\/"}]}},"_links":{"self":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/241809","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/users\/65"}],"replies":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/comments?post=241809"}],"version-history":[{"count":0,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/241809\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media\/241848"}],"wp:attachment":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media?parent=241809"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/categories?post=241809"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/tags?post=241809"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}