{"id":37358,"date":"2020-05-08T06:45:00","date_gmt":"2020-05-08T13:45:00","guid":{"rendered":"https:\/\/virtual-dba.com\/?p=37358"},"modified":"2021-02-10T18:16:07","modified_gmt":"2021-02-11T01:16:07","slug":"ora-00933-sql-command-not-properly-ended","status":"publish","type":"post","link":"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/","title":{"rendered":"ORA-00933: SQL command not properly ended"},"content":{"rendered":"\n<p>Prior to diving into this error, it&#8217;s important we discuss how Oracle processes queries logically and in what order.<\/p>\n\n\n\n<p>Oracle has a couple of rules as to how it executes each query in a specific processing order. Oracle processes a query as below:<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Gathers rows based on JOINS and the FROM clause determining the objects the query is running against<\/li><li>Filters out rows based on the WHERE clause<\/li><li>Groups said rows with the GROUP BY clause<\/li><li>Filters groups based on the HAVING clause<\/li><li>Orders the results based on the ORDER BY clause<br><strong>NOTE:<\/strong> the ORDER BY clause must contain values from the GROUP BY clause or a group function<\/li><li>Limits the rows based on the LIMIT clause to only return a specific amount of rows<\/li><\/ol>\n\n\n\n<p>Now that we understand the overall query processing order, the &#8220;ORA-00933: SQL command not properly ended&#8221; error is caused by a clause in the code that doesn&#8217;t fall within the bounds and rules of the order. The error is commonly caused by the following situations.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>An INSERT statement with an ORDER BY clause. Oracle doesn&#8217;t support the inserting of rows in a certain order via the ORDER BY clause \u2014 that is done during sorting operations of SELECT queries. To fix this, simply remove the ORDER BY clause. Note: there are cases where you would want the data ordered so you can insert the clause in a subquery, which is common with CREATE VIEW statements.<\/li><li>A DELETE statement with an INNER JOIN or ORDER BY clause. Similar to the previous situation, Oracle doesn&#8217;t allow ordering rows in a particular fashion to then be deleted. You could resolve the query containing joins by converting the INNER JOIN to WHERE EXISTS (or a subquery). For example:<\/li><\/ul>\n\n\n<pre><code><strong>From:<\/strong>\nDELETE FROM t1\nINNER JOIN t2 on t1.id = t2.id\nWHERE t2.value2 = '...';\n\n<strong>To:<\/strong>\nDELETE FROM t1\nWHERE id in (\n    SELECT id\n    FROM t2\n    WHERE t2.value2 = '...');\n<\/code><\/pre>\n\n\n<ul class=\"wp-block-list\"><li>An UPDATE statement with an INNER JOIN. Similar to the previous situation, Oracle doesn&#8217;t allow a join clause on UPDATEs. To resolve this, convert the join to a subquery. For example:<\/li><\/ul>\n\n\n<pre><code><strong>From:<\/strong>\nUPDATE t1\nSET t1.value1 = t2.value2\nINNER JOIN t2 ON t1.id = t2.id;\n \n<strong>To:<\/strong>\nUPDATE t1\nSET t1.value1 = (\n  SELECT value2\n  FROM t2\n  WHERE t1.id = t2.id);\n<\/code><\/pre>","protected":false},"excerpt":{"rendered":"<p>Prior to diving into this error, it&#8217;s important we discuss how Oracle processes queries logically and in what order. Oracle has a couple of rules as to how it executes each query in a specific processing order. Oracle processes a query as below: Gathers rows based on JOINS and the FROM clause determining the objects [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":37364,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"off","_et_pb_old_content":"","_et_gb_content_width":"","content-type":"","footnotes":""},"categories":[4166,23],"tags":[4086,1149],"class_list":["post-37358","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-oracle","tag-databases","tag-oracle-error"],"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>ORA-00933: SQL command not properly ended<\/title>\n<meta name=\"description\" content=\"This blog discusses the ORA-00933: SQL command not properly ended error and how Oracle processes queries logically and in what order.\" \/>\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\/ora-00933-sql-command-not-properly-ended\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"ORA-00933: SQL command not properly ended\" \/>\n<meta property=\"og:description\" content=\"This blog discusses the ORA-00933: SQL command not properly ended error and how Oracle processes queries logically and in what order.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/\" \/>\n<meta property=\"og:site_name\" content=\"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\" \/>\n<meta property=\"article:published_time\" content=\"2020-05-08T13:45:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-02-11T01:16:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/virtual-dba.com\/media\/ORA-00933-SQL-command-not-properly-ended.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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/\"},\"author\":{\"name\":\"XTIVIA\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1\"},\"headline\":\"ORA-00933: SQL command not properly ended\",\"datePublished\":\"2020-05-08T13:45:00+00:00\",\"dateModified\":\"2021-02-11T01:16:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/\"},\"wordCount\":330,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/ORA-00933-SQL-command-not-properly-ended.jpg\",\"keywords\":[\"databases\",\"oracle error\"],\"articleSection\":[\"Blog\",\"Oracle\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/\",\"url\":\"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/\",\"name\":\"ORA-00933: SQL command not properly ended\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/ORA-00933-SQL-command-not-properly-ended.jpg\",\"datePublished\":\"2020-05-08T13:45:00+00:00\",\"dateModified\":\"2021-02-11T01:16:07+00:00\",\"description\":\"This blog discusses the ORA-00933: SQL command not properly ended error and how Oracle processes queries logically and in what order.\",\"breadcrumb\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/#primaryimage\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/ORA-00933-SQL-command-not-properly-ended.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/ORA-00933-SQL-command-not-properly-ended.jpg\",\"width\":557,\"height\":291,\"caption\":\"ORA-00933 - SQL command not properly ended\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtual-dba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"ORA-00933: SQL command not properly ended\"}]},{\"@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":"ORA-00933: SQL command not properly ended","description":"This blog discusses the ORA-00933: SQL command not properly ended error and how Oracle processes queries logically and in what order.","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\/ora-00933-sql-command-not-properly-ended\/","og_locale":"en_US","og_type":"article","og_title":"ORA-00933: SQL command not properly ended","og_description":"This blog discusses the ORA-00933: SQL command not properly ended error and how Oracle processes queries logically and in what order.","og_url":"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/","og_site_name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","article_published_time":"2020-05-08T13:45:00+00:00","article_modified_time":"2021-02-11T01:16:07+00:00","og_image":[{"width":557,"height":291,"url":"https:\/\/virtual-dba.com\/media\/ORA-00933-SQL-command-not-properly-ended.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":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/#article","isPartOf":{"@id":"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/"},"author":{"name":"XTIVIA","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1"},"headline":"ORA-00933: SQL command not properly ended","datePublished":"2020-05-08T13:45:00+00:00","dateModified":"2021-02-11T01:16:07+00:00","mainEntityOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/"},"wordCount":330,"commentCount":0,"publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/ORA-00933-SQL-command-not-properly-ended.jpg","keywords":["databases","oracle error"],"articleSection":["Blog","Oracle"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/","url":"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/","name":"ORA-00933: SQL command not properly ended","isPartOf":{"@id":"https:\/\/virtual-dba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/#primaryimage"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/ORA-00933-SQL-command-not-properly-ended.jpg","datePublished":"2020-05-08T13:45:00+00:00","dateModified":"2021-02-11T01:16:07+00:00","description":"This blog discusses the ORA-00933: SQL command not properly ended error and how Oracle processes queries logically and in what order.","breadcrumb":{"@id":"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/#primaryimage","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/ORA-00933-SQL-command-not-properly-ended.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/ORA-00933-SQL-command-not-properly-ended.jpg","width":557,"height":291,"caption":"ORA-00933 - SQL command not properly ended"},{"@type":"BreadcrumbList","@id":"https:\/\/virtual-dba.com\/blog\/ora-00933-sql-command-not-properly-ended\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtual-dba.com\/"},{"@type":"ListItem","position":2,"name":"ORA-00933: SQL command not properly ended"}]},{"@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\/37358","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=37358"}],"version-history":[{"count":0,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/37358\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media\/37364"}],"wp:attachment":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media?parent=37358"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/categories?post=37358"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/tags?post=37358"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}