{"id":7621,"date":"2022-05-10T07:41:00","date_gmt":"2022-05-10T05:41:00","guid":{"rendered":"https:\/\/expert-only.com\/?p=7621"},"modified":"2022-11-28T16:51:51","modified_gmt":"2022-11-28T15:51:51","slug":"cannot-find-object-it-does-not-exist","status":"publish","type":"post","link":"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/","title":{"rendered":"Cannot find the object because it does not exist SQL Server error"},"content":{"rendered":"\n<h4 class=\"has-text-align-center wp-block-heading\"><strong><em>How to avoid the SQL Server Truncate Table Error Cannot find the object because it does not exist  or you do not have permissions<\/em>?<\/strong><\/h4>\n\n\n\n<p>In SQL Server, to clear the full content of a table, the fastest way is to run a truncate Table query. The Truncate  is different from the Delete From query. Because it empties all the lines in the table without a Where clause, it&#8217;s a database definition language SQL operation. In reality more access is needed to perform a Truncate on a table to avoid errors.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-sql-server-error-cannot-find-the-object-because-it-does-not-exist\">SQL Server error cannot find the object because it does not exist<\/h2>\n\n\n\n<p>First, let&#8217;s assume the table exists in the database. Then it&#8217;s a privilege error. Indeed the error message if you don&#8217;t have the right level of permissions to see or to manipulate the table.<\/p>\n\n\n\n<p><em>Executing the query TRUNCATE TABLE YourTable failed with the following error. Cannot find the object YourTable because it does not exist or you do not have permissions.<\/em><\/p>\n\n\n\n<p><strong><br><\/strong>Possible failure reasons: Problems with the query, ResultSet property not set correctly, parameters not set correctly, or connection not established correctly.  <\/p>\n\n\n\n<p>Classical errors are around the TRUNCATE and the DROP table queries:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>With the <strong>DROP T-SQL statement<\/strong> : <em>Cannot drop the table because it does not exist or you do not have permissions.<\/em><\/li>\n\n\n\n<li>With the <strong>TRUNCATE TABLE T-SQL statement<\/strong> : <em>Cannot find the object because it does not exist or you do not have permissions<\/em>.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-first-solution-is-to-grant-alter-to-the-table\">First solution is to grant ALTER to the table<\/h2>\n\n\n\n<p>The first solution is to give more privileges to the SQL account. Or to the Windows user account executing the TRUNCATE TABLE query.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">GRANT ALTER ON [dbo].[YourTable] TO [SQLUser]\nGO\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-second-solution-is-to-use-a-delete-instead-of-the-truncate\">Second solution is to use a DELETE instead of the TRUNCATE<\/h2>\n\n\n\n<p>Another alternative is to delete the data from the table directly instead of emptying it completely. The TRUNCATE TABLE statement requires more rights than the DELETE FROM statement. There are indeed <a href=\"https:\/\/www.c-sharpcorner.com\/blogs\/difference-between-truncate-delete-and-drop-in-sql-server1\" target=\"_blank\" rel=\"noreferrer noopener\">differences<\/a> between the 2 statements. If the DELETE performance allows to use it then use a statement like this one instead: <\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">DELETE FROM [dbo].[YourTable];\n<\/pre>\n\n\n\n<p>We have seen how to avoid SQL Server classical errors about TRUNCATE TABLE statement. Check out other <a href=\"https:\/\/expert-only.com\/en\/sql-server-error\/\">common SQL Server Errors<\/a><strong>.<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-sql-and-it-tutorials wp-block-embed-sql-and-it-tutorials\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"MGJpNpSaWz\"><a href=\"https:\/\/expert-only.com\/en\/errors\/arithmetic-overflow-error\/\">Arithmetic overflow error converting expression to data type int<\/a><\/blockquote><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Arithmetic overflow error converting expression to data type int&#8221; &#8212; SQL and IT Tutorials\" src=\"https:\/\/expert-only.com\/en\/errors\/arithmetic-overflow-error\/embed\/#?secret=Zov5HBLPCR#?secret=MGJpNpSaWz\" data-secret=\"MGJpNpSaWz\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>How to avoid the SQL Server Truncate Table Error Cannot find the object because it does not exist or you do not have permissions? In SQL Server, to clear the full content of a table, the fastest way is <a class=\"mh-excerpt-more\" href=\"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/\" title=\"Cannot find the object because it does not exist SQL Server error\">&#8230;<\/a><\/p>\n<\/div>","protected":false},"author":1,"featured_media":6373,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[486],"tags":[626],"class_list":{"0":"post-7621","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-errors","8":"tag-alter"},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.7 (Yoast SEO v26.2) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Cannot find the object because it does not exist SQL Server error<\/title>\n<meta name=\"description\" content=\"SQL Server truncate table error Cannot find the object because it does not exist or you do not have permissions. Two solutions to solve it.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Cannot find the object because it does not exist SQL Server error\" \/>\n<meta property=\"og:description\" content=\"SQL Server truncate table error Cannot find the object because it does not exist or you do not have permissions. Two solutions to solve it.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/\" \/>\n<meta property=\"og:site_name\" content=\"SQL and IT Tutorials\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/ExpertOnlyCom\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-05-10T05:41:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-11-28T15:51:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/time-E5893753287_1920x1080.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Expert-Only\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@expert_only\" \/>\n<meta name=\"twitter:site\" content=\"@expert_only\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Expert-Only\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/\"},\"author\":{\"name\":\"Expert-Only\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef\"},\"headline\":\"Cannot find the object because it does not exist SQL Server error\",\"datePublished\":\"2022-05-10T05:41:00+00:00\",\"dateModified\":\"2022-11-28T15:51:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/\"},\"wordCount\":373,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/expert-only.com\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/time-E5893753287_1920x1080.jpeg\",\"keywords\":[\"Alter\"],\"articleSection\":[\"SQL Server errors\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/\",\"url\":\"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/\",\"name\":\"Cannot find the object because it does not exist SQL Server error\",\"isPartOf\":{\"@id\":\"https:\/\/expert-only.com\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/time-E5893753287_1920x1080.jpeg\",\"datePublished\":\"2022-05-10T05:41:00+00:00\",\"dateModified\":\"2022-11-28T15:51:51+00:00\",\"description\":\"SQL Server truncate table error Cannot find the object because it does not exist or you do not have permissions. Two solutions to solve it.\",\"breadcrumb\":{\"@id\":\"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/#primaryimage\",\"url\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/time-E5893753287_1920x1080.jpeg\",\"contentUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/time-E5893753287_1920x1080.jpeg\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"en\",\"item\":\"https:\/\/expert-only.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Cannot find the object because it does not exist SQL Server error\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/expert-only.com\/en\/#website\",\"url\":\"https:\/\/expert-only.com\/en\/\",\"name\":\"SQL and IT Tutorials\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/expert-only.com\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/expert-only.com\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/expert-only.com\/en\/#organization\",\"name\":\"Expert-Only\",\"url\":\"https:\/\/expert-only.com\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg\",\"contentUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg\",\"width\":381,\"height\":174,\"caption\":\"Expert-Only\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/ExpertOnlyCom\/\",\"https:\/\/x.com\/expert_only\",\"https:\/\/www.youtube.com\/channel\/UCMS5sR_FwAetB0FmciNvUaA\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef\",\"name\":\"Expert-Only\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g\",\"caption\":\"Expert-Only\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Cannot find the object because it does not exist SQL Server error","description":"SQL Server truncate table error Cannot find the object because it does not exist or you do not have permissions. Two solutions to solve it.","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:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/","og_locale":"en_US","og_type":"article","og_title":"Cannot find the object because it does not exist SQL Server error","og_description":"SQL Server truncate table error Cannot find the object because it does not exist or you do not have permissions. Two solutions to solve it.","og_url":"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/","og_site_name":"SQL and IT Tutorials","article_publisher":"https:\/\/www.facebook.com\/ExpertOnlyCom\/","article_published_time":"2022-05-10T05:41:00+00:00","article_modified_time":"2022-11-28T15:51:51+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/time-E5893753287_1920x1080.jpeg","type":"image\/jpeg"}],"author":"Expert-Only","twitter_card":"summary_large_image","twitter_creator":"@expert_only","twitter_site":"@expert_only","twitter_misc":{"Written by":"Expert-Only","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/#article","isPartOf":{"@id":"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/"},"author":{"name":"Expert-Only","@id":"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef"},"headline":"Cannot find the object because it does not exist SQL Server error","datePublished":"2022-05-10T05:41:00+00:00","dateModified":"2022-11-28T15:51:51+00:00","mainEntityOfPage":{"@id":"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/"},"wordCount":373,"commentCount":0,"publisher":{"@id":"https:\/\/expert-only.com\/en\/#organization"},"image":{"@id":"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/#primaryimage"},"thumbnailUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/time-E5893753287_1920x1080.jpeg","keywords":["Alter"],"articleSection":["SQL Server errors"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/","url":"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/","name":"Cannot find the object because it does not exist SQL Server error","isPartOf":{"@id":"https:\/\/expert-only.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/#primaryimage"},"image":{"@id":"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/#primaryimage"},"thumbnailUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/time-E5893753287_1920x1080.jpeg","datePublished":"2022-05-10T05:41:00+00:00","dateModified":"2022-11-28T15:51:51+00:00","description":"SQL Server truncate table error Cannot find the object because it does not exist or you do not have permissions. Two solutions to solve it.","breadcrumb":{"@id":"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/#primaryimage","url":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/time-E5893753287_1920x1080.jpeg","contentUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/time-E5893753287_1920x1080.jpeg","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/expert-only.com\/en\/errors\/cannot-find-object-it-does-not-exist\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"en","item":"https:\/\/expert-only.com\/en\/"},{"@type":"ListItem","position":2,"name":"Cannot find the object because it does not exist SQL Server error"}]},{"@type":"WebSite","@id":"https:\/\/expert-only.com\/en\/#website","url":"https:\/\/expert-only.com\/en\/","name":"SQL and IT Tutorials","description":"","publisher":{"@id":"https:\/\/expert-only.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/expert-only.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/expert-only.com\/en\/#organization","name":"Expert-Only","url":"https:\/\/expert-only.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg","contentUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg","width":381,"height":174,"caption":"Expert-Only"},"image":{"@id":"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/ExpertOnlyCom\/","https:\/\/x.com\/expert_only","https:\/\/www.youtube.com\/channel\/UCMS5sR_FwAetB0FmciNvUaA"]},{"@type":"Person","@id":"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef","name":"Expert-Only","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/expert-only.com\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g","caption":"Expert-Only"}}]}},"_links":{"self":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts\/7621","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/comments?post=7621"}],"version-history":[{"count":0,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts\/7621\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/media\/6373"}],"wp:attachment":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/media?parent=7621"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/categories?post=7621"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/tags?post=7621"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}