$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

How to Install Oracle Sql Developer on Ubuntu 19.10

September 18, 2019 | By the+gnu+linux+evangelist.

Installing

  1. 2. Downloading

    Download Oracle SQL Developer for GNU/Linux.

    Oracle SQL Developer .zip Linux
  2. 3. Extracting

    Then Extract into /tmp
    Possibly Double-Click/Right-Click and Open with Archive Manager:

    How to Install Oracle Sql Developer Ubuntu 19.10 - Extraction
    First, Check/Install Unzip:

    which unzip

    If Not there then to Setup it:

    sudo apt install unzip

    Or from Shell:

    unzip -d /tmp/ ~/Downloads/sqldeveloper*.zip
  3. 4. Installing

    Next Install Oracle SQL Developer
    Relocate it with:

    sudo mv /tmp/sqldeveloper /opt/

    And give Execution permissions:

    sudo chmod +x /opt/sqldeveloper/sqldeveloper.sh

    Again Set the SuperUser as Owner:

    sudo chown -R root:root /opt/sqldeveloper/sqldeveloper.sh

    Make a Symlink for Easy Launching:

    sudo ln -s /opt/sqldeveloper/sqldeveloper.sh /usr/local/bin/sqldeveloper
  4. 5. Setting Up Java

    How to Install Required Oracle-Sun JDK 8+ on Ubuntu

    Oracle JDK Ubuntu Installation Guide

Contents