Skip to content

Latest commit

 

History

History
101 lines (60 loc) · 4.78 KB

dbeaver.md

File metadata and controls

101 lines (60 loc) · 4.78 KB

Database Management Tools

There are multiple ways you can access the PostgreSQL database. I will focus on two ways: (1) Using the psql utility tool and (2) Using a database management tool. This article is dedicated to learning how to use DBeaver, a database management tool.

Database management tools are software applications that help users to manage SQL server infrastructure. They allow users to configure, monitor, manage and administer SQL servers and databases. As a web developer or as a database administrator, you will be dealing with SQL statements to explore the database for various reasons:

  • Querying the database
  • Build and execute SQL code
  • Generating reports
  • Making a backup
  • Diagonising an application for database-related problems

It is therefore important to choose and have the right tool that can speed up database-related tasks and make you more productive. There are many tools available in the market that can be used to work with a database. To name two, we have pgAdmin and DBeaver. I will use DBeaver throughout the subsquent articles as we strive to understand SQL in-depth.

For reference, these are the topics we will be covering in the entire database tutorial:

  1. Postgres Overview
  2. Install PostgreSQL
  3. Access PostgreSQL Using PSQL
  4. Access PostgreSQL Using DBeaver (this article)
  5. How to Secure PostgreSQL
  6. Getting Started With PostgreSQL
  7. Sample Flask Project Using PostgreSQL

Table of Contents

This article has the following sub-sections. You can click on any of the links below to navigate to a specific section:

  1. Install DBeaver

Install DBeaver

DBeaver is a free and open source universal database tool for developers and database administrators. It supports several databases including MySQL, Oracle and Postgresql. It can be used as an alternative of MySQL-Workbench and PGAdmin. It has a user-friendly interface that makes it more useful for its new users. Using DBeaver, you can create local databases and also configure the maximum result size to avoid session hanging issues in case the query results take time to process big queries. The community edition of DBeaver is free, though if you'd like to do NoSQL then you may opt for the enterprise version.

Below, I will show you two methods you can use to install DBeaver:

Using the Terminal

OpenJDK is the default Java development and runtime available on Debian repository. Run the following commands to have Java installed and set as default Java on your Ubuntu:

sudo apt update
sudo apt -y install default-jdk

Once that is done, you can check the version by running:

$ java --version

# Output

openjdk 11.0.16 2022-07-19
OpenJDK Runtime Environment (build 11.0.16+8-post-Ubuntu-0ubuntu120.04)
OpenJDK 64-Bit Server VM (build 11.0.16+8-post-Ubuntu-0ubuntu120.04, mixed mode, sharing)

Add DBeaver repository to your Debian / Ubuntu by running the commands below:

wget -O - https://dbeaver.io/debs/dbeaver.gpg.key | sudo apt-key add -

echo "deb https://dbeaver.io/debs/dbeaver-ce /" | sudo tee /etc/apt/sources.list.d/dbeaver.list

After adding the repo, update the apt list and install DBeaver CE:

sudo apt update

sudo apt install dbeaver-ce

Once the installation is complete, you can start DBeaver by typing dbeaver-ce in the terminal. You should see DBeaver launching.

DBeaver Terminal Launch

Or, you can simply search for DBeaver within your apps and click on it to launch.

Lauch DBeaver from Apps

Using the Installer

If you find using the terminal a bit technical, you can do the following:

Download the installer file from https://dbeaver.io/download/. Navigate to the Linux subsection and choose the Linux Debian Package(installer).

Linux Debian Installer

The file will be downloaded to your local machine storage. Double-click the downloaded file to start the installation. You will see this:

Install DBeaver from Software Center

Click on "Install" to begin the installation process. Once done, you can open the app from within your list of desktop apps.