You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: databases/access_postgresql/dbeaver.md
+72
Original file line number
Diff line number
Diff line change
@@ -20,3 +20,75 @@ For reference, these are the topics we will cover in the entire database tutoria
20
20
-[PostgreSQL Overview](postgresql.md)
21
21
-[Install PostgreSQL](install_postgresql.md)
22
22
-[Getting Started with PostgreSQL](getting_started_with_postgresql.md)
23
+
24
+
### Table of Contents
25
+
26
+
Throughout this article, we will look at how to:
27
+
28
+
1.[Install DBeaver](#install-dbeaver)
29
+
30
+
31
+
## Install DBeaver
32
+
33
+
DBeaver is 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.
34
+
35
+
### Using the Terminal
36
+
37
+
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:
38
+
39
+
```python
40
+
sudo apt update
41
+
sudo apt -y install default-jdk
42
+
```
43
+
44
+
Once that is done, you can check the version by running:
0 commit comments