{"id":34599,"date":"2018-01-16T10:00:52","date_gmt":"2018-01-16T17:00:52","guid":{"rendered":"https:\/\/virtual-dba.com\/?p=34599"},"modified":"2021-02-10T18:09:14","modified_gmt":"2021-02-11T01:09:14","slug":"symmetricds-vs-sql-server-merge-replication","status":"publish","type":"post","link":"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/","title":{"rendered":"SymmetricDS Vs. SQL Server Merge Replication"},"content":{"rendered":"\n[et_pb_section admin_label=&#8221;section&#8221;]\n\t\t[et_pb_row admin_label=&#8221;row&#8221;]\n\t\t\t[et_pb_column type=&#8221;4_4&#8243;]\n\t\t\t\t[et_pb_text admin_label=&#8221;Text&#8221;]\n\t\t\t\t\t<p>The most concerning issue with SQL Server merge replication is that it is not adequately designed to scale past a very small amount of subscribed instances.<\/p> \r\n\r\n<p>From a DBA&#8217;s perspective, we find merge replication the least desirable of the Microsoft replication technologies. The main reasons for this are the lack of scalability because of poor management tools and the time it takes to restore the replication when there is a problem that requires the deletion and recreation of the publication to resolve errors. In addition to this, we also dislike that it modifies the physical data structure of the table to add a GUID to each row.<\/p>\r\n \r\n<p>Microsoft focused its efforts on SQL Server technology and supporting the latest replication technology AlwaysOn, leaving the basic replication options intact however limited, still with no effort being put into making them better. Unfortunately, AlwaysOn is only attempting to replace traditional mirroring and log shipping scenarios, and would not be an appropriate technology for a Merge replication scenario. This has been a constant theme with every version of SQL Server to date.<\/p>\r\n \r\n<p>SymmetricDS is not focused on the SQL Server engine and it is in fact data agnostic, meaning the software doesn&#8217;t really care what platform the data is in any replication scenario that it is used for. Because of the focus on replication, the management tools and implementation are much better thought out than in SQL Server. This is especially true for Merge replication scenarios.<\/p> \r\n\r\n<p>The SymmetricDS management console is a web-based interface, backed by an apache web service. The management console not only shows pertinent details about the status of your replication architecture but is also the portal in which you configure and modify your replication configuration. It is much more detailed than SQL Server offerings. Merge replication targets that are offline for a long period of time in SQL Server do not pick up where they left off and must be re-initialized which can often require manual intervention and the restoration of the target database. SymmetricDS stores all the changes that have been made during the time the target is offline and deploys them once it does come back online.<\/p>\r\n\r\n<p>Conflict resolution is at the heart of keeping data consistent. SQL Server does support some customizable conflict resolution, SymmetricDS expands on this and adds even more options and customizability through its management console.<\/p> \r\n<p>Implementation does not require modification to replicated table structures like SQL Server does. SQL Server merge replication relies on adding a GUID column to your tables in order to track changes. This can be resource intensive on storage and adds extra complexity where it is not needed. SymmetricDS uses a trigger based system so that when data changes do occur they are captured in real-time and stored until transmitted.<\/p>\r\n\r\n<p>Lastly, the product scales the replication configuration much easier than SQL Server, and adding more nodes to the system doesn&#8217;t add the additional management overhead that occurs in SQL Server. After creating an empty database or restoring the latest backup, setting up a new node is really simple in the SymmetricDS management console. While it does not create the database or its table structure, the software will perform an initial load to ensure that the replicated objects are the same. Managing 20 nodes isn&#8217;t much more difficult to manage than a single node replication scenario.<\/p> \r\n\r\n<p>SymmetricDS may not be the best solution for all situations, but in any situation where there is a complex merge replication architecture, I would make it my first choice. In a scenario where it is a single source and a single target, nothing is going to beat SQL Server replication. When there is a single source and multiple targets SymmetricDS is a much better replication tool. While there is an additional cost associated with solution, that cost will be offset by the man-hours saved troubleshooting and managing traditional merge replication configuration.<\/p> \n\t\t\t\t[\/et_pb_text]\n\t\t\t[\/et_pb_column]\n\t\t[\/et_pb_row]\n\t[\/et_pb_section]\n","protected":false},"excerpt":{"rendered":"<p>The most concerning issue with SQL Server merge replication is that it is not adequately designed to scale past a very small amount of subscribed instances. From a DBA&#8217;s perspective, we find merge replication the least desirable of the Microsoft replication technologies. The main reasons for this are the lack of scalability because of poor [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":34603,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"on","_et_pb_old_content":"<p>The most concerning issue with SQL Server merge replication is that it is not adequately designed to scale past a very small amount of subscribed instances.<\/p> \r\n\r\n<p>From a DBA's perspective, we find merge replication the least desirable of the Microsoft replication technologies. The main reasons for this are the lack of scalability because of poor management tools and the time it takes to restore the replication when there is a problem that requires the deletion and recreation of the publication to resolve errors. In addition to this, we also dislike that it modifies the physical data structure of the table to add a GUID to each row.<\/p>\r\n \r\n<p>Microsoft focused its efforts on SQL Server technology and supporting the latest replication technology AlwaysOn, leaving the basic replication options intact however limited, still with no effort being put into making them better. Unfortunately, AlwaysOn is only attempting to replace traditional mirroring and log shipping scenarios, and would not be an appropriate technology for a Merge replication scenario. This has been a constant theme with every version of SQL Server to date.<\/p>\r\n \r\n<p>SymmetricDS is not focused on the SQL Server engine and it is in fact data agnostic, meaning the software doesn't really care what platform the data is in any replication scenario that it is used for. Because of the focus on replication, the management tools and implementation are much better thought out than in SQL Server. This is especially true for Merge replication scenarios.<\/p> \r\n\r\n<p>The SymmetricDS management console is a web-based interface, backed by an apache web service. The management console not only shows pertinent details about the status of your replication architecture but is also the portal in which you configure and modify your replication configuration. It is much more detailed than SQL Server offerings. Merge replication targets that are offline for a long period of time in SQL Server do not pick up where they left off and must be re-initialized which can often require manual intervention and the restoration of the target database. SymmetricDS stores all the changes that have been made during the time the target is offline and deploys them once it does come back online.<\/p>\r\n\r\n<p>Conflict resolution is at the heart of keeping data consistent. SQL Server does support some customizable conflict resolution, SymmetricDS expands on this and adds even more options and customizability through its management console.<\/p> \r\n<p>Implementation does not require modification to replicated table structures like SQL Server does. SQL Server merge replication relies on adding a GUID column to your tables in order to track changes. This can be resource intensive on storage and adds extra complexity where it is not needed. SymmetricDS uses a trigger based system so that when data changes do occur they are captured in real-time and stored until transmitted.<\/p>\r\n\r\n<p>Lastly, the product scales the replication configuration much easier than SQL Server, and adding more nodes to the system doesn't add the additional management overhead that occurs in SQL Server. After creating an empty database or restoring the latest backup, setting up a new node is really simple in the SymmetricDS management console. While it does not create the database or its table structure, the software will perform an initial load to ensure that the replicated objects are the same. Managing 20 nodes isn't much more difficult to manage than a single node replication scenario.<\/p> \r\n\r\n<p>SymmetricDS may not be the best solution for all situations, but in any situation where there is a complex merge replication architecture, I would make it my first choice. In a scenario where it is a single source and a single target, nothing is going to beat SQL Server replication. When there is a single source and multiple targets SymmetricDS is a much better replication tool. While there is an additional cost associated with solution, that cost will be offset by the man-hours saved troubleshooting and managing traditional merge replication configuration.<\/p> ","_et_gb_content_width":"","content-type":"","footnotes":""},"categories":[4166,55],"tags":[3577,60,3578],"class_list":["post-34599","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-sql-server","tag-merge-replication","tag-sql-server","tag-symmetricds"],"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>SymmetricDS Vs. Microsoft SQL Server Merge Replication<\/title>\n<meta name=\"description\" content=\"Learn what&#039;s best, SymmetricDS Vs. Microsoft SQL Server Merge Replication for Your Merge Replication Project. Contact us for more help today!\" \/>\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\/symmetricds-vs-sql-server-merge-replication\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SymmetricDS Vs. SQL Server Merge Replication\" \/>\n<meta property=\"og:description\" content=\"Learn what&#039;s best, SymmetricDS Vs. Microsoft SQL Server Merge Replication for Your Merge Replication Project. Contact us for more help today!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/\" \/>\n<meta property=\"og:site_name\" content=\"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\" \/>\n<meta property=\"article:published_time\" content=\"2018-01-16T17:00:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-02-11T01:09:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/virtual-dba.com\/media\/SymmetricDS-vs-SQL-Server-Merge-Replication.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=\"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\/symmetricds-vs-sql-server-merge-replication\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/\"},\"author\":{\"name\":\"XTIVIA\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1\"},\"headline\":\"SymmetricDS Vs. SQL Server Merge Replication\",\"datePublished\":\"2018-01-16T17:00:52+00:00\",\"dateModified\":\"2021-02-11T01:09:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/\"},\"wordCount\":691,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/SymmetricDS-vs-SQL-Server-Merge-Replication.jpg\",\"keywords\":[\"Merge Replication\",\"sql server\",\"SymmetricDS\"],\"articleSection\":[\"Blog\",\"SQL Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/\",\"url\":\"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/\",\"name\":\"SymmetricDS Vs. Microsoft SQL Server Merge Replication\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/SymmetricDS-vs-SQL-Server-Merge-Replication.jpg\",\"datePublished\":\"2018-01-16T17:00:52+00:00\",\"dateModified\":\"2021-02-11T01:09:14+00:00\",\"description\":\"Learn what's best, SymmetricDS Vs. Microsoft SQL Server Merge Replication for Your Merge Replication Project. Contact us for more help today!\",\"breadcrumb\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/#primaryimage\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/SymmetricDS-vs-SQL-Server-Merge-Replication.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/SymmetricDS-vs-SQL-Server-Merge-Replication.jpg\",\"width\":557,\"height\":291},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtual-dba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SymmetricDS Vs. SQL Server Merge Replication\"}]},{\"@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":"SymmetricDS Vs. Microsoft SQL Server Merge Replication","description":"Learn what's best, SymmetricDS Vs. Microsoft SQL Server Merge Replication for Your Merge Replication Project. Contact us for more help today!","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\/symmetricds-vs-sql-server-merge-replication\/","og_locale":"en_US","og_type":"article","og_title":"SymmetricDS Vs. SQL Server Merge Replication","og_description":"Learn what's best, SymmetricDS Vs. Microsoft SQL Server Merge Replication for Your Merge Replication Project. Contact us for more help today!","og_url":"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/","og_site_name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","article_published_time":"2018-01-16T17:00:52+00:00","article_modified_time":"2021-02-11T01:09:14+00:00","og_image":[{"width":557,"height":291,"url":"https:\/\/virtual-dba.com\/media\/SymmetricDS-vs-SQL-Server-Merge-Replication.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":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/#article","isPartOf":{"@id":"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/"},"author":{"name":"XTIVIA","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1"},"headline":"SymmetricDS Vs. SQL Server Merge Replication","datePublished":"2018-01-16T17:00:52+00:00","dateModified":"2021-02-11T01:09:14+00:00","mainEntityOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/"},"wordCount":691,"commentCount":0,"publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/SymmetricDS-vs-SQL-Server-Merge-Replication.jpg","keywords":["Merge Replication","sql server","SymmetricDS"],"articleSection":["Blog","SQL Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/","url":"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/","name":"SymmetricDS Vs. Microsoft SQL Server Merge Replication","isPartOf":{"@id":"https:\/\/virtual-dba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/#primaryimage"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/SymmetricDS-vs-SQL-Server-Merge-Replication.jpg","datePublished":"2018-01-16T17:00:52+00:00","dateModified":"2021-02-11T01:09:14+00:00","description":"Learn what's best, SymmetricDS Vs. Microsoft SQL Server Merge Replication for Your Merge Replication Project. Contact us for more help today!","breadcrumb":{"@id":"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/#primaryimage","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/SymmetricDS-vs-SQL-Server-Merge-Replication.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/SymmetricDS-vs-SQL-Server-Merge-Replication.jpg","width":557,"height":291},{"@type":"BreadcrumbList","@id":"https:\/\/virtual-dba.com\/blog\/symmetricds-vs-sql-server-merge-replication\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtual-dba.com\/"},{"@type":"ListItem","position":2,"name":"SymmetricDS Vs. SQL Server Merge Replication"}]},{"@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\/34599","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=34599"}],"version-history":[{"count":0,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/34599\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media\/34603"}],"wp:attachment":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media?parent=34599"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/categories?post=34599"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/tags?post=34599"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}