{"id":3774,"date":"2021-11-05T08:00:00","date_gmt":"2021-11-05T05:00:00","guid":{"rendered":"https:\/\/www.dataplatform.gr\/?p=3774"},"modified":"2022-07-18T00:23:44","modified_gmt":"2022-07-17T21:23:44","slug":"pos-kanoyme-mia-kainoyrgia-egkatasta","status":"publish","type":"post","link":"https:\/\/www.dataplatform.gr\/en\/pos-kanoyme-mia-kainoyrgia-egkatasta\/","title":{"rendered":"How to do a fresh installation of Oracle Database on Linux"},"content":{"rendered":"<p>In this article we will see step by step how to install Oracle Database 19c on Unix and more specifically on Oracle Linux \/ Red Hat. <\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"\u03c4\u03b1-\u03c0\u03c1\u03bf\u03b1\u03c0\u03b1\u03b9\u03c4\u03bf\u03cd\u03bc\u03b5\u03bd\u03b1\">The prerequisites<\/h2>\n\n\n\n<p>To begin with we should have a graphical environment either by connecting directly to the machine, or by using a terminal that allows to bring up a graphic like <a href=\"https:\/\/mobaxterm.mobatek.net\/download.html\" target=\"_blank\" rel=\"noreferrer noopener\">mobaXterm<\/a>.<\/p>\n\n\n\n<p>To download the files we need to install Oracle Database, click <a href=\"https:\/\/www.oracle.com\/database\/technologies\/oracle-database-software-downloads.html\" target=\"_blank\" rel=\"noreferrer noopener\">here<\/a>.<\/p>\n\n\n\n<p>Then we will have to install the required libraries on our operating system. To do this we run the following:<\/p>\n\n\n\n<pre class=\"wp-block-code\" data-no-translation=\"\" data-no-auto-translation=\"\"><code>curl -o oracle-database-preinstall-19c-1.0-2.el8.x86_64.rpm https:\/\/yum.oracle.com\/repo\/OracleLinux\/OL8\/appstream\/x86_64\/getPackage\/oracle-database-preinstall-19c-1.0-2.el8.x86_64.rpm\n\nyum -y localinstall oracle-database-preinstall-19c-1.0-2.el8.x86_64.rpm\n<\/code><\/pre>\n\n\n\n<p>Then we need to go to SELINUX setting below and change the value to <strong>permissive<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\" data-no-translation=\"\" data-no-auto-translation=\"\"><code>sudo vi \/etc\/selinux\/config\n\n\nSELINUX=permissive ##\u03b1\u03bb\u03bb\u03ac\u03b6\u03bf\u03c5\u03bc\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7 \u03c4\u03b9\u03bc\u03ae<\/code><\/pre>\n\n\n\n<p>As a next step, stop and disable the firewall:<\/p>\n\n\n\n<pre class=\"wp-block-code\" data-no-translation=\"\" data-no-auto-translation=\"\"><code>systemctl stop firewalld\nsystemctl disable firewalld<\/code><\/pre>\n\n\n\n<p>If we didn&#039;t already have a user on the operating system <strong><em>oracle<\/em><\/strong> we should set the password for it:<\/p>\n\n\n\n<pre class=\"wp-block-code\" data-no-translation=\"\" data-no-auto-translation=\"\"><code>passwd oracle\n<\/code><\/pre>\n\n\n\n<p>Finally, we create the folder that will contain the Oracle binaries and give the Oracle user access to the root folder that will contain them and our data:<\/p>\n\n\n\n<pre class=\"wp-block-code\" data-no-translation=\"\" data-no-auto-translation=\"\"><code>mkdir -p \/oracle\/app\/oracle\/product\/19.3.0\/dbhome_1\n\nchown -R oracle:oinstall \/oracle\nchmod -R 775 \/oracle<\/code><\/pre>\n\n\n\n<p>After finishing the prerequisites, reboot the server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"\u03b7-\u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\">The installation<\/h2>\n\n\n\n<p>When the machine restarts we log in as a user <strong><em>oracle<\/em><\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\" data-no-translation=\"\" data-no-auto-translation=\"\"><code>su oracle<\/code><\/pre>\n\n\n\n<p>Go to the folder we made before that will be the Oracle binaries and unzip the Oracle Database files we downloaded:<\/p>\n\n\n\n<pre class=\"wp-block-code\" data-no-translation=\"\" data-no-auto-translation=\"\"><code>cd \/oracle\/app\/oracle\/product\/19.3.0\/dbhome_1\n\nunzip -oq \/home\/oracle\/Downloads\/LINUX.X64_193000_db_home.zip\n<\/code><\/pre>\n\n\n\n<p>Before running the setup, because in this particular case the Oracle Linux 8 version is not yet supported, in order not to have a warning message during the installation, we run the following so that it behaves as if it were version 7.6:<\/p>\n\n\n\n<pre class=\"wp-block-code\" data-no-translation=\"\" data-no-auto-translation=\"\"><code>export CV_ASSUME_DISTID=OEL7.6<\/code><\/pre>\n\n\n\n<p>Now we are ready to run the setup:<\/p>\n\n\n\n<pre class=\"wp-block-code\" data-no-translation=\"\" data-no-auto-translation=\"\"><code>.\/runInstaller<\/code><\/pre>\n\n\n\n<p>After a while the graphical environment will appear, there we will choose to install only the binaries (Set Up Software Only) and we will create a base later:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"797\" height=\"630\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-01.png\" alt=\"\" class=\"wp-image-3777\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-01.png 797w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-01-300x237.png 300w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-01-768x607.png 768w\" sizes=\"auto, (max-width: 797px) 100vw, 797px\" \/><figcaption>01<\/figcaption><\/figure>\n\n\n\n<p>We choose that it will be a Single Instance and not a cluster:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"798\" height=\"630\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-02.png\" alt=\"\" class=\"wp-image-3776\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-02.png 798w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-02-300x237.png 300w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-02-768x606.png 768w\" sizes=\"auto, (max-width: 798px) 100vw, 798px\" \/><figcaption>02<\/figcaption><\/figure>\n\n\n\n<p>We define the folder above product as Oracle Base:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"801\" height=\"630\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-03.png\" alt=\"\" class=\"wp-image-3775\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-03.png 801w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-03-300x236.png 300w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-03-768x604.png 768w\" sizes=\"auto, (max-width: 801px) 100vw, 801px\" \/><figcaption>03<\/figcaption><\/figure>\n\n\n\n<p>We define the user <strong><em>oracle <\/em><\/strong>as the administrator in all groups:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"797\" height=\"626\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-04.png\" alt=\"\" class=\"wp-image-3792\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-04.png 797w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-04-300x236.png 300w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-04-768x603.png 768w\" sizes=\"auto, (max-width: 797px) 100vw, 797px\" \/><figcaption>04<\/figcaption><\/figure>\n\n\n\n<p>We choose to run the scripts that are needed automatically by selecting the checkbox and adding the password of the root or sudo user:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"797\" height=\"631\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-05.png\" alt=\"\" class=\"wp-image-3791\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-05.png 797w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-05-300x238.png 300w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-05-768x608.png 768w\" sizes=\"auto, (max-width: 797px) 100vw, 797px\" \/><figcaption>05<\/figcaption><\/figure>\n\n\n\n<p>In the next step it will show us that it may be missing, in this particular case I have 500mb less swap memory so I choose to ignore it:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-06.png\" alt=\"\" class=\"wp-image-3790\" width=\"796\" height=\"631\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-06.png 796w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-06-300x238.png 300w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-06-768x609.png 768w\" sizes=\"auto, (max-width: 796px) 100vw, 796px\" \/><figcaption>06<\/figcaption><\/figure>\n\n\n\n<p>In the last step of the installation we do a quick check that we have set the right parameters:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"798\" height=\"629\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-07.png\" alt=\"\" class=\"wp-image-3789\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-07.png 798w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-07-300x236.png 300w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-07-768x605.png 768w\" sizes=\"auto, (max-width: 798px) 100vw, 798px\" \/><figcaption>07<\/figcaption><\/figure>\n\n\n\n<p>After the installation is complete, for the user to have <em><strong>oracle <\/strong><\/em>the information with its path and environment and not having to go through it again by hand by exporting we can put it in the file <strong><em>bash_profile <\/em><\/strong>the <strong><em>profile<\/em><\/strong>.<\/p>\n\n\n\n<p>To do this we go to the user&#039;s home directory <em><strong>oracle<\/strong><\/em> and edit the corresponding file:<\/p>\n\n\n\n<pre class=\"wp-block-code\" data-no-translation=\"\" data-no-auto-translation=\"\"><code>cd $HOME\nvi .bash_profile\n\n\n<\/code><\/pre>\n\n\n\n<p>There we add the following entries:<\/p>\n\n\n\n<pre class=\"wp-block-code\" data-no-translation=\"\" data-no-auto-translation=\"\"><code>export ORACLE_BASE=\/oracle\/app\/oracle\nexport ORACLE_HOME=\/oracle\/app\/oracle\/product\/19.3.0\/dbhome_1\nexport ORACLE_SID=oradev1\nexport TNS_ADMIN=$ORACLE_HOME\/network\/admin\n\nexport NLS_LANG=AMERICAN_AMERICA.AL32UTF8\nexport PATH=$PATH:$ORACLE_HOME\/bin\nexport CLASSPATH=$ORACLE_HOME\/jlib:$ORACLE_HOME\/rdbms\/jlib\n\nexport LD_LIBRARY_PATH=$ORACLE_HOME\/lib:\/lib:\/usr\/lib\n<\/code><\/pre>\n\n\n\n<p>As <em><strong>ORACLE_SID <\/strong><\/em>we define the name of the instance we will connect to, which we will create in the next steps. It&#039;s just an opportunity to define it from now on, don&#039;t forget that we can have multiple instances so the one we connect to is defined by this variable:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"653\" height=\"368\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-08.png\" alt=\"\" class=\"wp-image-3788\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-08.png 653w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-08-300x169.png 300w\" sizes=\"auto, (max-width: 653px) 100vw, 653px\" \/><figcaption>08 <\/figcaption><\/figure>\n\n\n\n<p>To get the changes without rebooting, run the following:<\/p>\n\n\n\n<pre class=\"wp-block-code\" data-no-translation=\"\" data-no-auto-translation=\"\"><code>source ~\/.bash_profile<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"\u03b7-\u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b5\u03af\u03b1-\u03c4\u03b7\u03c2-\u03b2\u03ac\u03c3\u03b7\u03c2\">Creating the base<\/h2>\n\n\n\n<p>After we finished the installation it&#039;s time to fix it <strong><em>instance <\/em><\/strong>with our base.<\/p>\n\n\n\n<p>So to do this and start the wizard that will guide us, we run the following command as <strong><em>oracle <\/em><\/strong>user:<\/p>\n\n\n\n<pre class=\"wp-block-code\" data-no-translation=\"\" data-no-auto-translation=\"\"><code>dbca<\/code><\/pre>\n\n\n\n<p>After a while the following wizard will appear. There we choose <strong><em>Advanced configuration<\/em><\/strong>:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"802\" height=\"632\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-09.png\" alt=\"\" class=\"wp-image-3787\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-09.png 802w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-09-300x236.png 300w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-09-768x605.png 768w\" sizes=\"auto, (max-width: 802px) 100vw, 802px\" \/><figcaption>09<\/figcaption><\/figure>\n\n\n\n<p>In the next step we choose <strong><em>Oracle Single Instance database<\/em><\/strong> and <em><strong>General Purpose<\/strong><\/em>:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"802\" height=\"632\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-10.png\" alt=\"\" class=\"wp-image-3786\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-10.png 802w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-10-300x236.png 300w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-10-768x605.png 768w\" sizes=\"auto, (max-width: 802px) 100vw, 802px\" \/><figcaption>10<\/figcaption><\/figure>\n\n\n\n<p>Next we define the <strong>base name<\/strong> and <strong>name of the instance<\/strong>, in this case oradev and oradev1 respectively. We also remove the checkbox so that it is not created as a container database:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-11.png\" alt=\"\" class=\"wp-image-3785\" width=\"802\" height=\"632\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-11.png 802w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-11-300x236.png 300w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-11-768x605.png 768w\" sizes=\"auto, (max-width: 802px) 100vw, 802px\" \/><figcaption>11<\/figcaption><\/figure>\n\n\n\n<p>Then we choose where we want the data files to be saved, choosing <strong>multiplex<\/strong> <strong>redo<\/strong> <strong>logs<\/strong> <strong>and<\/strong> <strong>cont<\/strong><em><strong>rol<\/strong> <strong>files<\/strong><\/em> we can have a copy of each redo and control file in a separate location (for each redo log group):<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"802\" height=\"632\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-12.png\" alt=\"\" class=\"wp-image-3784\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-12.png 802w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-12-300x236.png 300w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-12-768x605.png 768w\" sizes=\"auto, (max-width: 802px) 100vw, 802px\" \/><figcaption>12<\/figcaption><\/figure>\n\n\n\n<p>In the next tab we set the path for the <em><strong>Fast Recovery Area <\/strong><\/em>and its size as we also enable archiving so that we can have an online backup:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"802\" height=\"632\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-13.png\" alt=\"\" class=\"wp-image-3783\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-13.png 802w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-13-300x236.png 300w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-13-768x605.png 768w\" sizes=\"auto, (max-width: 802px) 100vw, 802px\" \/><figcaption>13<\/figcaption><\/figure>\n\n\n\n<p>In the next step we choose to create the <strong><em>listener <\/em><\/strong>to allow remote access to the base:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"802\" height=\"632\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-14.png\" alt=\"\" class=\"wp-image-3782\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-14.png 802w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-14-300x236.png 300w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-14-768x605.png 768w\" sizes=\"auto, (max-width: 802px) 100vw, 802px\" \/><figcaption>14<\/figcaption><\/figure>\n\n\n\n<p>On the next screen we have to define a series of tabs.<\/p>\n\n\n\n<p>In <strong><em>Memory <\/em><\/strong>define the memory that will be occupied by the instance, changing the total size of the memory will define a ratio for the SGA and PGA memory (the use of each one is detailed <a href=\"https:\/\/docs.oracle.com\/database\/121\/CNCPT\/memory.htm#CNCPT7777\" target=\"_blank\" rel=\"noreferrer noopener\">here<\/a>):<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"802\" height=\"632\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-15.png\" alt=\"\" class=\"wp-image-3781\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-15.png 802w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-15-300x236.png 300w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-15-768x605.png 768w\" sizes=\"auto, (max-width: 802px) 100vw, 802px\" \/><figcaption>15<\/figcaption><\/figure>\n\n\n\n<p>In the <strong><em>Character sets <\/em><\/strong>select Unicode, AL16UTF16 and America American (not Greek):<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"802\" height=\"632\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-16.png\" alt=\"\" class=\"wp-image-3778\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-16.png 802w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-16-300x236.png 300w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-16-768x605.png 768w\" sizes=\"auto, (max-width: 802px) 100vw, 802px\" \/><figcaption>16<\/figcaption><\/figure>\n\n\n\n<p>We choose <strong><em>Next <\/em><\/strong>and remove the option to set Enterprise Manager for monitoring:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"802\" height=\"632\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-17.png\" alt=\"\" class=\"wp-image-3780\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-17.png 802w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-17-300x236.png 300w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-17-768x605.png 768w\" sizes=\"auto, (max-width: 802px) 100vw, 802px\" \/><figcaption>17<\/figcaption><\/figure>\n\n\n\n<p>We do a final check that we have set the correct options:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-18.png\" alt=\"\" class=\"wp-image-3779\" width=\"802\" height=\"632\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-18.png 802w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-18-300x236.png 300w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-18-768x605.png 768w\" sizes=\"auto, (max-width: 802px) 100vw, 802px\" \/><figcaption>18<\/figcaption><\/figure>\n\n\n\n<p>We choose Finish and after a while when the installation is complete we will be able to connect to our database with <strong><em>sqlplus<\/em><\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\" data-no-translation=\"\" data-no-auto-translation=\"\"><code>sqlplus \/ as sysdba\n\nselect status from v$instance;<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"756\" height=\"380\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-19.png\" alt=\"\" class=\"wp-image-3797\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-19.png 756w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2021\/09\/coi-19-300x151.png 300w\" sizes=\"auto, (max-width: 756px) 100vw, 756px\" \/><figcaption>19<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"\u03c0\u03b7\u03b3\u03ad\u03c2\">Sources:<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"https:\/\/oracle-base.com\/articles\/19c\/oracle-db-19c-installation-on-oracle-linux-8\" target=\"_blank\" rel=\"noreferrer noopener\">Oracle Database 19c Installation On Oracle Linux 8 (OL8)<\/a><\/li><\/ul>","protected":false},"excerpt":{"rendered":"<p>In this article we will see step by step how to install Oracle Database 19c on Unix and more specifically on Oracle Linux \/ Red Hat. The prerequisites To begin with we should have a graphical environment either by connecting directly to the machine, or by using a terminal that allows to bring up a graphic such as [...]<\/p>","protected":false},"author":1,"featured_media":704,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11,16],"tags":[29,5,30],"class_list":["post-3774","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-databases","category-oracle-db","tag-databases","tag-oracle-database","tag-rdbms"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\u03a0\u03ce\u03c2 \u03ba\u03ac\u03bd\u03bf\u03c5\u03bc\u03b5 \u03bc\u03af\u03b1 \u03ba\u03b1\u03b9\u03bd\u03bf\u03cd\u03c1\u03b3\u03b9\u03b1 \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 Oracle Database \u03c3\u03b5 Linux - DataPlatform.gr<\/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.dataplatform.gr\/en\/pos-kanoyme-mia-kainoyrgia-egkatasta\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u03a0\u03ce\u03c2 \u03ba\u03ac\u03bd\u03bf\u03c5\u03bc\u03b5 \u03bc\u03af\u03b1 \u03ba\u03b1\u03b9\u03bd\u03bf\u03cd\u03c1\u03b3\u03b9\u03b1 \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 Oracle Database \u03c3\u03b5 Linux - DataPlatform.gr\" \/>\n<meta property=\"og:description\" content=\"\u03a3\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03ac\u03c1\u03b8\u03c1\u03bf \u03b8\u03b1 \u03b4\u03bf\u03cd\u03bc\u03b5 \u03b2\u03ae\u03bc\u03b1 \u03b2\u03ae\u03bc\u03b1 \u03c0\u03ce\u03c2 \u03ba\u03ac\u03bd\u03bf\u03c5\u03bc\u03b5 \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03c4\u03b7\u03c2 Oracle Database 19c \u03c3\u03b5 Unix \u03ba\u03b1\u03b9 \u03c0\u03b9\u03bf \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03b1 \u03c3\u03b5 Oracle Linux \/ Red Hat. \u03a4\u03b1 \u03c0\u03c1\u03bf\u03b1\u03c0\u03b1\u03b9\u03c4\u03bf\u03cd\u03bc\u03b5\u03bd\u03b1 \u0393\u03b9\u03b1 \u03b1\u03c1\u03c7\u03ae \u03b8\u03b1 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03ad\u03c7\u03bf\u03c5\u03bc\u03b5 \u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc \u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd \u03b5\u03af\u03c4\u03b5 \u03bc\u03b5 \u03c4\u03bf \u03bd\u03b1 \u03c3\u03c5\u03bd\u03b4\u03b5\u03b8\u03bf\u03cd\u03bc\u03b5 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03c4\u03bf \u03bc\u03b7\u03c7\u03ac\u03bd\u03b7\u03bc\u03b1, \u03b5\u03af\u03c4\u03b5 \u03bc\u03b5 \u03c4\u03b7\u03bd \u03c7\u03c1\u03ae\u03c3\u03b7 \u03c4\u03b5\u03c1\u03bc\u03b1\u03c4\u03b9\u03ba\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c3\u03b7\u03ba\u03ce\u03c3\u03b5\u03b9 \u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc \u03cc\u03c0\u03c9\u03c2 [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dataplatform.gr\/en\/pos-kanoyme-mia-kainoyrgia-egkatasta\/\" \/>\n<meta property=\"og:site_name\" content=\"DataPlatform.gr\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/dataplatform.gr\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-11-05T05:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-17T21:23:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_oracle.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Stratos Matzouranis\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Stratos Matzouranis\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-kanoyme-mia-kainoyrgia-egkatasta\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-kanoyme-mia-kainoyrgia-egkatasta\\\/\"},\"author\":{\"name\":\"Stratos Matzouranis\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#\\\/schema\\\/person\\\/e87bf4fd02b65cb6aa0942f87245bbaf\"},\"headline\":\"\u03a0\u03ce\u03c2 \u03ba\u03ac\u03bd\u03bf\u03c5\u03bc\u03b5 \u03bc\u03af\u03b1 \u03ba\u03b1\u03b9\u03bd\u03bf\u03cd\u03c1\u03b3\u03b9\u03b1 \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 Oracle Database \u03c3\u03b5 Linux\",\"datePublished\":\"2021-11-05T05:00:00+00:00\",\"dateModified\":\"2022-07-17T21:23:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-kanoyme-mia-kainoyrgia-egkatasta\\\/\"},\"wordCount\":147,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-kanoyme-mia-kainoyrgia-egkatasta\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_oracle.png\",\"keywords\":[\"Databases\",\"Oracle Database\",\"RDBMS\"],\"articleSection\":[\"Databases\",\"Oracle Database\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dataplatform.gr\\\/pos-kanoyme-mia-kainoyrgia-egkatasta\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-kanoyme-mia-kainoyrgia-egkatasta\\\/\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-kanoyme-mia-kainoyrgia-egkatasta\\\/\",\"name\":\"\u03a0\u03ce\u03c2 \u03ba\u03ac\u03bd\u03bf\u03c5\u03bc\u03b5 \u03bc\u03af\u03b1 \u03ba\u03b1\u03b9\u03bd\u03bf\u03cd\u03c1\u03b3\u03b9\u03b1 \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 Oracle Database \u03c3\u03b5 Linux - DataPlatform.gr\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-kanoyme-mia-kainoyrgia-egkatasta\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-kanoyme-mia-kainoyrgia-egkatasta\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_oracle.png\",\"datePublished\":\"2021-11-05T05:00:00+00:00\",\"dateModified\":\"2022-07-17T21:23:44+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-kanoyme-mia-kainoyrgia-egkatasta\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dataplatform.gr\\\/pos-kanoyme-mia-kainoyrgia-egkatasta\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-kanoyme-mia-kainoyrgia-egkatasta\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_oracle.png\",\"contentUrl\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_oracle.png\",\"width\":1280,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/pos-kanoyme-mia-kainoyrgia-egkatasta\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u0391\u03c1\u03c7\u03b9\u03ba\u03ae\",\"item\":\"https:\\\/\\\/www.dataplatform.gr\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Databases\",\"item\":\"https:\\\/\\\/www.dataplatform.gr\\\/category\\\/databases\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Oracle Database\",\"item\":\"https:\\\/\\\/www.dataplatform.gr\\\/category\\\/databases\\\/oracle-db\\\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"\u03a0\u03ce\u03c2 \u03ba\u03ac\u03bd\u03bf\u03c5\u03bc\u03b5 \u03bc\u03af\u03b1 \u03ba\u03b1\u03b9\u03bd\u03bf\u03cd\u03c1\u03b3\u03b9\u03b1 \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 Oracle Database \u03c3\u03b5 Linux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#website\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/\",\"name\":\"dataplatform.gr - Sky is not the limit!\",\"description\":\"\u0398\u03b5\u03c9\u03c1\u03af\u03b1, \u03bf\u03b4\u03b7\u03b3\u03bf\u03af \u03ba\u03b1\u03b9 \u03c3\u03ba\u03ad\u03c8\u03b5\u03b9\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 \u03c4\u03b7 \u03b4\u03bf\u03c5\u03bb\u03b5\u03b9\u03ac \u03c3\u03b1\u03c2 \u03c0\u03b9\u03bf \u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03b9\u03ba\u03ac \u03ba\u03b1\u03b9 \u03c0\u03b9\u03bf \u03b5\u03cd\u03ba\u03bf\u03bb\u03b1 \u03c0\u03ac\u03bd\u03c9 \u03c3\u03c4\u03b9\u03c2 \u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd, \u03c3\u03c4\u03b7\u03bd SQL, \u03c3\u03c4\u03bf Business Intelligence \u03ba\u03b1\u03b9 \u03c3\u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b5\u03bd\u03b9\u03ba\u03cc\u03c4\u03b5\u03c1\u03b1.\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.dataplatform.gr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#organization\",\"name\":\"dataplatform.gr\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_logo_wbacki.png\",\"contentUrl\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_logo_wbacki.png\",\"width\":322,\"height\":139,\"caption\":\"dataplatform.gr\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/dataplatform.gr\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/dataplatform-gr\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#\\\/schema\\\/person\\\/e87bf4fd02b65cb6aa0942f87245bbaf\",\"name\":\"Stratos Matzouranis\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g\",\"caption\":\"Stratos Matzouranis\"},\"sameAs\":[\"https:\\\/\\\/www.dataplatform.gr\"],\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/en\\\/author\\\/stratos-matzouranis\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u03a0\u03ce\u03c2 \u03ba\u03ac\u03bd\u03bf\u03c5\u03bc\u03b5 \u03bc\u03af\u03b1 \u03ba\u03b1\u03b9\u03bd\u03bf\u03cd\u03c1\u03b3\u03b9\u03b1 \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 Oracle Database \u03c3\u03b5 Linux - DataPlatform.gr","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.dataplatform.gr\/en\/pos-kanoyme-mia-kainoyrgia-egkatasta\/","og_locale":"en_US","og_type":"article","og_title":"\u03a0\u03ce\u03c2 \u03ba\u03ac\u03bd\u03bf\u03c5\u03bc\u03b5 \u03bc\u03af\u03b1 \u03ba\u03b1\u03b9\u03bd\u03bf\u03cd\u03c1\u03b3\u03b9\u03b1 \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 Oracle Database \u03c3\u03b5 Linux - DataPlatform.gr","og_description":"\u03a3\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03ac\u03c1\u03b8\u03c1\u03bf \u03b8\u03b1 \u03b4\u03bf\u03cd\u03bc\u03b5 \u03b2\u03ae\u03bc\u03b1 \u03b2\u03ae\u03bc\u03b1 \u03c0\u03ce\u03c2 \u03ba\u03ac\u03bd\u03bf\u03c5\u03bc\u03b5 \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03c4\u03b7\u03c2 Oracle Database 19c \u03c3\u03b5 Unix \u03ba\u03b1\u03b9 \u03c0\u03b9\u03bf \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03b1 \u03c3\u03b5 Oracle Linux \/ Red Hat. \u03a4\u03b1 \u03c0\u03c1\u03bf\u03b1\u03c0\u03b1\u03b9\u03c4\u03bf\u03cd\u03bc\u03b5\u03bd\u03b1 \u0393\u03b9\u03b1 \u03b1\u03c1\u03c7\u03ae \u03b8\u03b1 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03ad\u03c7\u03bf\u03c5\u03bc\u03b5 \u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc \u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd \u03b5\u03af\u03c4\u03b5 \u03bc\u03b5 \u03c4\u03bf \u03bd\u03b1 \u03c3\u03c5\u03bd\u03b4\u03b5\u03b8\u03bf\u03cd\u03bc\u03b5 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03c4\u03bf \u03bc\u03b7\u03c7\u03ac\u03bd\u03b7\u03bc\u03b1, \u03b5\u03af\u03c4\u03b5 \u03bc\u03b5 \u03c4\u03b7\u03bd \u03c7\u03c1\u03ae\u03c3\u03b7 \u03c4\u03b5\u03c1\u03bc\u03b1\u03c4\u03b9\u03ba\u03bf\u03cd \u03c0\u03bf\u03c5 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c3\u03b7\u03ba\u03ce\u03c3\u03b5\u03b9 \u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc \u03cc\u03c0\u03c9\u03c2 [&hellip;]","og_url":"https:\/\/www.dataplatform.gr\/en\/pos-kanoyme-mia-kainoyrgia-egkatasta\/","og_site_name":"DataPlatform.gr","article_publisher":"https:\/\/www.facebook.com\/dataplatform.gr\/","article_published_time":"2021-11-05T05:00:00+00:00","article_modified_time":"2022-07-17T21:23:44+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_oracle.png","type":"image\/png"}],"author":"Stratos Matzouranis","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Stratos Matzouranis","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dataplatform.gr\/pos-kanoyme-mia-kainoyrgia-egkatasta\/#article","isPartOf":{"@id":"https:\/\/www.dataplatform.gr\/pos-kanoyme-mia-kainoyrgia-egkatasta\/"},"author":{"name":"Stratos Matzouranis","@id":"https:\/\/www.dataplatform.gr\/#\/schema\/person\/e87bf4fd02b65cb6aa0942f87245bbaf"},"headline":"\u03a0\u03ce\u03c2 \u03ba\u03ac\u03bd\u03bf\u03c5\u03bc\u03b5 \u03bc\u03af\u03b1 \u03ba\u03b1\u03b9\u03bd\u03bf\u03cd\u03c1\u03b3\u03b9\u03b1 \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 Oracle Database \u03c3\u03b5 Linux","datePublished":"2021-11-05T05:00:00+00:00","dateModified":"2022-07-17T21:23:44+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dataplatform.gr\/pos-kanoyme-mia-kainoyrgia-egkatasta\/"},"wordCount":147,"commentCount":0,"publisher":{"@id":"https:\/\/www.dataplatform.gr\/#organization"},"image":{"@id":"https:\/\/www.dataplatform.gr\/pos-kanoyme-mia-kainoyrgia-egkatasta\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_oracle.png","keywords":["Databases","Oracle Database","RDBMS"],"articleSection":["Databases","Oracle Database"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dataplatform.gr\/pos-kanoyme-mia-kainoyrgia-egkatasta\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dataplatform.gr\/pos-kanoyme-mia-kainoyrgia-egkatasta\/","url":"https:\/\/www.dataplatform.gr\/pos-kanoyme-mia-kainoyrgia-egkatasta\/","name":"\u03a0\u03ce\u03c2 \u03ba\u03ac\u03bd\u03bf\u03c5\u03bc\u03b5 \u03bc\u03af\u03b1 \u03ba\u03b1\u03b9\u03bd\u03bf\u03cd\u03c1\u03b3\u03b9\u03b1 \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 Oracle Database \u03c3\u03b5 Linux - DataPlatform.gr","isPartOf":{"@id":"https:\/\/www.dataplatform.gr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dataplatform.gr\/pos-kanoyme-mia-kainoyrgia-egkatasta\/#primaryimage"},"image":{"@id":"https:\/\/www.dataplatform.gr\/pos-kanoyme-mia-kainoyrgia-egkatasta\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_oracle.png","datePublished":"2021-11-05T05:00:00+00:00","dateModified":"2022-07-17T21:23:44+00:00","breadcrumb":{"@id":"https:\/\/www.dataplatform.gr\/pos-kanoyme-mia-kainoyrgia-egkatasta\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dataplatform.gr\/pos-kanoyme-mia-kainoyrgia-egkatasta\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dataplatform.gr\/pos-kanoyme-mia-kainoyrgia-egkatasta\/#primaryimage","url":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_oracle.png","contentUrl":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_oracle.png","width":1280,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/www.dataplatform.gr\/pos-kanoyme-mia-kainoyrgia-egkatasta\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u0391\u03c1\u03c7\u03b9\u03ba\u03ae","item":"https:\/\/www.dataplatform.gr\/"},{"@type":"ListItem","position":2,"name":"Databases","item":"https:\/\/www.dataplatform.gr\/category\/databases\/"},{"@type":"ListItem","position":3,"name":"Oracle Database","item":"https:\/\/www.dataplatform.gr\/category\/databases\/oracle-db\/"},{"@type":"ListItem","position":4,"name":"\u03a0\u03ce\u03c2 \u03ba\u03ac\u03bd\u03bf\u03c5\u03bc\u03b5 \u03bc\u03af\u03b1 \u03ba\u03b1\u03b9\u03bd\u03bf\u03cd\u03c1\u03b3\u03b9\u03b1 \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 Oracle Database \u03c3\u03b5 Linux"}]},{"@type":"WebSite","@id":"https:\/\/www.dataplatform.gr\/#website","url":"https:\/\/www.dataplatform.gr\/","name":"dataplatform.gr - Sky is not the limit!","description":"\u0398\u03b5\u03c9\u03c1\u03af\u03b1, \u03bf\u03b4\u03b7\u03b3\u03bf\u03af \u03ba\u03b1\u03b9 \u03c3\u03ba\u03ad\u03c8\u03b5\u03b9\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 \u03c4\u03b7 \u03b4\u03bf\u03c5\u03bb\u03b5\u03b9\u03ac \u03c3\u03b1\u03c2 \u03c0\u03b9\u03bf \u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03b9\u03ba\u03ac \u03ba\u03b1\u03b9 \u03c0\u03b9\u03bf \u03b5\u03cd\u03ba\u03bf\u03bb\u03b1 \u03c0\u03ac\u03bd\u03c9 \u03c3\u03c4\u03b9\u03c2 \u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd, \u03c3\u03c4\u03b7\u03bd SQL, \u03c3\u03c4\u03bf Business Intelligence \u03ba\u03b1\u03b9 \u03c3\u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b5\u03bd\u03b9\u03ba\u03cc\u03c4\u03b5\u03c1\u03b1.","publisher":{"@id":"https:\/\/www.dataplatform.gr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dataplatform.gr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.dataplatform.gr\/#organization","name":"dataplatform.gr","url":"https:\/\/www.dataplatform.gr\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dataplatform.gr\/#\/schema\/logo\/image\/","url":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_logo_wbacki.png","contentUrl":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_logo_wbacki.png","width":322,"height":139,"caption":"dataplatform.gr"},"image":{"@id":"https:\/\/www.dataplatform.gr\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/dataplatform.gr\/","https:\/\/www.linkedin.com\/company\/dataplatform-gr\/"]},{"@type":"Person","@id":"https:\/\/www.dataplatform.gr\/#\/schema\/person\/e87bf4fd02b65cb6aa0942f87245bbaf","name":"Stratos Matzouranis","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g","caption":"Stratos Matzouranis"},"sameAs":["https:\/\/www.dataplatform.gr"],"url":"https:\/\/www.dataplatform.gr\/en\/author\/stratos-matzouranis\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/posts\/3774","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/comments?post=3774"}],"version-history":[{"count":0,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/posts\/3774\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/media\/704"}],"wp:attachment":[{"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/media?parent=3774"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/categories?post=3774"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/tags?post=3774"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}