{"id":29514,"date":"2017-03-14T08:00:38","date_gmt":"2017-03-14T15:00:38","guid":{"rendered":"https:\/\/virtual-dba.com\/?p=29514"},"modified":"2023-08-31T10:12:46","modified_gmt":"2023-08-31T17:12:46","slug":"sql-server-statistics-trace-flag-2371","status":"publish","type":"post","link":"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/","title":{"rendered":"SQL Server Statistics and Trace Flag 2371"},"content":{"rendered":"<p>SQL Server Statistics are small, lightweight objects that describe the distribution of data in a SQL Server table or column. The SQL Server query optimizer uses statistics to estimate how many rows will be returned by parts of your query. This heavily influences the optimizer and has a direct correlation to how well queries will run. The importance of proper statistics maintenance cannot be overstated.<\/p>\n<p>In versions of SQL Server prior to 2016, SQL Server would consider a statistic stale when any of the following has occurred:<\/p>\n<ul>\n<li>The table has gone from 0 rows to &gt; 0 rows<\/li>\n<li>The number of rows in a table were &lt; 500 when the statistics were gathered and the modification_counter has grown to more than 500 since the last update of the statistic2371,<\/li>\n<li>The table has more than 500 rows when the statistics were gathered and the modification counter is &gt; 20% of the row count + 500 since the statistic was gathered.<\/li>\n<\/ul>\n<p>Trace flag 2371 was first introduced in SQL 2008 R2 SP1 and has been turned on by default in SQL 2016 (with compatibility 130). Using trace flag 2371, SQL will now use a threshold that adjusts dynamically to the number of rows in the table to determine when statistics are stale. With this change, statistics in large tables are updated much more frequently.<\/p>\n<p>The following graph illustrates the difference in thresholds for determining when statistics are stale between older versions of SQL Server and 2016 or previous versions with TF 2371.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"577\" height=\"358\" class=\"aligncenter size-full wp-image-29516\" src=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/sql-server-chart.jpg\" alt=\"SQL Server Chart\" srcset=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/sql-server-chart.jpg 577w, https:\/\/virtual-dba.com\/wp-content\/uploads\/sql-server-chart-300x186.jpg 300w\" sizes=\"(max-width: 577px) 100vw, 577px\" \/><\/p>\n<p>This illustrates that a table with 1,000,000 rows will now only need 32,000 modifications before statistics are considered stale. Without the trace flag that same table would require 200,500 modifications before statistics would be considered out of date.<\/p>\n<p>This flag can be turned on and off without restarting SQL Server services by using:<br \/>\n<strong>&#8211; This change should be tested in a development environment prior to being implemented on a production system.<\/strong><\/p>\n<pre><code>DBCC TRACEON (2371,-1) \nDBCC TRACEOFF (2371,-1)<\/code><\/pre>\n<p>Be sure to add this as a startup parameter in the SQL Server configuration manager so the flag will persist after a services restart. Otherwise, it will not be re-enabled automatically.<\/p>\n<p>Trace flag 2371 is documented in KB2754171. It recommends that this trace flag be enabled if:<\/p>\n<ul>\n<li>You are running an SAP system. See SAP Blog for more info.<\/li>\n<li>You are running a nightly job to update statistics because current automatic updates are not triggered frequently enough.<\/li>\n<\/ul>\n<p>Querying <a href=\"https:\/\/technet.microsoft.com\/en-us\/library\/jj553546(v=sql.110).aspx\" target=\"_blank\" rel=\"noopener\">sys.dm_db_stats_properties<\/a> can help determine if larger tables could benefit from this more aggressive algorithm to update the statistics. A sample query for this table is:<\/p>\n<pre><code>SELECT     sp.stats_id\n        ,name\n        ,filter_definition\n        ,last_updated\n        ,rows\n        ,rows_sampled\n        ,steps\n        ,unfiltered_rows\n        ,modification_counter \nFROM sys.stats AS stat \nCROSS APPLY sys.dm_db_stats_properties(stat.object_id, stat.stats_id) AS sp\nWHERE stat.object_id = object_id('YOUR_TABLENAME_HERE');<\/code><\/pre>\n<p>While databases with large tables can see an improvement in query execution times by enabling this trace flag, there are some items to be aware of prior to enabling this on your production machine.<\/p>\n<ul>\n<li>The trace flag is global. This cannot be changed for a specific database, only instance wide.<\/li>\n<li>Synchronously updating stats can cause a query to wait while stats are updated. For large tables, this could take some time. Consider enabling the auto update stats async option to protect against this.<\/li>\n<\/ul>\n<p>Even though it does have the potential for an increase in I\/O as well as causing delays while statistics are updated on larger tables, the overall query performance should improve. This trace flag has been promoted to default behavior in SQL 2016 and should solve more problems than it creates. By keeping the statistics maintenance jobs at off-peak times, SQL will be less likely to auto update during peak hours. I fully recommend enabling this on your SQL server in addition to any current statistics maintenance jobs that are running.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>SQL Server Statistics are small, lightweight objects that describe the distribution of data in a SQL Server table or column. The SQL Server query optimizer uses statistics to estimate how many rows will be returned by parts of your query. This heavily influences the optimizer and has a direct correlation to how well queries will [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","content-type":"","footnotes":""},"categories":[4166,55],"tags":[60,1016,1868,1015],"class_list":["post-29514","post","type-post","status-publish","format-standard","hentry","category-blog","category-sql-server","tag-sql-server","tag-sql-server-statistics","tag-trace-flag","tag-trace-flag-2371"],"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>Microsoft SQL Server Statistics and Trace Flag 2371<\/title>\n<meta name=\"description\" content=\"In this blog we&#039;re going to show you all about Microsoft SQL Server Statistics and Trace Flag 2371 from our top SQL Server DBA experts.\" \/>\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-statistics-trace-flag-2371\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL Server Statistics and Trace Flag 2371\" \/>\n<meta property=\"og:description\" content=\"In this blog we&#039;re going to show you all about Microsoft SQL Server Statistics and Trace Flag 2371 from our top SQL Server DBA experts.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/\" \/>\n<meta property=\"og:site_name\" content=\"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\" \/>\n<meta property=\"article:published_time\" content=\"2017-03-14T15:00:38+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-31T17:12:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/sql-server-chart.jpg\" \/>\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=\"3 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-statistics-trace-flag-2371\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/\"},\"author\":{\"name\":\"XTIVIA\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1\"},\"headline\":\"SQL Server Statistics and Trace Flag 2371\",\"datePublished\":\"2017-03-14T15:00:38+00:00\",\"dateModified\":\"2023-08-31T17:12:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/\"},\"wordCount\":588,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/sql-server-chart.jpg\",\"keywords\":[\"sql server\",\"sql server statistics\",\"trace flag\",\"trace flag 2371\"],\"articleSection\":[\"Blog\",\"SQL Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/\",\"url\":\"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/\",\"name\":\"Microsoft SQL Server Statistics and Trace Flag 2371\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/sql-server-chart.jpg\",\"datePublished\":\"2017-03-14T15:00:38+00:00\",\"dateModified\":\"2023-08-31T17:12:46+00:00\",\"description\":\"In this blog we're going to show you all about Microsoft SQL Server Statistics and Trace Flag 2371 from our top SQL Server DBA experts.\",\"breadcrumb\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/#primaryimage\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/sql-server-chart.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/sql-server-chart.jpg\",\"width\":577,\"height\":358,\"caption\":\"SQL Server Chart\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtual-dba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL Server Statistics and Trace Flag 2371\"}]},{\"@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":"Microsoft SQL Server Statistics and Trace Flag 2371","description":"In this blog we're going to show you all about Microsoft SQL Server Statistics and Trace Flag 2371 from our top SQL Server DBA experts.","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-statistics-trace-flag-2371\/","og_locale":"en_US","og_type":"article","og_title":"SQL Server Statistics and Trace Flag 2371","og_description":"In this blog we're going to show you all about Microsoft SQL Server Statistics and Trace Flag 2371 from our top SQL Server DBA experts.","og_url":"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/","og_site_name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","article_published_time":"2017-03-14T15:00:38+00:00","article_modified_time":"2023-08-31T17:12:46+00:00","og_image":[{"url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/sql-server-chart.jpg","type":"","width":"","height":""}],"author":"XTIVIA","twitter_card":"summary_large_image","twitter_creator":"@virtual_dba","twitter_site":"@virtual_dba","twitter_misc":{"Written by":"XTIVIA","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/#article","isPartOf":{"@id":"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/"},"author":{"name":"XTIVIA","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1"},"headline":"SQL Server Statistics and Trace Flag 2371","datePublished":"2017-03-14T15:00:38+00:00","dateModified":"2023-08-31T17:12:46+00:00","mainEntityOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/"},"wordCount":588,"commentCount":0,"publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/sql-server-chart.jpg","keywords":["sql server","sql server statistics","trace flag","trace flag 2371"],"articleSection":["Blog","SQL Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/","url":"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/","name":"Microsoft SQL Server Statistics and Trace Flag 2371","isPartOf":{"@id":"https:\/\/virtual-dba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/#primaryimage"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/sql-server-chart.jpg","datePublished":"2017-03-14T15:00:38+00:00","dateModified":"2023-08-31T17:12:46+00:00","description":"In this blog we're going to show you all about Microsoft SQL Server Statistics and Trace Flag 2371 from our top SQL Server DBA experts.","breadcrumb":{"@id":"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/#primaryimage","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/sql-server-chart.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/sql-server-chart.jpg","width":577,"height":358,"caption":"SQL Server Chart"},{"@type":"BreadcrumbList","@id":"https:\/\/virtual-dba.com\/blog\/sql-server-statistics-trace-flag-2371\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtual-dba.com\/"},{"@type":"ListItem","position":2,"name":"SQL Server Statistics and Trace Flag 2371"}]},{"@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\/29514","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=29514"}],"version-history":[{"count":0,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/29514\/revisions"}],"wp:attachment":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media?parent=29514"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/categories?post=29514"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/tags?post=29514"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}