{"id":11220,"date":"2018-05-10T17:21:39","date_gmt":"2018-05-10T15:21:39","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/"},"modified":"2018-05-10T17:21:39","modified_gmt":"2018-05-10T15:21:39","slug":"sql-developer-web-on-the-oracle-cloud","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/","title":{"rendered":"SQL Developer Web on the Oracle Cloud"},"content":{"rendered":"<h2>By Franck Pachot<\/h2>\n<p>.<br \/>\nYou like SQL Developer because it is easy to install (just unzip a jar) and has a lot of features? Me too. It can be even easier if it is provided as a web application: no installation, and no java to take all my laptop RAM&#8230;<br \/>\nWhen I say no installation, you will see that you have some little things to setup here in DBaaS. That will probably be done for you in the managed services (PDBaaS) such as &#8216;Express&#8217; and &#8216;Autonomous&#8217; ones.<br \/>\n<!--more--><br \/>\n<a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CaptureSDW0101.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CaptureSDW0101.png\" alt=\"CaptureSDW010\" width=\"300\" height=\"139\" class=\"alignright size-medium wp-image-23209\" \/><\/a><br \/>\nBe careful, Oracle is a Top-Down deployment company. It seems that new products are announced first and then people have to work hard to make them available. Which means that if, like me, you want to test them immediately you may encounter some disappointment.<br \/>\nThe announce was there. The documentation was there, mentioning that the Cloud Tooling must be upgraded to 18.2.3. But 18.2.3 was there only a few days later. You can check it from the place where the DBaaS looks for its software. Check from https:\/\/storage.us2.oraclecloud.com\/v1\/dbcsswlibp-usoracle29538\/dbaas_patch if you a are not sure.<\/p>\n<p>So, before being able to see SQL Developer in the colorful DBaaS landing page (where you can also access APEX for example) there&#8217;s a bit of command line stuff to do as root.<\/p>\n<h3>Install the latest Cloud Tooling<\/h3>\n<p>SQL Developer Web needs to be installed with the latest version of ORDS, which is installed with the latest version of Cloud Tooling aka dbaastools.rpm<\/p>\n<p>You need to connect as root, so opc and then sudo<\/p>\n<pre><code>\nssh opc@144.21.89.223\nsudo su\n<\/code><\/pre>\n<p>Check if there is a new version to install:<\/p>\n<pre><code>\ndbaascli dbpatchm --run -list_tools | awk '\/Patchid\/{id=$3}END{print id}'\n<\/code><\/pre>\n<p>If something is returned (such as 18.2.3.1.0_180505.1604) you install it:<\/p>\n<pre><code>\ndbaascli dbpatchm --run -toolsinst -rpmversion=$(dbaascli dbpatchm --run -list_tools | awk '\/Patchid\/{id=$3}END{print id}')\n<\/code><\/pre>\n<p>Actually I got an error, and I had to ^C:<\/p>\n<pre><code>\n[root@DB18c opc]# dbaascli dbpatchm --run -toolsinst -rpmversion=$(dbaascli dbpatchm --run -list_tools | awk '\/Patchid\/{id=$3}END{print id}')\nDBAAS CLI version 1.0.0\nExecuting command dbpatchm --run -toolsinst -rpmversion=18.2.3.1.0_180505.1604 -cli\n\/var\/opt\/oracle\/patch\/dbpatchm -toolsinst -rpmversion=18.2.3.1.0_180505.1604 -cli\nUse of uninitialized value in concatenation (.) or string at \/var\/opt\/oracle\/patch\/dbpatchm line 4773.\n^C\n<\/code><\/pre>\n<p>But finally, it was installed because the &#8216;list_tools&#8217; above returns nothing.<\/p>\n<h3>Enable SQL Developer Web<\/h3>\n<p>SQL Developer Web (SDW) is running in ORDS (Oracle REST Data Services) and must be enabled with the ORDS Assistant with the enable_schema_for_sdw action.<br \/>\nHere I&#8217;ll enable it at CDB level. I provide a password for the SDW schema. I create it in a file:<\/p>\n<pre><code>\ncat &gt; password.txt &lt;&lt;&lt;&#039;Ach1z0#d&#039;\n<\/code><\/pre>\n<p>You may secure that better than I do, as I&#8217;m putting the password on command line here. But this is only a test.<\/p>\n<p>Then, still as root, I call the ORDS assistant to install SDW in C##SQLDEVWEB (as I&#8217;m installing it in CDB$ROOT I need a common user name).<\/p>\n<pre><code>\n\/var\/opt\/oracle\/ocde\/assistants\/ords\/ords -ords_action=enable_schema_for_sdw -ords_sdw_schema=\"C##SQLDEVWEB\" -ords_sdw_schema_password=$PWD\/password.txt -ords_sdw_schema_enable_dba=true\n<\/code><\/pre>\n<p>Here is the output. The last lines are important:<\/p>\n<pre><code>\nWARNING: Couldn't obtain the \"dbname\" value from the assistant parameters nor the \"$OCDE_DBNAME\" environment variable\nStarting ORDS\nLogfile is \/var\/opt\/oracle\/log\/ords\/ords_2018-05-10_10:44:12.log\nConfig file is \/var\/opt\/oracle\/ocde\/assistants\/ords\/ords.cfg\nINFO: Starting environment summary checks...\nINFO: Database version : 18000\nINFO: Database CDB : yes\nINFO: Original DBaaS Tools RPM installed : dbaastools-1.0-1+18.1.4.0.0_180123.1336.x86_64\nINFO: Actual DBaaS Tools RPM installed : dbaastools-1.0-1+18.2.3.1.0_180505.1604.x86_64\nINFO: DBTools JDK RPM installed : dbtools_jdk-1.8.0-2.74.el6.x86_64\nINFO: DBTools JDK RPM \"\/var\/opt\/oracle\/rpms\/dbtools\/dbtools_jdk-1.8.0-2.74.el6.x86_64.rpm\" MD5 : 48f13bb401677bfc7cf0748eb1a6990d\nINFO: DBTools ORDS Standalone RPM installed : dbtools_ords_standalone-18.1.0.11.22.15-1.el6.x86_64\nINFO: DBTools ORDS Standalone RPM \"\/var\/opt\/oracle\/rpms\/dbtools\/dbtools_ords_standalone-18.1.0.11.22.15-1.el6.x86_64.rpm\" MD5 : 480355ac3ce0f357d5741c2c2f688901\nINFO: DBTools DBaaS Landing Page RPM installed : dbtools_dbaas_landing_page-2.0.0-1.el6.x86_64\nINFO: DBTools DBaaS Landing Page RPM \"\/var\/opt\/oracle\/rpms\/dbtools\/dbtools_dbaas_landing_page-2.0.0-1.el6.x86_64.rpm\" MD5 : af79e128a56b38de1c3406cfcec966db\nINFO: Environment summary completed...\nINFO: Action mode is \"full\"\nINFO: Database Role is \"PRIMARY\"\nINFO: Enabling \"C##SQLDEVWEB\" schema in \"CDB$ROOT\" container for SQL Developer Web...\n&nbsp;\nSQL*Plus: Release 18.0.0.0.0 Production on Thu May 10 10:44:27 2018\nVersion 18.1.0.0.0\n&nbsp;\nCopyright (c) 1982, 2017, Oracle.  All rights reserved.\n&nbsp;\n&nbsp;\nConnected to:\nOracle Database 18c EE Extreme Perf Release 18.0.0.0.0 - Production\nVersion 18.1.0.0.0\n&nbsp;\nSQL&gt; SQL&gt; SQL&gt; SQL&gt; SQL&gt; SQL&gt; SQL&gt; SQL Developer Web user enable starting...\nEnabling \"C##SQLDEVWEB\" user for SQL Developer Web...\n&nbsp;\nPL\/SQL procedure successfully completed.\nPL\/SQL procedure successfully completed.\nCreating \"C##SQLDEVWEB\" user\nPL\/SQL procedure successfully completed.\nPL\/SQL procedure successfully completed.\nPL\/SQL procedure successfully completed.\nCall completed.\nCommit complete.\nPL\/SQL procedure successfully completed.\nSession altered.\nPL\/SQL procedure successfully completed.\nPL\/SQL procedure successfully completed.\n&nbsp;\n\"C##SQLDEVWEB\" user enabled successfully. The schema to access SQL Developer Web\nis \"c_sqldevweb\"...\n&nbsp;\nPL\/SQL procedure successfully completed.\n&nbsp;\nSQL Developer Web user enable finished...\nDisconnected from Oracle Database 18c EE Extreme Perf Release 18.0.0.0.0 - Production\nVersion 18.1.0.0.0\nINFO:  To access SQL Developer Web through DBaaS Landing Page, the schema \"c_sqldevweb\" needs to be provided...\nINFO: \"C##SQLDEVWEB\" schema in the \"CDB$ROOT\" container for SQL Developer Web was enabled successfully...\n&nbsp;\n<\/code><\/pre>\n<p>The information to remember here is that I will have to provide the c_sqldevweb schema name (which is the schema name I&#8217;ve provided but lowercased and with sequences of &#8216;special&#8217; characters replaced by an underscore). It is lowercased, but it seems that the schemaname has to be provided in uppercase.<\/p>\n<p>Basically what has been done is quite simple: create the C##SQLDEVWEB user and call ORDS.ENABLE_SCHEMA to enable it and map it to the url.<\/p>\n<h3>DBCS Landing Page 2.0.0<\/h3>\n<p>Now I&#8217;m ready to see SQL Developer on the DBCS Landing Page. You access this page by:<\/p>\n<ol>\n<li>Enabling https access from internet (in Access Rules, enable ora_p2_httpssl)<\/li>\n<li>going to default web page for your service, in my case https:\/\/144.21.89.223<\/li>\n<\/ol>\n<p>You may have to accept some self-signed certificates<\/p>\n<p>And here it is with SQL Developer Web in the middle:<br \/>\n<a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CaptureSDW011.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CaptureSDW011.png\" alt=\"CaptureSDW011\" width=\"1024\" height=\"375\" class=\"aligncenter size-large wp-image-23216\" \/><\/a><\/p>\n<p>The above shows PDB1\/pdbadmin for the schema but I installed it at CDB level and the log above tells me that the schema is c_sqldevweb, so given the input, I change the schema to c_sqldevweb then on the login page. Finally, the direct url in my example is https:\/\/144.21.89.223\/ords\/c_sqldevweb\/_sdw.<\/p>\n<p>I enter C##SQLDEVWEB (uppercase here) as the user and Ach1z0#d as the password.<\/p>\n<p>And here is the Dashboard:<br \/>\n<a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CaptureSDW012.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CaptureSDW012.png\" alt=\"CaptureSDW012\" width=\"1024\" height=\"482\" class=\"aligncenter size-large wp-image-23223\" \/><\/a><\/p>\n<p>Do not worry about the 97% storage used which tells me that SYSTEM is full. My datafiles are autoextensible.<\/p>\n<p>Just go to the SQL Worksheet and check your files:<\/p>\n<pre><code>\nselect tablespace_name,bytes\/1024\/1024 \"MBytes\", maxbytes\/1024\/1024\/1024 \"MaxGB\", autoextensible from dba_data_files\n<\/code><\/pre>\n<h3>Enable SDW for local PDB user<\/h3>\n<p>To enable a PDB local user, I run ORDS assistant with a local user name (PDBADMIN here) and an additional parameter with the PDB name (PDB1 here).<\/p>\n<pre><code>\ncat &gt; password.txt &lt;&lt;&lt;&#039;Ach1z0#d&#039;\n\/var\/opt\/oracle\/ocde\/assistants\/ords\/ords -ords_action=enable_schema_for_sdw -ords_sdw_schema=PDBADMIN -ords_sdw_schema_password=$PWD\/password.txt -ords_sdw_schema_enable_dba=true -ords_sdw_schema_container=PDB1\n<\/code><\/pre>\n<p>Now, I can connect to it with PDB1\/pdbadmin as schema name.<\/p>\n<h3>Error handling<\/h3>\n<p><a href=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CaptureRestCallFail.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CaptureRestCallFail.png\" alt=\"CaptureRestCallFail\" width=\"300\" height=\"178\" class=\"alignleft size-medium wp-image-23230\" \/><\/a><br \/>\nIf, like me, you are not used to ORDS applications, you may waste some minutes looking at a splash screen waiting for the result. Always look at the message bar. All actions are REST calls and the message bar will show if a call is running or completed successfully or not. The example on the right shows &#8216;call failed&#8217;. You can click on it to see the REST call, and the error.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>By Franck Pachot . You like SQL Developer because it is easy to install (just unzip a jar) and has a lot of features? Me too. It can be even easier if it is provided as a web application: no installation, and no java to take all my laptop RAM&#8230; When I say no installation, [&hellip;]<\/p>\n","protected":false},"author":27,"featured_media":11225,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[955,59],"tags":[135,96,1352,1134],"type_dbi":[],"class_list":["post-11220","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cloud","category-oracle","tag-cloud","tag-oracle","tag-ords","tag-sql-developer"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>SQL Developer Web on the Oracle Cloud - dbi Blog<\/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:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SQL Developer Web on the Oracle Cloud\" \/>\n<meta property=\"og:description\" content=\"By Franck Pachot . You like SQL Developer because it is easy to install (just unzip a jar) and has a lot of features? Me too. It can be even easier if it is provided as a web application: no installation, and no java to take all my laptop RAM&#8230; When I say no installation, [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2018-05-10T15:21:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CaptureSDW010.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1138\" \/>\n\t<meta property=\"og:image:height\" content=\"638\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Oracle Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Oracle Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/\"},\"author\":{\"name\":\"Oracle Team\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"headline\":\"SQL Developer Web on the Oracle Cloud\",\"datePublished\":\"2018-05-10T15:21:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/\"},\"wordCount\":791,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CaptureSDW010.png\",\"keywords\":[\"Cloud\",\"Oracle\",\"ORDS\",\"SQL Developer\"],\"articleSection\":[\"Cloud\",\"Oracle\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/\",\"name\":\"SQL Developer Web on the Oracle Cloud - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CaptureSDW010.png\",\"datePublished\":\"2018-05-10T15:21:39+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CaptureSDW010.png\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CaptureSDW010.png\",\"width\":1138,\"height\":638},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SQL Developer Web on the Oracle Cloud\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee\",\"name\":\"Oracle Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g\",\"caption\":\"Oracle Team\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/oracle-team\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"SQL Developer Web on the Oracle Cloud - dbi Blog","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:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/","og_locale":"en_US","og_type":"article","og_title":"SQL Developer Web on the Oracle Cloud","og_description":"By Franck Pachot . You like SQL Developer because it is easy to install (just unzip a jar) and has a lot of features? Me too. It can be even easier if it is provided as a web application: no installation, and no java to take all my laptop RAM&#8230; When I say no installation, [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/","og_site_name":"dbi Blog","article_published_time":"2018-05-10T15:21:39+00:00","og_image":[{"width":1138,"height":638,"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CaptureSDW010.png","type":"image\/png"}],"author":"Oracle Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Oracle Team","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/"},"author":{"name":"Oracle Team","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"headline":"SQL Developer Web on the Oracle Cloud","datePublished":"2018-05-10T15:21:39+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/"},"wordCount":791,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CaptureSDW010.png","keywords":["Cloud","Oracle","ORDS","SQL Developer"],"articleSection":["Cloud","Oracle"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/","url":"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/","name":"SQL Developer Web on the Oracle Cloud - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CaptureSDW010.png","datePublished":"2018-05-10T15:21:39+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CaptureSDW010.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2022\/04\/CaptureSDW010.png","width":1138,"height":638},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/sql-developer-web-on-the-oracle-cloud\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"SQL Developer Web on the Oracle Cloud"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/66ab87129f2d357f09971bc7936a77ee","name":"Oracle Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f711f7cd2c9b09bf2627133755b569fb5be0694810cfd33033bdd095fedba86d?s=96&d=mm&r=g","caption":"Oracle Team"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/oracle-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/11220","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/27"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=11220"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/11220\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media\/11225"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=11220"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=11220"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=11220"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=11220"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}