{"id":35249,"date":"2018-11-15T10:07:00","date_gmt":"2018-11-15T17:07:00","guid":{"rendered":"https:\/\/virtual-dba.com\/?p=35249"},"modified":"2021-02-10T18:07:46","modified_gmt":"2021-02-11T01:07:46","slug":"linked-server-push-pull","status":"publish","type":"post","link":"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/","title":{"rendered":"Linked Server Push Pull Blog"},"content":{"rendered":"<p>There are times when a Developer or DBA needs to determine the best performance options with transferring data through a linked server from point A to point B but may not know the best way to do it. In the following example, I am going to show you the differences between a PUSH and PULL process through linked server and how SQL Server processes the workload. This example uses the AdventureWorksDW2017 database and the FactInternetSales table.<\/p>\n<p>To know the difference between the PUSH and or PULL method the main differences are where you are running your statement from and how you are using your syntax.<\/p>\n<h2>The <strong>PUSH<\/strong> method:<\/h2>\n<p>With this process, you going to INSERT the data into the Linked server. You can see an example of this below. Notice that it is doing the INSERT INTO through the linked server by placing the linked server string in the INSERT INTO portion. The statement is executed from where the base table is and selecting the data from.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/push_method_1.jpg\" alt=\"Push Method\" width=\"815\" height=\"193\" class=\"alignnone size-full wp-image-35254\"><\/p>\n<h2>The <strong>PULL<\/strong> Method:<\/h2>\n<p>With this method, you are inserting the data from a SELECT through the linked server. The linked server string information is placed in the FROM clause. The statement is being run from the server where you are inserting the data.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/pull_method_2.jpg\" alt=\"Pull Method\" width=\"811\" height=\"151\" class=\"alignnone size-full wp-image-35253\"><\/p>\n<p>Looking at how this works below, you can see that the first query is using the PUSH method and the query to the right is using essentially the same INSERT query but using the PULL method instead of Pushing it as the first does. Digging into the details with Client Statistics, you can see that the Query Profile Statistics are basically doing the same thing between the two of them. They have the same amount of statements, rows affected, transactions, etc. Things change when we start looking at the Network Statistics, but I think that can be expected by the methods that we are doing. Depending on if we are pushing or pulling also depends on how the data moves through the connections, which put the majority of the work on one side or the other, so this can be expected. You can see this in more detail by looking at the execution plan below and the differences in the execution plan and how it is processing the &#8220;remote&#8221; portions of the execution plans. Here is where it starts getting good. For the ones who need this data, they don&#8217;t really care about the number of packets and round trips that it takes, even though that does have an effect on the overall process. They just care about the time that it takes and want it as soon as they can get it. Completely understandable. Looking at the Time Statistics, we can start seeing major differences between the two. Even though the Client Processing time is doubled for the PULL method, the Total Execution Plan is a 13% of what the PUSH method is doing.<\/p>\n<p>What does it mean in terms of actual numbers?<\/p>\n<p>Looking at Query Windows between the two, you can see that the PUSH is taking 17 seconds and the PULL is only taking 2 seconds. Yes, this is a very basic query, but just think what happens when you start adding complexity with JOINS and other CONDITIONS&#8230;<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/joins_conditions_3.jpg\" alt=\"Joins Conditions\" width=\"1600\" height=\"591\" class=\"alignnone size-full wp-image-35251\"><\/p>\n<p>Now let&#8217;s look at the Execution Plans between the two and how the SQL Engine determines what it needs to do to make it all happen. The PUSH method is using a &#8220;Remote Insert&#8221; with the use of a Clustered Index Scan utilizing 91% of the load. Scans are not always good and they are not always bad. In this case, we are not using any conditions that reference the clustered index but you can see how it is putting most of the workload on the scan at 91%. With the PULL method, you can see that it is using a &#8220;Remote Query&#8221; which does not have the performance impact that the remote insert does. The cost for the Remote Query is at 65% and further balanced out with a Clustered Index Search at 35%. The workload in this execution plan is more balanced throughout the entire process.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/client_statistics_4.jpg\" alt=\"\" width=\"1600\" height=\"592\" class=\"alignnone size-full wp-image-35250\"><\/p>\n<p>With this example, you can see the evidence in the Client Statistics of how different SQL Server handles PUSH vs PULL through linked servers. Your situations may vary but you should find in most situations that the PULL method is less resource intensive and you should get better performance because of it.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>There are times when a Developer or DBA needs to determine the best performance options with transferring data through a linked server from point A to point B but may not know the best way to do it. In the following example, I am going to show you the differences between a PUSH and PULL [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":35258,"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":[4134],"class_list":["post-35249","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-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>Linked Server Push Pull Blog<\/title>\n<meta name=\"description\" content=\"This article covers performance related to inserting data from one instance to another through linked server by covering the differences between using the PUSH or PULL methods using Client Statistics and Execution Plans inside of SQL Server.\" \/>\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\/linked-server-push-pull\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Linked Server Push Pull Blog\" \/>\n<meta property=\"og:description\" content=\"This article covers performance related to inserting data from one instance to another through linked server by covering the differences between using the PUSH or PULL methods using Client Statistics and Execution Plans inside of SQL Server.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/\" \/>\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-11-15T17:07:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-02-11T01:07:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/virtual-dba.com\/media\/Linked-Server-Push-Pull-Blog.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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/\"},\"author\":{\"name\":\"XTIVIA\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1\"},\"headline\":\"Linked Server Push Pull Blog\",\"datePublished\":\"2018-11-15T17:07:00+00:00\",\"dateModified\":\"2021-02-11T01:07:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/\"},\"wordCount\":741,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Linked-Server-Push-Pull-Blog.jpg\",\"keywords\":[\"sql server performance tuning\"],\"articleSection\":[\"Blog\",\"SQL Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/\",\"url\":\"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/\",\"name\":\"Linked Server Push Pull Blog\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Linked-Server-Push-Pull-Blog.jpg\",\"datePublished\":\"2018-11-15T17:07:00+00:00\",\"dateModified\":\"2021-02-11T01:07:46+00:00\",\"description\":\"This article covers performance related to inserting data from one instance to another through linked server by covering the differences between using the PUSH or PULL methods using Client Statistics and Execution Plans inside of SQL Server.\",\"breadcrumb\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/#primaryimage\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Linked-Server-Push-Pull-Blog.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Linked-Server-Push-Pull-Blog.jpg\",\"width\":557,\"height\":291},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtual-dba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Linked Server Push Pull Blog\"}]},{\"@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":"Linked Server Push Pull Blog","description":"This article covers performance related to inserting data from one instance to another through linked server by covering the differences between using the PUSH or PULL methods using Client Statistics and Execution Plans inside of SQL Server.","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\/linked-server-push-pull\/","og_locale":"en_US","og_type":"article","og_title":"Linked Server Push Pull Blog","og_description":"This article covers performance related to inserting data from one instance to another through linked server by covering the differences between using the PUSH or PULL methods using Client Statistics and Execution Plans inside of SQL Server.","og_url":"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/","og_site_name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","article_published_time":"2018-11-15T17:07:00+00:00","article_modified_time":"2021-02-11T01:07:46+00:00","og_image":[{"width":557,"height":291,"url":"https:\/\/virtual-dba.com\/media\/Linked-Server-Push-Pull-Blog.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":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/#article","isPartOf":{"@id":"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/"},"author":{"name":"XTIVIA","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1"},"headline":"Linked Server Push Pull Blog","datePublished":"2018-11-15T17:07:00+00:00","dateModified":"2021-02-11T01:07:46+00:00","mainEntityOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/"},"wordCount":741,"commentCount":0,"publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Linked-Server-Push-Pull-Blog.jpg","keywords":["sql server performance tuning"],"articleSection":["Blog","SQL Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/","url":"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/","name":"Linked Server Push Pull Blog","isPartOf":{"@id":"https:\/\/virtual-dba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/#primaryimage"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Linked-Server-Push-Pull-Blog.jpg","datePublished":"2018-11-15T17:07:00+00:00","dateModified":"2021-02-11T01:07:46+00:00","description":"This article covers performance related to inserting data from one instance to another through linked server by covering the differences between using the PUSH or PULL methods using Client Statistics and Execution Plans inside of SQL Server.","breadcrumb":{"@id":"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/#primaryimage","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Linked-Server-Push-Pull-Blog.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Linked-Server-Push-Pull-Blog.jpg","width":557,"height":291},{"@type":"BreadcrumbList","@id":"https:\/\/virtual-dba.com\/blog\/linked-server-push-pull\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtual-dba.com\/"},{"@type":"ListItem","position":2,"name":"Linked Server Push Pull Blog"}]},{"@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\/35249","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=35249"}],"version-history":[{"count":0,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/35249\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media\/35258"}],"wp:attachment":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media?parent=35249"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/categories?post=35249"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/tags?post=35249"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}