{"id":593,"date":"2014-01-23T04:02:42","date_gmt":"2014-01-23T04:02:42","guid":{"rendered":"http:\/\/elbsolutions.com\/projects\/?p=593"},"modified":"2022-02-03T11:25:03","modified_gmt":"2022-02-03T17:25:03","slug":"reading-access-2010-mdb-files-sql-server-directly","status":"publish","type":"post","link":"https:\/\/elbsolutions.com\/projects\/reading-access-2010-mdb-files-sql-server-directly\/","title":{"rendered":"Reading Access 2010 .mdb files from SQL Server directly"},"content":{"rendered":"<p>OK, I have already ripped most of my hair out and <strong>I DID get it to work with many hours of research<\/strong> and many smart people at the helm online and at my client&#8217;s work. This article will save your HOURS I hope. The permissions thing was credit to them. Thanks.<\/p>\n[UPDATE: Feb 2014 &#8211; I now used a linked Server to a dB with a password (the with a password is a big deal &#8211; googling for a long time finally paid off &#8211; whoo hoo it works! <a title=\"SQL Server access MS 2010 Access database with password. Finally\" href=\"http:\/\/elbsolutions.com\/projects\/sql-server-access-ms-2010-access-database-password-finally\/\" target=\"_blank\" rel=\"noopener noreferrer\">See that article too &#8211; you will still need this one<\/a>]\n<p>Here are some links I used to get things working. I use the OPENROWSET (see SQL example below) and there are 4 things that are key (<a href=\"http:\/\/www.johnsoer.com\/blog\/?p=538\" target=\"_blank\" rel=\"noopener noreferrer\">this guy saved my bacon so I will link this to give him the most credit<\/a>). If you have 32 bit office installed on a 64 bit machine etc <!--more-->etc? DON&#8217;T MIX BIT STUFF. Have 64 bit everything and this goes smoother &#8211; everyone is ripping their hair out over this on google.<\/p>\n<ul>\n<li>use the query type that works. This requires all this to work\n<ul>\n<li>a driver installed :\u00a0<a href=\"http:\/\/www.google.com\/search?q=Microsoft+Access+database+engine+2010&amp;sourceid=ie7&amp;rls=com.microsoft:en-ca:IE-Address&amp;ie=&amp;oe=&amp;rlz\" target=\"_blank\" rel=\"noopener noreferrer\">Microsoft Access database engine 2010 (English)<\/a> available on the web from msdn. It will not take effect until a reboot<\/li>\n<li>a registry edit for this driver (below for details)<\/li>\n<li>SQL Commands to be run on the SQL server to allow the MICROSOFT.ACE.OLEDB.12.0 driver to work (included below with details)<\/li>\n<li>you MIGHT need to open permissions on 2 hidden folders under the c:\\Users\\ directory owned by the users who run the SQL Server accounts<\/li>\n<li>NTFS permissions set properly on the data directory containing the .mdb files (and those files&#8217; permission set properly as well)\n<ul>\n<li>we are running SQL from another server and the user is mydomain\\myaccount running SQL. IF you have a default install &#8211; you can see what account is running it using services.msc command from dos. It is most likely\n<ul id=\"rootMessage\">\n<li id=\"39b8da31-fc09-4663-b8ef-76acd192bd78\">\n<div>\n<div>\n<div>\n<div>\n<p>NT AUTHORITY\\Network Service \u00a0or &#8220;Network Service&#8221; if you are searching it. Don&#8217;t forget to tell the search to look in the local computer. Frustrating if you don&#8217;t.<\/p>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<li>I am using an APSX to also access the files and this<a href=\"http:\/\/stackoverflow.com\/questions\/5045641\/user-asp-net-runs-under\" target=\"_blank\" rel=\"noopener noreferrer\"> permissions article<\/a> is a succinct one that I found handy and am putting here for my own reference.<strong> IF THIS IS AN ASPX WEB APP &#8211; RESTART YOUR WEBSITE AND APP POOL.<\/strong> 2.5 hours with 2 of us was wasted on this one.<\/li>\n<li>If you use a password protected mdb &#8211; your job is to post below. TAKE THE PASSWORD OFF. I haven&#8217;t figured this one out is why my advice is as it is.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p>The registry edit for the SQL Server install computer requires 3 registry keys adjusted in the following location &#8211; BUT DO IT BY HAND. Your path might be slightly altered where it lists the version:<\/p>\n<pre class=\"brush: plain; title: ; notranslate\" title=\"\">\r\n\r\n&#x5B;HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Microsoft SQL Server\\MSSQL10_50.MSSQLSERVER\\Providers\\Microsoft.ACE.OLEDB.12.0]\r\n&quot;AllowInProcess&quot;=dword:00000001\r\n&quot;DynamicParameters&quot;=dword:00000001\r\n&quot;DisallowAdhocAccess&quot;=dword:00000000\r\n\r\n<\/pre>\n<p>SQL Stored Proc to get things working<\/p>\n<pre class=\"brush: plain; title: ; notranslate\" title=\"\">\r\n\r\nEXEC sp_configure 'Ad Hoc Distributed Queries', 1\r\nGO\r\nRECONFIGURE WITH OVERRIDE\r\nGO\r\n\r\nEXEC master.dbo.sp_MSset_oledb_prop N'Microsoft.ACE.OLEDB.12.0', N'AllowInProcess', 1\r\nGO\r\nEXEC master.dbo.sp_MSset_oledb_prop N'Microsoft.ACE.OLEDB.12.0', N'DynamicParameters', 1\r\nGO\r\nRECONFIGURE WITH OVERRIDE\r\nGO\r\n\r\n<\/pre>\n<pre class=\"brush: sql; title: ; notranslate\" title=\"\">\r\n\r\n-- The stuff below can be pasted into a stored proc or just run as is (I think). Copy all this in to SQL Server and hit execute (adjusting stuff to suite your needs etc.)\r\n\r\nSET @sql = N'INSERT INTO dbo.tblMySQLServerTable (sqlServerImportFilePath , sqlServerImportDateTime, '\r\n SET @sql = @sql + ' sqlServerField1, sqlServerField2, sqlServerField3) '\r\n SET @sql = @sql + ' SELECT ''' + @accessFileName + ''' As ImportFilePath, NULL As ImportDateTime, '\r\n SET @sql = @sql + ' msAccessField1, msAccessField, msAccessField3 '\r\n SET @sql = @sql + ' FROM OPENROWSET (''MICROSOFT.ACE.OLEDB.12.0'', ''' + @accessFileName + ''';''Admin'';'''', tblMyTableInMsAccess)';\r\n PRINT @sql\r\n EXEC SP_executeSQL @sql\r\n\r\n<\/pre>\n<p>Links I used:<\/p>\n<ul>\n<li><strong>MY HERO!!!\u00a0<\/strong><a href=\"http:\/\/www.johnsoer.com\/blog\/?p=538\" target=\"_blank\" rel=\"noopener noreferrer\">http:\/\/www.johnsoer.com\/blog\/?p=538<\/a><\/li>\n<li><a href=\"http:\/\/www.excel-sql-server.com\/excel-import-to-sql-server-using-linked-servers.htm\" target=\"_blank\" rel=\"noopener noreferrer\">Anther guy who was frustrated enough to write things down on the web for 32 vs. 64 bit, SQL Server vs Local etc.etc<\/a> &#8211; a GREAT resource. I added this long after I had things up and running though.<\/li>\n<li><a href=\"http:\/\/blog.sqlauthority.com\/2010\/11\/03\/sql-server-fix-error-ms-jet-oledb-4-0-cannot-be-used-for-distributed-queries-because-the-provider-is-used-to-run-in-apartment-mode\/\" target=\"_blank\" rel=\"noopener noreferrer\">http:\/\/blog.sqlauthority.com\/2010\/11\/03\/sql-server-fix-error-ms-jet-oledb-4-0-cannot-be-used-for-distributed-queries-because-the-provider-is-used-to-run-in-apartment-mode\/<\/a><\/li>\n<li><a href=\"http:\/\/www.sqlservercentral.com\/Forums\/Topic1337437-391-1.aspx\" target=\"_blank\" rel=\"noopener noreferrer\">http:\/\/www.sqlservercentral.com\/Forums\/Topic1337437-391-1.aspx<\/a><\/li>\n<li><a href=\"http:\/\/blog.wharton.com.au\/2011\/10\/19\/ssis-consuming-microsoft-access-or-microsoft-excel-data-sources-in-64-bit-environments\/\" target=\"_blank\" rel=\"noopener noreferrer\">http:\/\/blog.wharton.com.au\/2011\/10\/19\/ssis-consuming-microsoft-access-or-microsoft-excel-data-sources-in-64-bit-environments\/<\/a><\/li>\n<li><a href=\"http:\/\/social.msdn.microsoft.com\/Forums\/sqlserver\/en-US\/bb2dc720-f8f9-4b93-b5d1-cfb4f8a8b1cb\/the-ole-db-provider-microsoftaceoledb120-for-linked-server-null-reported-an-error-access\" target=\"_blank\" rel=\"noopener noreferrer\">http:\/\/dinesql.blogspot.ca\/2010\/06\/openrowset-opendatasource.html<\/a><\/li>\n<li><a href=\"http:\/\/social.msdn.microsoft.com\/Forums\/sqlserver\/en-US\/bb2dc720-f8f9-4b93-b5d1-cfb4f8a8b1cb\/the-ole-db-provider-microsoftaceoledb120-for-linked-server-null-reported-an-error-access\" target=\"_blank\" rel=\"noopener noreferrer\">http:\/\/social.msdn.microsoft.com\/Forums\/sqlserver\/en-US\/bb2dc720-f8f9-4b93-b5d1-cfb4f8a8b1cb\/the-ole-db-provider-microsoftaceoledb120-for-linked-server-null-reported-an-error-access<\/a><\/li>\n<li><a href=\"http:\/\/social.msdn.microsoft.com\/Forums\/en-US\/1d5c04c7-157f-4955-a14b-41d912d50a64\/how-to-fix-error-the-microsoftaceoledb120-provider-is-not-registered-on-the-local-machine?forum=vstsdb\" target=\"_blank\" rel=\"noopener noreferrer\">http:\/\/social.msdn.microsoft.com\/Forums\/en-US\/1d5c04c7-157f-4955-a14b-41d912d50a64\/how-to-fix-error-the-microsoftaceoledb120-provider-is-not-registered-on-the-local-machine?forum=vstsdb<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>OK, I have already ripped most of my hair out and I DID get it to work with many hours of research and many smart people at the helm online and at my client&#8217;s work. This article will save your HOURS I hope. The permissions thing was credit to them. Thanks. [UPDATE: Feb 2014 &#8211; [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-593","post","type-post","status-publish","format-standard","hentry","category-general"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Reading Access 2010 .mdb files from SQL Server directly - ELB Solutions.com Inc.<\/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:\/\/elbsolutions.com\/projects\/reading-access-2010-mdb-files-sql-server-directly\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Reading Access 2010 .mdb files from SQL Server directly - ELB Solutions.com Inc.\" \/>\n<meta property=\"og:description\" content=\"OK, I have already ripped most of my hair out and I DID get it to work with many hours of research and many smart people at the helm online and at my client&#8217;s work. This article will save your HOURS I hope. The permissions thing was credit to them. Thanks. [UPDATE: Feb 2014 &#8211; [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/elbsolutions.com\/projects\/reading-access-2010-mdb-files-sql-server-directly\/\" \/>\n<meta property=\"og:site_name\" content=\"ELB Solutions.com Inc.\" \/>\n<meta property=\"article:published_time\" content=\"2014-01-23T04:02:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-02-03T17:25:03+00:00\" \/>\n<meta name=\"author\" content=\"Etienne Bley\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Etienne Bley\" \/>\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:\\\/\\\/elbsolutions.com\\\/projects\\\/reading-access-2010-mdb-files-sql-server-directly\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/reading-access-2010-mdb-files-sql-server-directly\\\/\"},\"author\":{\"name\":\"Etienne Bley\",\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/#\\\/schema\\\/person\\\/51e717c68f4f5917c63baf88f0896c39\"},\"headline\":\"Reading Access 2010 .mdb files from SQL Server directly\",\"datePublished\":\"2014-01-23T04:02:42+00:00\",\"dateModified\":\"2022-02-03T17:25:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/reading-access-2010-mdb-files-sql-server-directly\\\/\"},\"wordCount\":771,\"articleSection\":[\"General\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/reading-access-2010-mdb-files-sql-server-directly\\\/\",\"url\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/reading-access-2010-mdb-files-sql-server-directly\\\/\",\"name\":\"Reading Access 2010 .mdb files from SQL Server directly - ELB Solutions.com Inc.\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/#website\"},\"datePublished\":\"2014-01-23T04:02:42+00:00\",\"dateModified\":\"2022-02-03T17:25:03+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/#\\\/schema\\\/person\\\/51e717c68f4f5917c63baf88f0896c39\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/reading-access-2010-mdb-files-sql-server-directly\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/reading-access-2010-mdb-files-sql-server-directly\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/reading-access-2010-mdb-files-sql-server-directly\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Reading Access 2010 .mdb files from SQL Server directly\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/#website\",\"url\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/\",\"name\":\"ELB Solutions.com Inc.\",\"description\":\"Bringing all your IT Pieces together\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/#\\\/schema\\\/person\\\/51e717c68f4f5917c63baf88f0896c39\",\"name\":\"Etienne Bley\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f8971dfb65b25b768415568f83247df4057f15d037137e386928a804e2c997b9?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f8971dfb65b25b768415568f83247df4057f15d037137e386928a804e2c997b9?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f8971dfb65b25b768415568f83247df4057f15d037137e386928a804e2c997b9?s=96&d=mm&r=g\",\"caption\":\"Etienne Bley\"},\"url\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/author\\\/etienne-bley\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Reading Access 2010 .mdb files from SQL Server directly - ELB Solutions.com Inc.","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:\/\/elbsolutions.com\/projects\/reading-access-2010-mdb-files-sql-server-directly\/","og_locale":"en_US","og_type":"article","og_title":"Reading Access 2010 .mdb files from SQL Server directly - ELB Solutions.com Inc.","og_description":"OK, I have already ripped most of my hair out and I DID get it to work with many hours of research and many smart people at the helm online and at my client&#8217;s work. This article will save your HOURS I hope. The permissions thing was credit to them. Thanks. [UPDATE: Feb 2014 &#8211; [&hellip;]","og_url":"https:\/\/elbsolutions.com\/projects\/reading-access-2010-mdb-files-sql-server-directly\/","og_site_name":"ELB Solutions.com Inc.","article_published_time":"2014-01-23T04:02:42+00:00","article_modified_time":"2022-02-03T17:25:03+00:00","author":"Etienne Bley","twitter_misc":{"Written by":"Etienne Bley","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/elbsolutions.com\/projects\/reading-access-2010-mdb-files-sql-server-directly\/#article","isPartOf":{"@id":"https:\/\/elbsolutions.com\/projects\/reading-access-2010-mdb-files-sql-server-directly\/"},"author":{"name":"Etienne Bley","@id":"https:\/\/elbsolutions.com\/projects\/#\/schema\/person\/51e717c68f4f5917c63baf88f0896c39"},"headline":"Reading Access 2010 .mdb files from SQL Server directly","datePublished":"2014-01-23T04:02:42+00:00","dateModified":"2022-02-03T17:25:03+00:00","mainEntityOfPage":{"@id":"https:\/\/elbsolutions.com\/projects\/reading-access-2010-mdb-files-sql-server-directly\/"},"wordCount":771,"articleSection":["General"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/elbsolutions.com\/projects\/reading-access-2010-mdb-files-sql-server-directly\/","url":"https:\/\/elbsolutions.com\/projects\/reading-access-2010-mdb-files-sql-server-directly\/","name":"Reading Access 2010 .mdb files from SQL Server directly - ELB Solutions.com Inc.","isPartOf":{"@id":"https:\/\/elbsolutions.com\/projects\/#website"},"datePublished":"2014-01-23T04:02:42+00:00","dateModified":"2022-02-03T17:25:03+00:00","author":{"@id":"https:\/\/elbsolutions.com\/projects\/#\/schema\/person\/51e717c68f4f5917c63baf88f0896c39"},"breadcrumb":{"@id":"https:\/\/elbsolutions.com\/projects\/reading-access-2010-mdb-files-sql-server-directly\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/elbsolutions.com\/projects\/reading-access-2010-mdb-files-sql-server-directly\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/elbsolutions.com\/projects\/reading-access-2010-mdb-files-sql-server-directly\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/elbsolutions.com\/projects\/"},{"@type":"ListItem","position":2,"name":"Reading Access 2010 .mdb files from SQL Server directly"}]},{"@type":"WebSite","@id":"https:\/\/elbsolutions.com\/projects\/#website","url":"https:\/\/elbsolutions.com\/projects\/","name":"ELB Solutions.com Inc.","description":"Bringing all your IT Pieces together","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/elbsolutions.com\/projects\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/elbsolutions.com\/projects\/#\/schema\/person\/51e717c68f4f5917c63baf88f0896c39","name":"Etienne Bley","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f8971dfb65b25b768415568f83247df4057f15d037137e386928a804e2c997b9?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f8971dfb65b25b768415568f83247df4057f15d037137e386928a804e2c997b9?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f8971dfb65b25b768415568f83247df4057f15d037137e386928a804e2c997b9?s=96&d=mm&r=g","caption":"Etienne Bley"},"url":"https:\/\/elbsolutions.com\/projects\/author\/etienne-bley\/"}]}},"_links":{"self":[{"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/posts\/593","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/comments?post=593"}],"version-history":[{"count":8,"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/posts\/593\/revisions"}],"predecessor-version":[{"id":2828,"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/posts\/593\/revisions\/2828"}],"wp:attachment":[{"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/media?parent=593"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/categories?post=593"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/tags?post=593"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}