{"id":37585,"date":"2020-07-16T14:42:27","date_gmt":"2020-07-16T21:42:27","guid":{"rendered":"https:\/\/virtual-dba.com\/?p=37585"},"modified":"2025-11-12T09:25:32","modified_gmt":"2025-11-12T16:25:32","slug":"resolving-the-ora-24247","status":"publish","type":"post","link":"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/","title":{"rendered":"Resolving the ORA-24247: network access denied by access control list (ACL) error"},"content":{"rendered":"\n<p>Before Oracle 11g access to network services was controlled by granting privileges on packages such as UTL_HTTP, UTL_TCP, UTL_SMTP, and UTL_MAIL. After 11.1 Oracle introduced Application Control Lists (ACL) as part of their Application Security and has now added Application Control Entry (ACE).<\/p>\n\n\n\n<p>If you run into the ORA-24247: network access denied by access control list (ACL) error you can use one of the following methods to resolve the error.<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>The best solution to the ORA-24247 error is to create an ACE using the DBMS_NETWORK_ACL_ADMIN.APPEND_HOST_ACE procedure to grant access control privileges to a user. According to Oracle documentation, the procedure will append an access control entry with specified privilege to the ACL for the given host. If the ACL does not exist it will create it for you. The syntax for the procedure is listed below.<\/li><\/ol>\n\n\n<pre><code>BEGIN\n DBMS_NETWORK_ACL_ADMIN.APPEND_HOST_ACE (\n  host         =&gt; 'host_name', \n  lower_port   =&gt; null|port_number,\n  upper_port   =&gt; null|port_number,\n  ace          =&gt; ace_definition); \nEND;\n<\/code><\/pre>\n\n\n<ul class=\"wp-block-list\"><li>host: can be either the ip address or the hostname. You can also use a wildcard for a domain or an IP subnet.<br>host =&gt; &#8216;mailhost.com&#8217;<br>host =&gt; &#8216;*.domain.com&#8217;<\/li><\/ul>\n\n\n\n<ul class=\"wp-block-list\"><li>lower_port and upper_port: these values are used to set the lower and upper port range. This is only used for the connect privilege and can be omitted for the resolve privilege. If set to null then there are no port restrictions.<br>lower_port =&gt; 80<br>upper_port =&gt; 3999<\/li><\/ul>\n\n\n\n<ul class=\"wp-block-list\"><li>ace: You define the ACE by using the XS$ACE_TYPE constant with the following specifications.  <ul><li>privilege_list: this can be one or more of the following, http, http_proxy, smtp, resolve, connect, jdwp. Enclose each privilege with single quotes and separate each with a comma.<\/li><\/ul><ul><li>principal_name: enter either a database user or role.<\/li><\/ul><ul><li>principal_type: enter xs_acl_ptype_db for a database user or role.<\/li><\/ul><\/li><\/ul>\n\n\n\n<p>In this example, the user Scott is being granted network access to send SMTP to a host, mailhost.com, through the UTL_SMTP and UTL_MAIL packages.<\/p>\n\n\n<pre><code>BEGIN\nDBMS_NETWORK_ACL_ADMIN.APPEND_HOST_ACE\n(\nHOST =&gt; 'mailhost.com',\nLOWER_PORT =&gt; NULL,\nUPPER_PORT =&gt; NULL,\nACE =&gt; XS$ACE_TYPE(PRIVILEGE_LIST =&gt; xs$name_list('smtp'),\n    \t\t\t     PRINCIPAL_NAME =&gt; 'Scott',\n    \t\t     PRINCIPAL_TYPE =&gt; xs_acl.ptype_db\n   \t\t   )\n);\nEND;\n\/\n<\/code><\/pre>\n\n\n<ol class=\"wp-block-list\" start=\"2\"><li>The second method for resolving the ORA-24247 error is to grant the user requesting network access the XDBADMIN role.  <br>SQL&gt; grant XDBADMIN to Scott;<\/li><\/ol>\n\n\n\n<p>This will grant an extra privilege to the Oracle user and is not recommended.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Before Oracle 11g access to network services was controlled by granting privileges on packages such as UTL_HTTP, UTL_TCP, UTL_SMTP, and UTL_MAIL. After 11.1 Oracle introduced Application Control Lists (ACL) as part of their Application Security and has now added Application Control Entry (ACE). If you run into the ORA-24247: network access denied by access control [&hellip;]<\/p>\n","protected":false},"author":40,"featured_media":37589,"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":[4105],"class_list":["post-37585","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-oracle","tag-oracle-11g"],"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>Resolving the ORA-24247: network access denied by ACL error<\/title>\n<meta name=\"description\" content=\"If you run into the ORA-24247: network access denied by access control list (ACL) error you can use one of the following methods to resolve the error.\" \/>\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\/resolving-the-ora-24247\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Resolving the ORA-24247: network access denied by access control list (ACL) error\" \/>\n<meta property=\"og:description\" content=\"If you run into the ORA-24247: network access denied by access control list (ACL) error you can use one of the following methods to resolve the error.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/\" \/>\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-07-16T21:42:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-12T16:25:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Resolving-the-ORA-24247.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=\"Doug Groves\" \/>\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=\"Doug Groves\" \/>\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\":\"TechArticle\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/\"},\"author\":{\"name\":\"Doug Groves\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/425d67b3482ca79f1f1e191453d1bd51\"},\"headline\":\"Resolving the ORA-24247: network access denied by access control list (ACL) error\",\"datePublished\":\"2020-07-16T21:42:27+00:00\",\"dateModified\":\"2025-11-12T16:25:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/\"},\"wordCount\":371,\"commentCount\":6,\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Resolving-the-ORA-24247.jpg\",\"keywords\":[\"Oracle 11g\"],\"articleSection\":[\"Blog\",\"Oracle\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/\",\"url\":\"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/\",\"name\":\"Resolving the ORA-24247: network access denied by ACL error\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Resolving-the-ORA-24247.jpg\",\"datePublished\":\"2020-07-16T21:42:27+00:00\",\"dateModified\":\"2025-11-12T16:25:32+00:00\",\"description\":\"If you run into the ORA-24247: network access denied by access control list (ACL) error you can use one of the following methods to resolve the error.\",\"breadcrumb\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/#primaryimage\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Resolving-the-ORA-24247.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Resolving-the-ORA-24247.jpg\",\"width\":557,\"height\":291,\"caption\":\"Resolving the ORA-24247\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtual-dba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Resolving the ORA-24247: network access denied by access control list (ACL) error\"}]},{\"@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\/425d67b3482ca79f1f1e191453d1bd51\",\"name\":\"Doug Groves\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d94da2519ee1df3cfdcf196923b538e1c09176e646b4e668430e58edc179715b?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d94da2519ee1df3cfdcf196923b538e1c09176e646b4e668430e58edc179715b?s=96&d=mm&r=g\",\"caption\":\"Doug Groves\"},\"url\":\"https:\/\/virtual-dba.com\/author\/doug-groves\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Resolving the ORA-24247: network access denied by ACL error","description":"If you run into the ORA-24247: network access denied by access control list (ACL) error you can use one of the following methods to resolve the error.","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\/resolving-the-ora-24247\/","og_locale":"en_US","og_type":"article","og_title":"Resolving the ORA-24247: network access denied by access control list (ACL) error","og_description":"If you run into the ORA-24247: network access denied by access control list (ACL) error you can use one of the following methods to resolve the error.","og_url":"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/","og_site_name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","article_published_time":"2020-07-16T21:42:27+00:00","article_modified_time":"2025-11-12T16:25:32+00:00","og_image":[{"width":557,"height":291,"url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Resolving-the-ORA-24247.jpg","type":"image\/jpeg"}],"author":"Doug Groves","twitter_card":"summary_large_image","twitter_creator":"@virtual_dba","twitter_site":"@virtual_dba","twitter_misc":{"Written by":"Doug Groves","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/#article","isPartOf":{"@id":"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/"},"author":{"name":"Doug Groves","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/425d67b3482ca79f1f1e191453d1bd51"},"headline":"Resolving the ORA-24247: network access denied by access control list (ACL) error","datePublished":"2020-07-16T21:42:27+00:00","dateModified":"2025-11-12T16:25:32+00:00","mainEntityOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/"},"wordCount":371,"commentCount":6,"publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Resolving-the-ORA-24247.jpg","keywords":["Oracle 11g"],"articleSection":["Blog","Oracle"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/","url":"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/","name":"Resolving the ORA-24247: network access denied by ACL error","isPartOf":{"@id":"https:\/\/virtual-dba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/#primaryimage"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Resolving-the-ORA-24247.jpg","datePublished":"2020-07-16T21:42:27+00:00","dateModified":"2025-11-12T16:25:32+00:00","description":"If you run into the ORA-24247: network access denied by access control list (ACL) error you can use one of the following methods to resolve the error.","breadcrumb":{"@id":"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/#primaryimage","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Resolving-the-ORA-24247.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Resolving-the-ORA-24247.jpg","width":557,"height":291,"caption":"Resolving the ORA-24247"},{"@type":"BreadcrumbList","@id":"https:\/\/virtual-dba.com\/blog\/resolving-the-ora-24247\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtual-dba.com\/"},{"@type":"ListItem","position":2,"name":"Resolving the ORA-24247: network access denied by access control list (ACL) error"}]},{"@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\/425d67b3482ca79f1f1e191453d1bd51","name":"Doug Groves","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d94da2519ee1df3cfdcf196923b538e1c09176e646b4e668430e58edc179715b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d94da2519ee1df3cfdcf196923b538e1c09176e646b4e668430e58edc179715b?s=96&d=mm&r=g","caption":"Doug Groves"},"url":"https:\/\/virtual-dba.com\/author\/doug-groves\/"}]}},"_links":{"self":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/37585","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\/40"}],"replies":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/comments?post=37585"}],"version-history":[{"count":0,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/37585\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media\/37589"}],"wp:attachment":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media?parent=37585"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/categories?post=37585"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/tags?post=37585"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}