{"id":240983,"date":"2022-11-16T11:23:43","date_gmt":"2022-11-16T18:23:43","guid":{"rendered":"https:\/\/virtual-dba.com\/?p=240983"},"modified":"2022-11-16T11:36:01","modified_gmt":"2022-11-16T18:36:01","slug":"sql-server-2022-release-what-are-we-excited-about","status":"publish","type":"post","link":"https:\/\/virtual-dba.com\/blog\/sql-server-2022-release-what-are-we-excited-about\/","title":{"rendered":"SQL Server 2022 Release &#8211; What Are We Excited About?"},"content":{"rendered":"\n<p>With the release of SQL Server 2022 for mainstream, we checked in with our DBAs to see what they are most excited about in the new version. We have all been waiting patiently for this release and are really happy to see it drop for mainstream support.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Parameter Sensitive Plan Optimization<\/h2>\n\n\n\n<p>Kat chose this as one of her top features. Parameter sniffing has been a &#8220;troublesome&#8221; issue to resolve in many customers&#8217; systems due to the nature of how they are querying the database. This new feature inside Query Store will allow multiple cached plans for a single query that can have different data distributions based on the values provided at run time. One thing to note, unlike other features in Query Store, databases will need to have a compatibility level of 160 for the feature to be enabled.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Contained Availability Groups<\/h2>\n\n\n\n<p>Ken H. is glad to have this feature finally available in the SQL Server 2022 release. Keeping users, logins, permissions, SQL Agent jobs, etc. synchronized between replicas has been wrought with human error, that surfaces at the worst possible time &#8211; after a failover event. <\/p>\n\n\n\n<p>We DBAs often intend to circle back when making a change or adding a replica, or attempt to circumvent by creating automated process(s) to synchronize the metadata. The reality is, at least in my case, something gets missed that is only discovered after a failover event. <\/p>\n\n\n\n<p>Contained availability groups extend the concept of the group of databases being replicated to include relevant portions of the master and msdb databases. This is different from contained databases, which store the user information within the user database. In a contained availability group, users, logins, permissions, etc. are created at the availability group level, and they are automatically synchronized to all Replicas. Each contained availability group has its own master and msdb system databases.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Fixed Server Roles<\/h2>\n\n\n\n<p>Faryl O. is looking forward to the addition of additional built-in server roles, such as ##MS_LoginManager## and ##MS_ServerStateReader##. Especially when users have specific security requirements that require access to only certain &#8220;administrative&#8221; areas and not others, assigning permissions according to the principle of least privilege can be difficult without creating custom server roles or simply assigning them sysadmin privileges to avoid further hassle.<\/p>\n\n\n\n<p> In SQL Server 2022, permissions typically reserved for administrative roles such as sysadmin and serveradmin can be divided up into new server roles and subsets of server roles so that users and application processes can only have the minimum amount of permissions they need.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Resumable Add Table Constraints<\/h2>\n\n\n\n<p>Ken D. is glad to see an addition to pause\/resumable features becoming available and expanded. The ALTER TABLE ADD CONSTRAINT operations (restricted to PRIMARY KEY and UNIQUE KEY constraints currently) now have the &#8216;WITH RESUMABLE=ON&#8217; option. <\/p>\n\n\n\n<p>On very large tables these sometimes time-consuming, and resource-intensive operations can now be paused to allow for other maintenance activities to occur, or if showing a negative impact on a running system, then resumed from the point where it was paused. No need to start from the beginning. <\/p>\n\n\n\n<p>The ability to resume execution from point of interruption includes if the commands were to fail or if a system failover occurs. The &#8216;ONLINE = ON&#8217; option and &#8216;RESUMABLE = ON&#8217; options must be specified at first execution to make the process resumable so planning ahead for what might be &#8216;unplanned&#8217; situations is needed. <\/p>\n\n\n\n<p>SQL Server continues to strengthen the ability to perform necessary DBA maintenance tasks such as this and online index creation\/rebuild to keep systems performing well and meet customer needs while lessening the impact on the availability of large databases.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Data Virtualization<\/h2>\n\n\n\n<p>Mike M. is excited about the opportunities that may come from enhanced data virtualization in the SQL Server 2022 release. With this, we will be able to query data sets and troubleshoot data\/analytics issues without the increased overhead of having to connect separately or import various tables and objects to identify problem areas. DBA maintenance will be minimized to a smaller number of environments and T-SQL usage will become more efficient and streamlined even when dealing with various source data locations. The inclusion of external tables as a select is a particularly interesting feature and I am excited to see how it is leveraged to perform small ETL\/ELT operations to meet user demands.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Management Features<\/h2>\n\n\n\n<p>Lina W. is excited about some of the new management features which will make overall database management easier and more efficient. For example, SQL will now calculate and recommend settings for Max Memory during installation. This will eliminate the need to change those settings later, which many people forget about or don&#8217;t even realize needs to be set and will cut down on memory growing out of control on your SQL Server. Another new exciting management feature involves the way we shrink data files and log files. By using the new option WAIT_AT_LOW_PRIORITY, new queries will no longer be blocked by the shrink operation, so you can shrink and still perform normal business operations.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Query Store<\/h2>\n\n\n\n<p>Christina T. is looking forward to the enhancements that have been made to the Query Store. In previous editions of SQL Server, Query Store was available but was disabled by default. This SQL  Server 2022 release has revamped the query intelligence of Query Store and shifted this as one of the many features that are now enabled by default. Additional improvements support Query Store being available on read-only AlwaysOn replicas to better optimize performance on secondary workloads. We can also use Query Store Hints to mold query plans without making any additional changes to the application code.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">New T-SQL Functions<\/h2>\n\n\n\n<p>A developer at heart, Rebecca is looking forward to some of the new T-SQL functions now available such as DATETRUNC(), GREATEST(), and LEAST(). <\/p>\n\n\n\n<p>The new DATETRUNC() function makes it much easier to return a specific date part instead of having to spend time remembering how to manipulate dates. The data type that is returned is dynamic depending on the type of date used. Meaning, if you give it a date that is datetime2, the returned value will also be a datetime2. <\/p>\n\n\n\n<p>The GREATEST() function will return the max value from a comma-delimited list of expressions. Those expressions can be a combination of different arguments such as variables, column names, functions including aggregate functions, scalar subqueries, and constants.  Expressions can contain different operators including bitwise, string, and arithmetic. If you list a mixture of different comparable data types, it will return a value using the data type with the highest precedence. If you&#8217;re not familiar with data type precedence, you can read more about it <a href=\"https:\/\/learn.microsoft.com\/en-us\/sql\/t-sql\/data-types\/data-type-precedence-transact-sql?view=azure-sqldw-latest.\" target=\"_blank\" rel=\"noreferrer noopener\">here<\/a>.<\/p>\n\n\n\n<p>What can&#8217;t you compare? You can&#8217;t compare using larger data types that exceed 8000 bytes such as varchar(max), nvarchar(max), varbinary. However, if they&#8217;re 8000 bytes or less, you can compare them! You also can&#8217;t compare arguments with data types such as xml, text, ntext, image, and so on. <\/p>\n\n\n\n<p>Last but not least, is the LEAST() function which is just like the GREATEST() function but returns the min value from a comma-delimited list of expressions instead of the max value and has the same constraints as well.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Ledger<\/h2>\n\n\n\n<p>In a day and time where data integrity is paramount, Josh is looking forward to the added protection that Ledger will offer. <\/p>\n\n\n\n<p>Ledger can help provide evidence that your data has not been tampered with to business partners, auditors, or others who need to know the integrity of your data by utilizing blockchain technology. Ledger utilizes updateable ledger tables or append-only ledger tables. <\/p>\n\n\n\n<p>Updateable ledger tables allow you to insert, update and delete rows, but each of those changes is tracked in a history table. Append-only ledger tables only allow inserts. <\/p>\n\n\n\n<p>Regardless of which type of table is used, Ledger then utilizes SHA-256 hashing through a Merkle tree data structure to create a block called the database digest.  It represents the state of all Ledger tables in the database at the time of its creation and is stored outside of the system (preferably on tamper-proof storage). <\/p>\n\n\n\n<p>While Ledger cannot prevent attacks, it can guarantee that, if data has been tampered with, it will be detected when the ledger tables are validated. During the verification process, Ledger will report all of the inconsistencies that were detected.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Need More Info?<\/h2>\n\n\n\n<p>Check out our other <a href=\"https:\/\/virtual-dba.com\/blog\/sql-server\/\">SQL Server blog posts<\/a>.  We provide expert-level SQL support and remote DBA services.  Get in <a href=\"https:\/\/virtual-dba.com\/contact-us\/\">touch<\/a>, or find out more <a href=\"https:\/\/virtual-dba.com\/platforms\/sql-server\/\">here<\/a>.  <\/p>\n","protected":false},"excerpt":{"rendered":"<p>With the release of SQL Server 2022 for mainstream, we checked in with our DBAs to see what they are most excited about in the new version. We have all been waiting patiently for this release and are really happy to see it drop for mainstream support. Parameter Sensitive Plan Optimization Kat chose this as [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":240991,"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":[60,4197],"class_list":["post-240983","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-sql-server","tag-sql-server","tag-sql-server-2022"],"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>SQL Server 2022 Release - What Are We Excited About?<\/title>\n<meta name=\"description\" content=\"With the SQL Server 2022 release for mainstream, we checked in with our DBAs to see what they are most excited about in the new version.\" \/>\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\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL Server 2022 Release - What Are We Excited About?\" \/>\n<meta property=\"og:description\" content=\"With the SQL Server 2022 release for mainstream, we checked in with our DBAs to see what they are most excited about in the new version.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/\" \/>\n<meta property=\"og:site_name\" content=\"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-16T18:23:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-11-16T18:36:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/SQL-Server-2022-What-Are-We-Excited-About.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=\"XTIVIA\" \/>\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=\"XTIVIA\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/\"},\"author\":{\"name\":\"XTIVIA\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1\"},\"headline\":\"SQL Server 2022 Release &#8211; What Are We Excited About?\",\"datePublished\":\"2022-11-16T18:23:43+00:00\",\"dateModified\":\"2022-11-16T18:36:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/\"},\"wordCount\":1414,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/SQL-Server-2022-What-Are-We-Excited-About.jpg\",\"keywords\":[\"sql server\",\"sql server 2022\"],\"articleSection\":[\"Blog\",\"SQL Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/\",\"url\":\"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/\",\"name\":\"SQL Server 2022 Release - What Are We Excited About?\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/SQL-Server-2022-What-Are-We-Excited-About.jpg\",\"datePublished\":\"2022-11-16T18:23:43+00:00\",\"dateModified\":\"2022-11-16T18:36:01+00:00\",\"description\":\"With the SQL Server 2022 release for mainstream, we checked in with our DBAs to see what they are most excited about in the new version.\",\"breadcrumb\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/#primaryimage\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/SQL-Server-2022-What-Are-We-Excited-About.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/SQL-Server-2022-What-Are-We-Excited-About.jpg\",\"width\":557,\"height\":291,\"caption\":\"SQL Server 2022 - What Are We Excited About\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtual-dba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL Server 2022 Release &#8211; What Are We Excited About?\"}]},{\"@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\/2d86f74bed0c3f1b49100f7fdf7d78d1\",\"name\":\"XTIVIA\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g\",\"caption\":\"XTIVIA\"},\"url\":\"https:\/\/virtual-dba.com\/author\/xtivia\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"SQL Server 2022 Release - What Are We Excited About?","description":"With the SQL Server 2022 release for mainstream, we checked in with our DBAs to see what they are most excited about in the new version.","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\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/","og_locale":"en_US","og_type":"article","og_title":"SQL Server 2022 Release - What Are We Excited About?","og_description":"With the SQL Server 2022 release for mainstream, we checked in with our DBAs to see what they are most excited about in the new version.","og_url":"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/","og_site_name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","article_published_time":"2022-11-16T18:23:43+00:00","article_modified_time":"2022-11-16T18:36:01+00:00","og_image":[{"width":557,"height":291,"url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/SQL-Server-2022-What-Are-We-Excited-About.jpg","type":"image\/jpeg"}],"author":"XTIVIA","twitter_card":"summary_large_image","twitter_creator":"@virtual_dba","twitter_site":"@virtual_dba","twitter_misc":{"Written by":"XTIVIA","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/#article","isPartOf":{"@id":"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/"},"author":{"name":"XTIVIA","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1"},"headline":"SQL Server 2022 Release &#8211; What Are We Excited About?","datePublished":"2022-11-16T18:23:43+00:00","dateModified":"2022-11-16T18:36:01+00:00","mainEntityOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/"},"wordCount":1414,"commentCount":0,"publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/SQL-Server-2022-What-Are-We-Excited-About.jpg","keywords":["sql server","sql server 2022"],"articleSection":["Blog","SQL Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/","url":"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/","name":"SQL Server 2022 Release - What Are We Excited About?","isPartOf":{"@id":"https:\/\/virtual-dba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/#primaryimage"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/SQL-Server-2022-What-Are-We-Excited-About.jpg","datePublished":"2022-11-16T18:23:43+00:00","dateModified":"2022-11-16T18:36:01+00:00","description":"With the SQL Server 2022 release for mainstream, we checked in with our DBAs to see what they are most excited about in the new version.","breadcrumb":{"@id":"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/#primaryimage","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/SQL-Server-2022-What-Are-We-Excited-About.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/SQL-Server-2022-What-Are-We-Excited-About.jpg","width":557,"height":291,"caption":"SQL Server 2022 - What Are We Excited About"},{"@type":"BreadcrumbList","@id":"https:\/\/virtual-dba.com\/blog\/sql-server\/sql-server-2022-release-what-are-we-excited-about\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtual-dba.com\/"},{"@type":"ListItem","position":2,"name":"SQL Server 2022 Release &#8211; What Are We Excited About?"}]},{"@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\/2d86f74bed0c3f1b49100f7fdf7d78d1","name":"XTIVIA","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g","caption":"XTIVIA"},"url":"https:\/\/virtual-dba.com\/author\/xtivia\/"}]}},"_links":{"self":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/240983","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\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/comments?post=240983"}],"version-history":[{"count":0,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/240983\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media\/240991"}],"wp:attachment":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media?parent=240983"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/categories?post=240983"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/tags?post=240983"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}