{"id":242095,"date":"2024-01-18T15:29:42","date_gmt":"2024-01-18T22:29:42","guid":{"rendered":"https:\/\/virtual-dba.com\/?p=242095"},"modified":"2024-01-19T15:30:41","modified_gmt":"2024-01-19T22:30:41","slug":"online-table-redefinition-with-dbms_redefinition-in-oracle","status":"publish","type":"post","link":"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/","title":{"rendered":"Online Table Redefinition with dbms_redefinition in Oracle"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Understanding Online Table Redefinition<\/h2>\n\n\n\n<p>The dbms_redefinition process, known as Online Table Redefinition, is a process that transforms a table&#8217;s structure, allowing database administrators to make changes such as adding or removing columns, modifying data types, or altering storage attributes without requiring downtime. This is particularly useful for large and critical databases where minimizing disruption is essential.<\/p>\n\n\n\n<p>The key component for achieving this in the <a href=\"https:\/\/virtual-dba.com\/platforms\/oracle\/\">Oracle<\/a> Database is the dbms_redefinition package. This package provides a set of procedures and functions that streamline the online redefinition process.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Key Steps in Online Table Redefinition<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Prepare the Environment<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Before initiating the online redefinition, ensure that the database and the table are ready for the process. This includes checking for dependencies, disabling triggers or constraints that might affect the redefinition, and ensuring there is enough free space in the tablespaces.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Create the Interim Table with the dbms_redefinition Package<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The dbms_redefinition package facilitates the creation of an interim table, which will eventually replace the original table. This interim table is designed to accommodate the modified structure, and the data from the original table is continuously synchronized with it during the redefinition process.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Synchronize Data  with the dbms_redefinition Package<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The dbms_redefinition package offers procedures to keep the interim table in sync with the original table&#8217;s data. This ensures that any changes made to the original table during the redefinition process are reflected in the interim table.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Complete the Redefinition<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Once the data synchronization is complete, the dbms_redefinition package allows for the final switch, making the interim table the new official version of the table. This step finalizes the online table redefinition, and the original table is effectively replaced. This step will pause active transactions in Oracle 12.2 until the replacement is complete. Test the redefinition process with as close to a production workload as possible to get timings for the final step.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Advantages of Online Table Redefinition via dbms_redefinition<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Minimized Downtime<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>By allowing modifications to be made while the table remains accessible, online table redefinition significantly reduces downtime, enhancing overall system availability. Read the Oracle Database Administrator Guide for restrictions on using the dbms_redefinition package.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Consistent Data Access<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Users can continue accessing the table during the redefinition process, ensuring that business operations are not interrupted.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Flexibility and Efficiency  with the dbms_redefinition Package<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The dbms_redefinition package provides flexibility in making structural changes to tables, promoting efficient database management and adaptability.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Oracle Database&#8217;s dbms_redefinition package empowers database administrators to redefine tables online, offering a robust solution for making structural changes without disrupting critical business operations. Mastering the use of online table redefinition can contribute to a more resilient and efficient database management strategy, ensuring that your database remains both agile and available in the face of evolving requirements.\u00a0<\/p>\n\n\n\n<p>For any questions about Oracle or our <a href=\"https:\/\/virtual-dba.com\/professional-services\/database-management\/\">database management services<\/a>, please <a href=\"https:\/\/virtual-dba.com\/contact-us\/\">reach out<\/a> to us!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Understanding Online Table Redefinition The dbms_redefinition process, known as Online Table Redefinition, is a process that transforms a table&#8217;s structure, allowing database administrators to make changes such as adding or removing columns, modifying data types, or altering storage attributes without requiring downtime. This is particularly useful for large and critical databases where minimizing disruption is [&hellip;]<\/p>\n","protected":false},"author":67,"featured_media":242098,"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,3918,23],"tags":[4204,4195,1145,1146],"class_list":["post-242095","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-database","category-oracle","tag-database","tag-datamanagement","tag-oracle","tag-oracle-database"],"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>Online Table Redefinition with dbms_redefinition in Oracle<\/title>\n<meta name=\"description\" content=\"Master dbms_redefinition for Oracle: Minimize downtime and efficiently redefine tables online with Oracle Database&#039;s powerful package.\" \/>\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\/online-table-redefinition-with-dbms_redefinition-in-oracle\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Online Table Redefinition with dbms_redefinition in Oracle\" \/>\n<meta property=\"og:description\" content=\"Master dbms_redefinition for Oracle: Minimize downtime and efficiently redefine tables online with Oracle Database&#039;s powerful package.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/\" \/>\n<meta property=\"og:site_name\" content=\"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\" \/>\n<meta property=\"article:published_time\" content=\"2024-01-18T22:29:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-19T22:30:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Online-Table-Redefinition-with-dbms_redefinition-in-Oracle.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=\"Phil Stout\" \/>\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=\"Phil Stout\" \/>\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\/online-table-redefinition-with-dbms_redefinition-in-oracle\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/\"},\"author\":{\"name\":\"Phil Stout\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/3dec8f488001457c062072e3109893c2\"},\"headline\":\"Online Table Redefinition with dbms_redefinition in Oracle\",\"datePublished\":\"2024-01-18T22:29:42+00:00\",\"dateModified\":\"2024-01-19T22:30:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/\"},\"wordCount\":487,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Online-Table-Redefinition-with-dbms_redefinition-in-Oracle.jpg\",\"keywords\":[\"database\",\"datamanagement\",\"Oracle\",\"Oracle Database\"],\"articleSection\":[\"Blog\",\"Database\",\"Oracle\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/\",\"url\":\"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/\",\"name\":\"Online Table Redefinition with dbms_redefinition in Oracle\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Online-Table-Redefinition-with-dbms_redefinition-in-Oracle.jpg\",\"datePublished\":\"2024-01-18T22:29:42+00:00\",\"dateModified\":\"2024-01-19T22:30:41+00:00\",\"description\":\"Master dbms_redefinition for Oracle: Minimize downtime and efficiently redefine tables online with Oracle Database's powerful package.\",\"breadcrumb\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/#primaryimage\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Online-Table-Redefinition-with-dbms_redefinition-in-Oracle.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Online-Table-Redefinition-with-dbms_redefinition-in-Oracle.jpg\",\"width\":557,\"height\":291,\"caption\":\"Online Table Redefinition with dbms_redefinition in Oracle\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtual-dba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Online Table Redefinition with dbms_redefinition in Oracle\"}]},{\"@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\/3dec8f488001457c062072e3109893c2\",\"name\":\"Phil Stout\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/57f896666346aa54bc96ef926b5b5b5f6ad9bfeba9a997e40210075c462e2324?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/57f896666346aa54bc96ef926b5b5b5f6ad9bfeba9a997e40210075c462e2324?s=96&d=mm&r=g\",\"caption\":\"Phil Stout\"},\"url\":\"https:\/\/virtual-dba.com\/author\/phil-stout\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Online Table Redefinition with dbms_redefinition in Oracle","description":"Master dbms_redefinition for Oracle: Minimize downtime and efficiently redefine tables online with Oracle Database's powerful package.","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\/online-table-redefinition-with-dbms_redefinition-in-oracle\/","og_locale":"en_US","og_type":"article","og_title":"Online Table Redefinition with dbms_redefinition in Oracle","og_description":"Master dbms_redefinition for Oracle: Minimize downtime and efficiently redefine tables online with Oracle Database's powerful package.","og_url":"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/","og_site_name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","article_published_time":"2024-01-18T22:29:42+00:00","article_modified_time":"2024-01-19T22:30:41+00:00","og_image":[{"width":557,"height":291,"url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Online-Table-Redefinition-with-dbms_redefinition-in-Oracle.jpg","type":"image\/jpeg"}],"author":"Phil Stout","twitter_card":"summary_large_image","twitter_creator":"@virtual_dba","twitter_site":"@virtual_dba","twitter_misc":{"Written by":"Phil Stout","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/#article","isPartOf":{"@id":"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/"},"author":{"name":"Phil Stout","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/3dec8f488001457c062072e3109893c2"},"headline":"Online Table Redefinition with dbms_redefinition in Oracle","datePublished":"2024-01-18T22:29:42+00:00","dateModified":"2024-01-19T22:30:41+00:00","mainEntityOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/"},"wordCount":487,"commentCount":0,"publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Online-Table-Redefinition-with-dbms_redefinition-in-Oracle.jpg","keywords":["database","datamanagement","Oracle","Oracle Database"],"articleSection":["Blog","Database","Oracle"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/","url":"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/","name":"Online Table Redefinition with dbms_redefinition in Oracle","isPartOf":{"@id":"https:\/\/virtual-dba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/#primaryimage"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Online-Table-Redefinition-with-dbms_redefinition-in-Oracle.jpg","datePublished":"2024-01-18T22:29:42+00:00","dateModified":"2024-01-19T22:30:41+00:00","description":"Master dbms_redefinition for Oracle: Minimize downtime and efficiently redefine tables online with Oracle Database's powerful package.","breadcrumb":{"@id":"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/#primaryimage","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Online-Table-Redefinition-with-dbms_redefinition-in-Oracle.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Online-Table-Redefinition-with-dbms_redefinition-in-Oracle.jpg","width":557,"height":291,"caption":"Online Table Redefinition with dbms_redefinition in Oracle"},{"@type":"BreadcrumbList","@id":"https:\/\/virtual-dba.com\/blog\/online-table-redefinition-with-dbms_redefinition-in-oracle\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtual-dba.com\/"},{"@type":"ListItem","position":2,"name":"Online Table Redefinition with dbms_redefinition in Oracle"}]},{"@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\/3dec8f488001457c062072e3109893c2","name":"Phil Stout","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/57f896666346aa54bc96ef926b5b5b5f6ad9bfeba9a997e40210075c462e2324?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/57f896666346aa54bc96ef926b5b5b5f6ad9bfeba9a997e40210075c462e2324?s=96&d=mm&r=g","caption":"Phil Stout"},"url":"https:\/\/virtual-dba.com\/author\/phil-stout\/"}]}},"_links":{"self":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/242095","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\/67"}],"replies":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/comments?post=242095"}],"version-history":[{"count":0,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/242095\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media\/242098"}],"wp:attachment":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media?parent=242095"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/categories?post=242095"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/tags?post=242095"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}