{"id":240988,"date":"2022-11-21T14:28:28","date_gmt":"2022-11-21T21:28:28","guid":{"rendered":"https:\/\/virtual-dba.com\/?p=240988"},"modified":"2022-11-28T09:28:51","modified_gmt":"2022-11-28T16:28:51","slug":"page-splits-and-how-to-optimize-index-space","status":"publish","type":"post","link":"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/","title":{"rendered":"Page Splits and How to Optimize Index Space in SQL Server"},"content":{"rendered":"\n<p>If you&#8217;re noticing a significant drop in performance, as well as frequent index fragmentation, you might have an issue with page splits, especially if your fill factor is set to default on all of your indexes.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Are Page Splits?<\/h2>\n\n\n\n<p>Page splits occur when there is insufficient free space on a data page to insert or update data. During a page split, SQL Server takes a percentage of the data and puts it on a new data page before inserting or updating the new value.<\/p>\n\n\n\n<p>To illustrate this, imagine that you have a set of bookshelves filled with books arranged alphabetically, and you need to add a book that starts with &#8220;M&#8221;. Let&#8217;s say it&#8217;s supposed to go in the middle of one of the shelves. Since the shelves are completely filled and you want to keep the books in alphabetical order, you take out about half the books\u2014including the ones that start with &#8220;M&#8221;\u2014on this particular shelf, put them on a new shelf, and add the new book there. Now, you have an extra shelf that&#8217;s only half full, along with one of the existing shelves that&#8217;s also only half full.<\/p>\n\n\n\n<p>Imagine doing this many, many, <em>many <\/em>times. It costs time and energy (you&#8217;re probably exhausted just thinking about this analogy), plus valuable storage since there is a whole lot of wasted space on those half-full shelves. In addition, you can&#8217;t even put the new shelves where they&#8217;re &#8220;supposed&#8221; to go, since the shelves can&#8217;t be moved around, only added at the end of the row.<\/p>\n\n\n\n<p>This is how page splits work and how they can lead to index fragmentation (since the data is being moved around and inevitably becomes out of order).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How Can I Identify If Page Splits Are the Problem?<\/h2>\n\n\n\n<p>There are a couple of counters in Perfmon that can help, namely <strong>SQLServer:Access Methods\\Page Splits\/sec<\/strong> and <strong>SQLServer:SQL Statistics\\Batch Requests\/sec<\/strong>. Both of these should be run at the same time, as the latter metric is a helpful baseline for the former; the number of page splits per second should not exceed 20% of the number of batch requests per second.<\/p>\n\n\n\n<p>Other factors that need to be considered include workload, workload type, table size, and fill factor for the affected index(es). For example, workloads that are heavy in INSERT and UPDATE statements are much more likely to cause page splits, and larger tables will naturally have more page splits since more data pages need to be changed. Finally, indexes with a default fill factor of 100 do not have enough free space for changes when they fill up, so page splits will naturally occur.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How Can I Fix Page Splits?<\/h2>\n\n\n\n<p>The easiest way to fix page splits is to set a fill factor value (for instance, 90) when the offending index is rebuilt. If a fill factor is not set, SQL Server uses the server-level default, which is 100 (this default can be changed, however).<\/p>\n\n\n\n<p>What is a good value for fill factor? It depends, among other things, on the types of workloads that are regularly run, the type of environment itself, and the client&#8217;s unique needs. If the fill factor is set too high, page splits can occur, but if the fill factor is set too low, SQL Server will create new data pages more often, which can lead to wasted storage, especially on larger databases, and can lead to performance issues as well. The key is finding the right balance, which can take a lot of trial and error. However, the performance benefit will definitely be worth it.<\/p>\n\n\n\n<p>For more information or any questions about page splits and how they work, please <a href=\"https:\/\/virtual-dba.com\/contact-us\/\">get in touch with us<\/a>. You can also find more information on <a href=\"https:\/\/virtual-dba.com\/?s=sql+server\">SQL Server here<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you&#8217;re noticing a significant drop in performance, as well as frequent index fragmentation, you might have an issue with page splits, especially if your fill factor is set to default on all of your indexes. What Are Page Splits? Page splits occur when there is insufficient free space on a data page to insert [&hellip;]<\/p>\n","protected":false},"author":50,"featured_media":241003,"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":[3492,60,4134],"class_list":["post-240988","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-sql-server","tag-indexes","tag-sql-server","tag-sql-server-performance-tuning"],"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>Page Splits and How to Optimize Index Space<\/title>\n<meta name=\"description\" content=\"An overview of page splits, what they are, and how they can fix significant drops in performance and frequent index fragmentation.\" \/>\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\/page-splits-and-how-to-optimize-index-space\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Page Splits and How to Optimize Index Space in SQL Server\" \/>\n<meta property=\"og:description\" content=\"An overview of page splits, what they are, and how they can fix significant drops in performance and frequent index fragmentation.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/\" \/>\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-21T21:28:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-11-28T16:28:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Page-Splits-and-How-to-Optimize-Index-Space.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=\"Faryl O&#039;Neil\" \/>\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=\"Faryl O&#039;Neil\" \/>\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\/page-splits-and-how-to-optimize-index-space\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/\"},\"author\":{\"name\":\"Faryl O'Neil\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/f7fc8e8f01bc1cb3cef748ce193d755d\"},\"headline\":\"Page Splits and How to Optimize Index Space in SQL Server\",\"datePublished\":\"2022-11-21T21:28:28+00:00\",\"dateModified\":\"2022-11-28T16:28:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/\"},\"wordCount\":647,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Page-Splits-and-How-to-Optimize-Index-Space.jpg\",\"keywords\":[\"Indexes\",\"sql server\",\"sql server performance tuning\"],\"articleSection\":[\"Blog\",\"SQL Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/\",\"url\":\"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/\",\"name\":\"Page Splits and How to Optimize Index Space\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Page-Splits-and-How-to-Optimize-Index-Space.jpg\",\"datePublished\":\"2022-11-21T21:28:28+00:00\",\"dateModified\":\"2022-11-28T16:28:51+00:00\",\"description\":\"An overview of page splits, what they are, and how they can fix significant drops in performance and frequent index fragmentation.\",\"breadcrumb\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/#primaryimage\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Page-Splits-and-How-to-Optimize-Index-Space.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Page-Splits-and-How-to-Optimize-Index-Space.jpg\",\"width\":557,\"height\":291,\"caption\":\"Page Splits and How to Optimize Index Space\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtual-dba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Page Splits and How to Optimize Index Space in SQL Server\"}]},{\"@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\/f7fc8e8f01bc1cb3cef748ce193d755d\",\"name\":\"Faryl O'Neil\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/2e37fe76099ac1edf1eab17f3b5731ebbca5cab2adec19e2ae49dfed91e16d63?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/2e37fe76099ac1edf1eab17f3b5731ebbca5cab2adec19e2ae49dfed91e16d63?s=96&d=mm&r=g\",\"caption\":\"Faryl O'Neil\"},\"url\":\"https:\/\/virtual-dba.com\/author\/faryl-oneil\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Page Splits and How to Optimize Index Space","description":"An overview of page splits, what they are, and how they can fix significant drops in performance and frequent index fragmentation.","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\/page-splits-and-how-to-optimize-index-space\/","og_locale":"en_US","og_type":"article","og_title":"Page Splits and How to Optimize Index Space in SQL Server","og_description":"An overview of page splits, what they are, and how they can fix significant drops in performance and frequent index fragmentation.","og_url":"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/","og_site_name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","article_published_time":"2022-11-21T21:28:28+00:00","article_modified_time":"2022-11-28T16:28:51+00:00","og_image":[{"width":557,"height":291,"url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Page-Splits-and-How-to-Optimize-Index-Space.jpg","type":"image\/jpeg"}],"author":"Faryl O'Neil","twitter_card":"summary_large_image","twitter_creator":"@virtual_dba","twitter_site":"@virtual_dba","twitter_misc":{"Written by":"Faryl O'Neil","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/#article","isPartOf":{"@id":"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/"},"author":{"name":"Faryl O'Neil","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/f7fc8e8f01bc1cb3cef748ce193d755d"},"headline":"Page Splits and How to Optimize Index Space in SQL Server","datePublished":"2022-11-21T21:28:28+00:00","dateModified":"2022-11-28T16:28:51+00:00","mainEntityOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/"},"wordCount":647,"commentCount":0,"publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Page-Splits-and-How-to-Optimize-Index-Space.jpg","keywords":["Indexes","sql server","sql server performance tuning"],"articleSection":["Blog","SQL Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/","url":"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/","name":"Page Splits and How to Optimize Index Space","isPartOf":{"@id":"https:\/\/virtual-dba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/#primaryimage"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Page-Splits-and-How-to-Optimize-Index-Space.jpg","datePublished":"2022-11-21T21:28:28+00:00","dateModified":"2022-11-28T16:28:51+00:00","description":"An overview of page splits, what they are, and how they can fix significant drops in performance and frequent index fragmentation.","breadcrumb":{"@id":"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/#primaryimage","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Page-Splits-and-How-to-Optimize-Index-Space.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Page-Splits-and-How-to-Optimize-Index-Space.jpg","width":557,"height":291,"caption":"Page Splits and How to Optimize Index Space"},{"@type":"BreadcrumbList","@id":"https:\/\/virtual-dba.com\/blog\/sql-server\/page-splits-and-how-to-optimize-index-space\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtual-dba.com\/"},{"@type":"ListItem","position":2,"name":"Page Splits and How to Optimize Index Space in SQL Server"}]},{"@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\/f7fc8e8f01bc1cb3cef748ce193d755d","name":"Faryl O'Neil","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/2e37fe76099ac1edf1eab17f3b5731ebbca5cab2adec19e2ae49dfed91e16d63?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2e37fe76099ac1edf1eab17f3b5731ebbca5cab2adec19e2ae49dfed91e16d63?s=96&d=mm&r=g","caption":"Faryl O'Neil"},"url":"https:\/\/virtual-dba.com\/author\/faryl-oneil\/"}]}},"_links":{"self":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/240988","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\/50"}],"replies":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/comments?post=240988"}],"version-history":[{"count":0,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/240988\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media\/241003"}],"wp:attachment":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media?parent=240988"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/categories?post=240988"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/tags?post=240988"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}