{"id":725,"date":"2016-08-16T09:00:47","date_gmt":"2016-08-16T16:00:47","guid":{"rendered":"https:\/\/bornsql.ca\/?p=725"},"modified":"2016-08-15T17:50:04","modified_gmt":"2016-08-16T00:50:04","slug":"moving-database-azure-sql-database","status":"publish","type":"post","link":"https:\/\/bornsql.ca\/blog\/moving-database-azure-sql-database\/","title":{"rendered":"Moving a database to Azure SQL Database"},"content":{"rendered":"<p>This week we will actually move a database into Azure SQL Database, using the first of two of Microsoft&#8217;s recommended methods.<\/p>\n<p>The main thing to keep in mind is that SQL Server (on-premises, or &#8220;earthed&#8221;) and Azure SQL Database (&#8220;cloud&#8221;) are not the same product. They support the same schemas and data, and allow the same scripts and applications to run, but they are not the same thing.<\/p>\n<p>This is important, because when we migrate to Azure SQL Database from an on-premises SQL Server environment, we can&#8217;t simply do a backup and restore of our database.<\/p>\n<p>The simple reason is that there is no file system access in Azure SQL Database. We won&#8217;t be able to see a backup file to restore it.<\/p>\n<p>The more complicated reason is that we don&#8217;t have access to any instance-level features, including server configuration, tempdb access, and so on, and therefore our databases must be self-contained.<\/p>\n<p>The recommended method to migrate a database to Azure SQL Database is the <em>Migration Wizard<\/em> in SQL Server Management Studio.<\/p>\n<p>For larger databases, we\u00a0can create an extract first, which can be imported later using the necessary tools.<\/p>\n<p>Under the covers, the migration is using SQL Server Data Tools to extract a <em>Data-tier Application<\/em> (DAC). This acronym is not to be confused with Dedicated Administrator Connection.<\/p>\n<p>According to <a href=\"https:\/\/msdn.microsoft.com\/en-us\/library\/ee210546.aspx\">MSDN<\/a> (emphasis added):<\/p>\n<blockquote><p>A data-tier application (DAC) is a logical database management entity that defines all of the SQL Server objects &#8211; like tables, views, and instance objects including logins &#8211; associated with a user&#8217;s database. A DAC is a <strong>self-contained unit<\/strong> of SQL Server database deployment that enables data-tier developers and database administrators to package SQL Server objects into a portable artifact called a DAC package, also known as a DACPAC.<\/p>\n<p>A BACPAC is a related artifact that encapsulates the database schema as well as the data stored in the database.<\/p><\/blockquote>\n<p>From this, we can establish that we are creating a BACPAC file, containing the schema in XML format, a few metadata files with version information, and of course the data itself, in BCP (<a href=\"https:\/\/msdn.microsoft.com\/en-us\/library\/ms175937.aspx\">Bulk Copy<\/a>) format. This is then\u00a0compressed (using standard PK-ZIP format) in order to save space.<\/p>\n<p>Anyone who has\u00a0used other products that create database dump files will be familiar with this process.<\/p>\n<p>The BCP file format is not human-readable, unlike, say, MySQL&#8217;s dump files, and if we\u00a0look at the MSDN article on format files, it will make our heads spin.<\/p>\n<p>That said, I was able to pick out string values from the BCP file in my test that corresponded with row values in the source database table.<\/p>\n<p>To be on the safe side, I like\u00a0to break up the process into two stages, so that if the second part fails, we\u00a0can retry it at our convenience:<\/p>\n<ul>\n<li>Create the BACPAC file locally and verify it;<\/li>\n<li>Import the BACPAC file into Azure SQL Database.<\/li>\n<\/ul>\n<p>If the database is small enough, we use the Migration Wizard inside the <a href=\"https:\/\/msdn.microsoft.com\/en-us\/library\/mt238290.aspx\">latest version of SQL Server Management Studio<\/a>\u00a0and do both steps in one go. Let&#8217;s do that now.<\/p>\n<p><em> (The following images are copyright \u00a9 2016 Microsoft Corporation, retrieved from\u00a0the official documentation pages.)<\/em><\/p>\n<p>Inside SQL Server Management Studio, right-click on the database we\u00a0want to migrate. In this case, it&#8217;s <code>[AdventureWorks2012]<\/code>. Click <em>Tasks<\/em> &gt; <em>Deploy Database to Microsoft Azure SQL Database\u2026<\/em>.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-726\" src=\"https:\/\/bornsql.ca\/wp-content\/uploads\/2016\/08\/migrateusingdeploymentwizard01.png\" alt=\"migrateusingdeploymentwizard01\" width=\"708\" height=\"825\" srcset=\"https:\/\/bornsql.ca\/wp-content\/uploads\/2016\/08\/migrateusingdeploymentwizard01.png 708w, https:\/\/bornsql.ca\/wp-content\/uploads\/2016\/08\/migrateusingdeploymentwizard01-257x300.png 257w\" sizes=\"auto, (max-width: 708px) 100vw, 708px\" \/><\/p>\n<p>Here we\u00a0specify the Server connection of our Azure SQL account, by clicking on the <em>Connect&#8230;<\/em> button:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-727\" src=\"https:\/\/bornsql.ca\/wp-content\/uploads\/2016\/08\/migrateusingdeploymentwizard02.png\" alt=\"migrateusingdeploymentwizard02\" width=\"717\" height=\"676\" srcset=\"https:\/\/bornsql.ca\/wp-content\/uploads\/2016\/08\/migrateusingdeploymentwizard02.png 717w, https:\/\/bornsql.ca\/wp-content\/uploads\/2016\/08\/migrateusingdeploymentwizard02-300x283.png 300w\" sizes=\"auto, (max-width: 717px) 100vw, 717px\" \/><\/p>\n<p>This is where we connect to the\u00a0Azure SQL account. Since this migration wizard is doing all of the heavy lifting, we\u00a0do\u00a0not need to create a database beforehand.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-728\" src=\"https:\/\/bornsql.ca\/wp-content\/uploads\/2016\/08\/migrateusingdeploymentwizard03.png\" alt=\"migrateusingdeploymentwizard03\" width=\"408\" height=\"314\" srcset=\"https:\/\/bornsql.ca\/wp-content\/uploads\/2016\/08\/migrateusingdeploymentwizard03.png 408w, https:\/\/bornsql.ca\/wp-content\/uploads\/2016\/08\/migrateusingdeploymentwizard03-300x231.png 300w\" sizes=\"auto, (max-width: 408px) 100vw, 408px\" \/><\/p>\n<p>Now that we\u00a0have connected to our Azure account, we\u00a0can create the database on this screen. Remember the different editions and their <a href=\"https:\/\/azure.microsoft.com\/en-us\/pricing\/details\/sql-database\/\">associated costs<\/a>, so we won&#8217;t pick the $7000 per month option unless we\u00a0can afford it.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-729\" src=\"https:\/\/bornsql.ca\/wp-content\/uploads\/2016\/08\/migrateusingdeploymentwizard04.png\" alt=\"migrateusingdeploymentwizard04\" width=\"716\" height=\"669\" srcset=\"https:\/\/bornsql.ca\/wp-content\/uploads\/2016\/08\/migrateusingdeploymentwizard04.png 716w, https:\/\/bornsql.ca\/wp-content\/uploads\/2016\/08\/migrateusingdeploymentwizard04-300x280.png 300w\" sizes=\"auto, (max-width: 716px) 100vw, 716px\" \/><\/p>\n<p>Once we\u00a0start the migration, it can take a while, and it may even fail due to <a href=\"https:\/\/azure.microsoft.com\/en-us\/documentation\/articles\/sql-database-transact-sql-information\/\">compatibility issues<\/a>, which have to be resolved.<\/p>\n<p>We briefly touched on these last week, and they must be resolved before migrating. We would use\u00a0the latest <a href=\"https:\/\/blogs.msdn.microsoft.com\/ssdt\/\">SQL Server Data Tools<\/a> to identify errors or warnings.<\/p>\n<p>But because we&#8217;ve done our compatibility homework, everything works the first time.<\/p>\n<p>It&#8217;s really that simple.<\/p>\n<p>If the database is large, or the network connection is unstable or slow, we will have to do the import from our BACPAC file or using BCP directly. That will be covered in next week&#8217;s post.<\/p>\n<p>If you have any questions or comments about this process, feel free to ask me on Twitter at <a href=\"https:\/\/twitter.com\/bornsql\">@bornsql<\/a> .<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This week we will actually move a database into Azure SQL Database, using the first of two of Microsoft&#8217;s recommended methods. The main thing to keep in mind is that SQL Server (on-premises, or &#8220;earthed&#8221;) and Azure SQL Database (&#8220;cloud&#8221;) are not the same product. They support the same schemas and data, and allow the&hellip;&nbsp;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"neve_meta_sidebar":"","neve_meta_container":"","neve_meta_enable_content_width":"","neve_meta_content_width":0,"neve_meta_title_alignment":"","neve_meta_author_avatar":"","neve_post_elements_order":"","neve_meta_disable_header":"","neve_meta_disable_footer":"","neve_meta_disable_title":"","_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[55,121,123,57,122,10],"class_list":["post-725","post","type-post","status-publish","format-standard","hentry","category-general","tag-azure","tag-azure-sql-database","tag-bcp","tag-cloud","tag-management-studio","tag-migration"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Moving a database to Azure SQL Database - Born SQL<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/bornsql.ca\/blog\/moving-database-azure-sql-database\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Moving a database to Azure SQL Database - Born SQL\" \/>\n<meta property=\"og:description\" content=\"This week we will actually move a database into Azure SQL Database, using the first of two of Microsoft&#8217;s recommended methods. The main thing to keep in mind is that SQL Server (on-premises, or &#8220;earthed&#8221;) and Azure SQL Database (&#8220;cloud&#8221;) are not the same product. They support the same schemas and data, and allow the&hellip;&nbsp;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bornsql.ca\/blog\/moving-database-azure-sql-database\/\" \/>\n<meta property=\"og:site_name\" content=\"Born SQL\" \/>\n<meta property=\"article:published_time\" content=\"2016-08-16T16:00:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/bornsql.ca\/wp-content\/uploads\/2016\/08\/migrateusingdeploymentwizard01.png\" \/>\n<meta name=\"author\" content=\"Randolph\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Randolph\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/bornsql.ca\\\/blog\\\/moving-database-azure-sql-database\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bornsql.ca\\\/blog\\\/moving-database-azure-sql-database\\\/\"},\"author\":{\"name\":\"Randolph\",\"@id\":\"https:\\\/\\\/bornsql.ca\\\/#\\\/schema\\\/person\\\/df20853d6458bc0aca0d5f17202e608d\"},\"headline\":\"Moving a database to Azure SQL Database\",\"datePublished\":\"2016-08-16T16:00:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/bornsql.ca\\\/blog\\\/moving-database-azure-sql-database\\\/\"},\"wordCount\":778,\"image\":{\"@id\":\"https:\\\/\\\/bornsql.ca\\\/blog\\\/moving-database-azure-sql-database\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bornsql.ca\\\/wp-content\\\/uploads\\\/2016\\\/08\\\/migrateusingdeploymentwizard01.png\",\"keywords\":[\"Azure\",\"Azure SQL Database\",\"BCP\",\"Cloud\",\"Management Studio\",\"Migration\"],\"articleSection\":[\"General\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/bornsql.ca\\\/blog\\\/moving-database-azure-sql-database\\\/\",\"url\":\"https:\\\/\\\/bornsql.ca\\\/blog\\\/moving-database-azure-sql-database\\\/\",\"name\":\"Moving a database to Azure SQL Database - Born SQL\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bornsql.ca\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/bornsql.ca\\\/blog\\\/moving-database-azure-sql-database\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/bornsql.ca\\\/blog\\\/moving-database-azure-sql-database\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bornsql.ca\\\/wp-content\\\/uploads\\\/2016\\\/08\\\/migrateusingdeploymentwizard01.png\",\"datePublished\":\"2016-08-16T16:00:47+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/bornsql.ca\\\/#\\\/schema\\\/person\\\/df20853d6458bc0aca0d5f17202e608d\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/bornsql.ca\\\/blog\\\/moving-database-azure-sql-database\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/bornsql.ca\\\/blog\\\/moving-database-azure-sql-database\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/bornsql.ca\\\/blog\\\/moving-database-azure-sql-database\\\/#primaryimage\",\"url\":\"https:\\\/\\\/bornsql.ca\\\/wp-content\\\/uploads\\\/2016\\\/08\\\/migrateusingdeploymentwizard01.png\",\"contentUrl\":\"https:\\\/\\\/bornsql.ca\\\/wp-content\\\/uploads\\\/2016\\\/08\\\/migrateusingdeploymentwizard01.png\",\"width\":708,\"height\":825},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/bornsql.ca\\\/blog\\\/moving-database-azure-sql-database\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/bornsql.ca\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Moving a database to Azure SQL Database\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/bornsql.ca\\\/#website\",\"url\":\"https:\\\/\\\/bornsql.ca\\\/\",\"name\":\"Born SQL\",\"description\":\"A blog about the Microsoft Data Platform\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/bornsql.ca\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/bornsql.ca\\\/#\\\/schema\\\/person\\\/df20853d6458bc0aca0d5f17202e608d\",\"name\":\"Randolph\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e464dca1b55497d15e725afa9728080478c391a7492d0065a7fbeb1d456a1986?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e464dca1b55497d15e725afa9728080478c391a7492d0065a7fbeb1d456a1986?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e464dca1b55497d15e725afa9728080478c391a7492d0065a7fbeb1d456a1986?s=96&r=g\",\"caption\":\"Randolph\"},\"sameAs\":[\"https:\\\/\\\/bornsql.ca\"],\"url\":\"https:\\\/\\\/bornsql.ca\\\/blog\\\/author\\\/bornsql\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Moving a database to Azure SQL Database - Born SQL","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:\/\/bornsql.ca\/blog\/moving-database-azure-sql-database\/","og_locale":"en_US","og_type":"article","og_title":"Moving a database to Azure SQL Database - Born SQL","og_description":"This week we will actually move a database into Azure SQL Database, using the first of two of Microsoft&#8217;s recommended methods. The main thing to keep in mind is that SQL Server (on-premises, or &#8220;earthed&#8221;) and Azure SQL Database (&#8220;cloud&#8221;) are not the same product. They support the same schemas and data, and allow the&hellip;&nbsp;","og_url":"https:\/\/bornsql.ca\/blog\/moving-database-azure-sql-database\/","og_site_name":"Born SQL","article_published_time":"2016-08-16T16:00:47+00:00","og_image":[{"url":"https:\/\/bornsql.ca\/wp-content\/uploads\/2016\/08\/migrateusingdeploymentwizard01.png","type":"","width":"","height":""}],"author":"Randolph","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Randolph","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/bornsql.ca\/blog\/moving-database-azure-sql-database\/#article","isPartOf":{"@id":"https:\/\/bornsql.ca\/blog\/moving-database-azure-sql-database\/"},"author":{"name":"Randolph","@id":"https:\/\/bornsql.ca\/#\/schema\/person\/df20853d6458bc0aca0d5f17202e608d"},"headline":"Moving a database to Azure SQL Database","datePublished":"2016-08-16T16:00:47+00:00","mainEntityOfPage":{"@id":"https:\/\/bornsql.ca\/blog\/moving-database-azure-sql-database\/"},"wordCount":778,"image":{"@id":"https:\/\/bornsql.ca\/blog\/moving-database-azure-sql-database\/#primaryimage"},"thumbnailUrl":"https:\/\/bornsql.ca\/wp-content\/uploads\/2016\/08\/migrateusingdeploymentwizard01.png","keywords":["Azure","Azure SQL Database","BCP","Cloud","Management Studio","Migration"],"articleSection":["General"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/bornsql.ca\/blog\/moving-database-azure-sql-database\/","url":"https:\/\/bornsql.ca\/blog\/moving-database-azure-sql-database\/","name":"Moving a database to Azure SQL Database - Born SQL","isPartOf":{"@id":"https:\/\/bornsql.ca\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bornsql.ca\/blog\/moving-database-azure-sql-database\/#primaryimage"},"image":{"@id":"https:\/\/bornsql.ca\/blog\/moving-database-azure-sql-database\/#primaryimage"},"thumbnailUrl":"https:\/\/bornsql.ca\/wp-content\/uploads\/2016\/08\/migrateusingdeploymentwizard01.png","datePublished":"2016-08-16T16:00:47+00:00","author":{"@id":"https:\/\/bornsql.ca\/#\/schema\/person\/df20853d6458bc0aca0d5f17202e608d"},"breadcrumb":{"@id":"https:\/\/bornsql.ca\/blog\/moving-database-azure-sql-database\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bornsql.ca\/blog\/moving-database-azure-sql-database\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/bornsql.ca\/blog\/moving-database-azure-sql-database\/#primaryimage","url":"https:\/\/bornsql.ca\/wp-content\/uploads\/2016\/08\/migrateusingdeploymentwizard01.png","contentUrl":"https:\/\/bornsql.ca\/wp-content\/uploads\/2016\/08\/migrateusingdeploymentwizard01.png","width":708,"height":825},{"@type":"BreadcrumbList","@id":"https:\/\/bornsql.ca\/blog\/moving-database-azure-sql-database\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bornsql.ca\/"},{"@type":"ListItem","position":2,"name":"Moving a database to Azure SQL Database"}]},{"@type":"WebSite","@id":"https:\/\/bornsql.ca\/#website","url":"https:\/\/bornsql.ca\/","name":"Born SQL","description":"A blog about the Microsoft Data Platform","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/bornsql.ca\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/bornsql.ca\/#\/schema\/person\/df20853d6458bc0aca0d5f17202e608d","name":"Randolph","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/e464dca1b55497d15e725afa9728080478c391a7492d0065a7fbeb1d456a1986?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/e464dca1b55497d15e725afa9728080478c391a7492d0065a7fbeb1d456a1986?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e464dca1b55497d15e725afa9728080478c391a7492d0065a7fbeb1d456a1986?s=96&r=g","caption":"Randolph"},"sameAs":["https:\/\/bornsql.ca"],"url":"https:\/\/bornsql.ca\/blog\/author\/bornsql\/"}]}},"jetpack_featured_media_url":"","jetpack-related-posts":[],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/bornsql.ca\/wp-json\/wp\/v2\/posts\/725","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bornsql.ca\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/bornsql.ca\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/bornsql.ca\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/bornsql.ca\/wp-json\/wp\/v2\/comments?post=725"}],"version-history":[{"count":0,"href":"https:\/\/bornsql.ca\/wp-json\/wp\/v2\/posts\/725\/revisions"}],"wp:attachment":[{"href":"https:\/\/bornsql.ca\/wp-json\/wp\/v2\/media?parent=725"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bornsql.ca\/wp-json\/wp\/v2\/categories?post=725"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bornsql.ca\/wp-json\/wp\/v2\/tags?post=725"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}