{"id":5673,"date":"2015-09-27T21:00:00","date_gmt":"2015-09-27T19:00:00","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-availability-groups-with-no-domain-dependencies\/"},"modified":"2015-09-27T21:00:00","modified_gmt":"2015-09-27T19:00:00","slug":"sql-server-2016-availability-groups-with-no-domain-dependencies","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-availability-groups-with-no-domain-dependencies\/","title":{"rendered":"SQL Server 2016 : availability groups with no domain dependencies"},"content":{"rendered":"<p>Are you aware about the new features of the next Windows version? Currently we\u2019re in TP3 and during my investigation, I was very happy to see the new features for Windows clustering (cf. this <a href=\"http:\/\/blogs.msdn.com\/b\/clustering\/archive\/2015\/08\/17\/10635825.aspx\">blog post<\/a> from Microsoft).<\/p>\n<p>By reading this article we can see:<\/p>\n<blockquote><p><strong><em>Workgroup Clusters: Clusters with nodes which are member servers \/ workgroup (not domain joined<\/em><\/strong><em>)<\/em><\/p><\/blockquote>\n<p>If you remember, Microsoft had introduced Active Directory-Detached Cluster feature with Windows 2012 but the dependency enhancement concerned only the network names. Unfortunately, we had to continue with domain accounts. Now Microsoft provides a complete Windows Failover Cluster architecture without domain dependencies and this is particularly interesting when we talk about SQL Server availability groups. Why? Because with the next version of SQL Server, it seems that we will be able to use availability groups in conjunction of the Windows Failover Cluster in a workgroup context. This is a very good news and we can begin to draw up some additional scenarios like DMZ or certainly others\u2026<\/p>\n<p>So I decided to install and test a basic environment that includes a SQL Server 2016 CTP2.3 on the top of the Windows 2016 TP3 in a workgroup environment. Let me show you the result.<\/p>\n<p>First, my two cluster nodes SQL161W and SQL162W are configured in a workgroup. In addition, according to the Microsoft blog post, I added the DNS suffix manually on each node as shown below:<\/p>\n<table>\n<tbody>\n<tr>\n<td>\u00a0<a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-64-1-first-node-cfg.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-4065\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-64-1-first-node-cfg.jpg\" alt=\"blog 64- 1 - first node cfg\" width=\"383\" height=\"132\" \/><\/a><\/td>\n<td><a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-64-2-second-node-cfg.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-4066\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-64-2-second-node-cfg.jpg\" alt=\"blog 64- 2 - second node cfg\" width=\"383\" height=\"132\" \/><\/a><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Let\u2019s switch on the DNS configuration. I simply added a primary forward lookup zone DNS as shown below:<\/p>\n<p><a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-64-3-dns.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-4067\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-64-3-dns.jpg\" alt=\"blog 64- 3 - dns\" width=\"678\" height=\"94\" \/><\/a><\/p>\n<p>The <em>dbi-services.workgroup<\/em> zone includes the following records related to the Microsoft Windows Cluster (WIN2016), the cluster nodes (SQL161W and SQL162W) and my availability group listener (lst-grp).<\/p>\n<p><a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-64-3-dns-records.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-4068\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-64-3-dns-records.jpg\" alt=\"blog 64- 3 - dns records\" width=\"493\" height=\"157\" \/><\/a><\/p>\n<p>Now, let\u2019s take a look at the cluster resources. Just to clarify here, we have to use the PowerShell cmdlets in this context. GUI is not suitable in this case.<\/p>\n<p><a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-64-5-cluster-resources.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-4069\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-64-5-cluster-resources.jpg\" alt=\"blog 64- 5 - cluster resources\" width=\"603\" height=\"195\" \/><\/a><\/p>\n<p>A classic configuration as you can notice. We have resources from the Windows Failover core resources as well as the availability groups (dummy resources).<\/p>\n<p>Go ahead and move on my availability group configuration (dummygrp). Here\u2019s a picture of my availability group from the Dashboard:<\/p>\n<p><a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-64-6-aag-dashboard.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-4070\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-64-6-aag-dashboard.jpg\" alt=\"blog 64- 6 - aag dashboard\" width=\"674\" height=\"424\" \/><\/a><\/p>\n<p>The trickiest part here was the configuration of the different endpoints. Indeed, in this scenario we have to configure the authentication with certificates (for those who already use mirroring architectures in workgroup or different domains, you know what I mean). So, it is necessary to configure correctly inbound and outbound connections for both replicas. Here\u2019s the definition script of one of my endpoint:<\/p>\n<pre class=\"brush: sql; gutter: true; first-line: 1\">CREATE ENDPOINT [Hadr_Endpoint] \nSTATE=STARTED\nAS TCP (\n\tLISTENER_PORT = 5022, \n\tLISTENER_IP = ALL\n)\nFOR DATA_MIRRORING \n(\n\tROLE = ALL, \n\tAUTHENTICATION = CERTIFICATE [hadr_sql161w_cert], \n\tENCRYPTION = REQUIRED ALGORITHM AES\n)\nGO<\/pre>\n<p>Finally,\u00a0 Let&#8217;s have a look at the SQL Server instances service accounts. I still use virtual accounts (NT SERVICE\\MSSQL$SQL16) on both replicas rather than domain accounts in usual scenarios.<\/p>\n<p><a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-64-7-service-account.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-4071\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-64-7-service-account.jpg\" alt=\"blog 64- 7 - service account\" width=\"639\" height=\"86\" \/><\/a><\/p>\n<p>But even if this new feature seems to be very interesting, we will have to deal with the following restrictions:<\/p>\n<ul>\n<li>Administering the Windows Failover Cluster can be only done by the PowerShell cmdlets. You cannot use the GUI here. System administrators, it\u2019s time to seriously learn PowerShell !<\/li>\n<li>We are in a domain-less environment so it means that we will not be able to use Kerberos and SQL Server authentication is recommended in this case. But in this context, this is not a big deal.<\/li>\n<li>The file share witness is not supported in this scenario, so you have no choice to use either a shared disk or a cloud witness (cf. my blog <a href=\"http:\/\/dbi-services.com\/blog\/windows-cluster-vnext-and-cloud-witness\/\">here<\/a>)<\/li>\n<\/ul>\n<p>An open point remains for the moment: Is this configuration supported with the previous versions of SQL Server? Well, the Microsoft blog post doesn\u2019t really provide a clue. I will update my blog when I get more info on this topic.<\/p>\n<p>See you<\/p>\n<p>By David Barbarin<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Are you aware about the new features of the next Windows version? Currently we\u2019re in TP3 and during my investigation, I was very happy to see the new features for Windows clustering (cf. this blog post from Microsoft). By reading this article we can see: Workgroup Clusters: Clusters with nodes which are member servers \/ [&hellip;]<\/p>\n","protected":false},"author":26,"featured_media":5681,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[229],"tags":[297,464,84,566,557],"type_dbi":[],"class_list":["post-5673","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-database-administration-monitoring","tag-availability-groups","tag-failover-cluster","tag-high-availability","tag-sql-server-2016","tag-windows-server-2016"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>SQL Server 2016 : availability groups with no domain dependencies<\/title>\n<meta name=\"description\" content=\"SQL Server 2016 : availability groups with no domain dependencies\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-availability-groups-with-no-domain-dependencies\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL Server 2016 : availability groups with no domain dependencies\" \/>\n<meta property=\"og:description\" content=\"SQL Server 2016 : availability groups with no domain dependencies\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-availability-groups-with-no-domain-dependencies\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2015-09-27T19:00:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-64-1-first-node-cfg-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"383\" \/>\n\t<meta property=\"og:image:height\" content=\"132\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Microsoft Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Microsoft Team\" \/>\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:\\\/\\\/www.dbi-services.com\\\/blog\\\/sql-server-2016-availability-groups-with-no-domain-dependencies\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/sql-server-2016-availability-groups-with-no-domain-dependencies\\\/\"},\"author\":{\"name\":\"Microsoft Team\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/bfab48333280d616e1170e7369df90a4\"},\"headline\":\"SQL Server 2016 : availability groups with no domain dependencies\",\"datePublished\":\"2015-09-27T19:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/sql-server-2016-availability-groups-with-no-domain-dependencies\\\/\"},\"wordCount\":622,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/sql-server-2016-availability-groups-with-no-domain-dependencies\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2022\\\/04\\\/blog-64-1-first-node-cfg-1.jpg\",\"keywords\":[\"Availability groups\",\"Failover cluster\",\"High availability\",\"SQL Server 2016\",\"windows server 2016\"],\"articleSection\":[\"Database Administration &amp; Monitoring\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/sql-server-2016-availability-groups-with-no-domain-dependencies\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/sql-server-2016-availability-groups-with-no-domain-dependencies\\\/\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/sql-server-2016-availability-groups-with-no-domain-dependencies\\\/\",\"name\":\"SQL Server 2016 : availability groups with no domain dependencies\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/sql-server-2016-availability-groups-with-no-domain-dependencies\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/sql-server-2016-availability-groups-with-no-domain-dependencies\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2022\\\/04\\\/blog-64-1-first-node-cfg-1.jpg\",\"datePublished\":\"2015-09-27T19:00:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/bfab48333280d616e1170e7369df90a4\"},\"description\":\"SQL Server 2016 : availability groups with no domain dependencies\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/sql-server-2016-availability-groups-with-no-domain-dependencies\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/sql-server-2016-availability-groups-with-no-domain-dependencies\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/sql-server-2016-availability-groups-with-no-domain-dependencies\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2022\\\/04\\\/blog-64-1-first-node-cfg-1.jpg\",\"contentUrl\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2022\\\/04\\\/blog-64-1-first-node-cfg-1.jpg\",\"width\":383,\"height\":132},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/sql-server-2016-availability-groups-with-no-domain-dependencies\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL Server 2016 : availability groups with no domain dependencies\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/bfab48333280d616e1170e7369df90a4\",\"name\":\"Microsoft Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g\",\"caption\":\"Microsoft Team\"},\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/author\\\/microsoft-team\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"SQL Server 2016 : availability groups with no domain dependencies","description":"SQL Server 2016 : availability groups with no domain dependencies","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:\/\/www.dbi-services.com\/blog\/sql-server-2016-availability-groups-with-no-domain-dependencies\/","og_locale":"en_US","og_type":"article","og_title":"SQL Server 2016 : availability groups with no domain dependencies","og_description":"SQL Server 2016 : availability groups with no domain dependencies","og_url":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-availability-groups-with-no-domain-dependencies\/","og_site_name":"dbi Blog","article_published_time":"2015-09-27T19:00:00+00:00","og_image":[{"width":383,"height":132,"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-64-1-first-node-cfg-1.jpg","type":"image\/jpeg"}],"author":"Microsoft Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Microsoft Team","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-availability-groups-with-no-domain-dependencies\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-availability-groups-with-no-domain-dependencies\/"},"author":{"name":"Microsoft Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4"},"headline":"SQL Server 2016 : availability groups with no domain dependencies","datePublished":"2015-09-27T19:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-availability-groups-with-no-domain-dependencies\/"},"wordCount":622,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-availability-groups-with-no-domain-dependencies\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-64-1-first-node-cfg-1.jpg","keywords":["Availability groups","Failover cluster","High availability","SQL Server 2016","windows server 2016"],"articleSection":["Database Administration &amp; Monitoring"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/sql-server-2016-availability-groups-with-no-domain-dependencies\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-availability-groups-with-no-domain-dependencies\/","url":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-availability-groups-with-no-domain-dependencies\/","name":"SQL Server 2016 : availability groups with no domain dependencies","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-availability-groups-with-no-domain-dependencies\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-availability-groups-with-no-domain-dependencies\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-64-1-first-node-cfg-1.jpg","datePublished":"2015-09-27T19:00:00+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4"},"description":"SQL Server 2016 : availability groups with no domain dependencies","breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-availability-groups-with-no-domain-dependencies\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/sql-server-2016-availability-groups-with-no-domain-dependencies\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-availability-groups-with-no-domain-dependencies\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-64-1-first-node-cfg-1.jpg","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/blog-64-1-first-node-cfg-1.jpg","width":383,"height":132},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/sql-server-2016-availability-groups-with-no-domain-dependencies\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"SQL Server 2016 : availability groups with no domain dependencies"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/bfab48333280d616e1170e7369df90a4","name":"Microsoft Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c44a1a792c059f24055763aa77d80a244467f6eef724a8bd13db8d4a350b7a4c?s=96&d=mm&r=g","caption":"Microsoft Team"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/microsoft-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/5673","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/26"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=5673"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/5673\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media\/5681"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=5673"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=5673"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=5673"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=5673"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}