Skip to content

Commit

Permalink
Merge pull request #2727 from EnterpriseDB/release/2022-05-27
Browse files Browse the repository at this point in the history
Release: 2022-05-27
  • Loading branch information
drothery-edb authored May 27, 2022
2 parents 141cd17 + ef27793 commit f467b26
Show file tree
Hide file tree
Showing 59 changed files with 454 additions and 15 deletions.
12 changes: 12 additions & 0 deletions advocacy_docs/partner_docs/DBeaverGuide/02-PartnerInformation.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
title: 'Partner Information'
description: 'Details for DBeaver PRO'

---
|   |   |
| ----------- | ----------- |
| **Partner Name** | DBeaver |
| **Partner Product** | DBeaver PRO: Lite, Enterprise, and Ultimate |
| **Web Site** | https://dbeaver.com/ |
| **Version** | DBeaver PRO 22.0 |
| **Product Description** | DBeaver PRO is a SQL client software application and a database administration tool for developers, database administrators, analysts, and all people who work with Postgres. |
10 changes: 10 additions & 0 deletions advocacy_docs/partner_docs/DBeaverGuide/03-SolutionSummary.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: 'Solution Summary'
description: 'Brief explanation of the solution and its purpose'
---

DBeaver PRO is a SQL client software application and universal database management tool for EDB Postgres Advanced Server and EDB Postgres Extended Server. With DBeaver PRO you can manipulate your data like you would in a regular spreadsheet. You have the ability to view, create, modify, save, and delete all Postgres data types. The features resemble those of a regular spreadsheet, as you can create analytical reports based on records from different data storages and export information in an appropriate format. DBeaver PRO also provides you with a powerful editor for SQL, data and schema migration, monitoring of database connection sessions, and other administration features.

<p align="center">
<img src="Images/DbeaverArc.png">
</p>
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
---
title: 'Configuring the Integration'
description: 'Walkthrough on configuring DBeaver PRO'
---

Implementing DBeaver PRO with EDB Postgres Advanced Server and EDB Postgres Extended Server requires the following components:

- A running EDB Postgres Advanced Server or EDB Postgres Extended Server instance.
- DBeaver PRO application installed on a system where you will manage the running database.

## EDB Postgres Advanced Server Configuration

1. Launch DBeaver PRO on your system.
2. Go to the `Database` drop down menu in the top left, and select `New Database Connection`. In the `All` tab, select `EnterpriseDB` and click `Next`.

<p align="center">
<img src="Images/EPASConfig.png">
</p>

!!! Note
You can also connect to your EDB database instance by selecting `New Connection from JDBC URL` from the `Database` menu. DBeaver PRO will automatically select EnterpriseDB in the `Drivers` field when the EDB JDBC URL is provided in the `JDBC URL` field. Click `Proceed` and continue to step 3.



<p align="center">
<img src="Images/JDBCURL.png">
</p>

3. Provide connection information for the user, password, host, port, and database for your EDB Postgres Advanced Server instance.
<p align="center">
<img src="Images/ConnectionSettings.png">
</p>

4. Click `Test Connection`. The connection should be successful.
<p align="center">
<img src="Images/SuccessfulConnection.png">
</p>

5. Click `OK` on this window and then click `Finish` on the `Connection Settings` window. The connection is then created and shown in the left-side tree.
<p align="center">
<img src="Images/ConnectionOnLeftSide.png">
</p>

## EDB Postgres Extended Server Configuration

1. Launch DBeaver PRO on your system.
2. Go to the `Database` drop down menu in the top left, and select `New Database Connection`. In the `All` tab, select `PostgreSQL` and click `Next`.
<p align="center">
<img src="Images/ExtendedConfiguration.png">
</p>

!!! Note
You can also connect to your PostgreSQL database instance by selecting `New Connection from JDBC URL` from the `Database` menu. DBeaver PRO will automatically select PostgreSQL in the `Drivers` field when the PostgreSQL JDBC URL is provided in the `JDBC URL` field. Click `Proceed` and continue to step 3.



<p align="center">
<img src="Images/NewConnectionExtended.png">
</p>

3. Provide connection information for the user, password, host, port, and database for your PostgreSQL instance.
<p align="center">
<img src="Images/PostgreSQLInformation.png">
</p>

4. Click `Test Connection`. The connection should be successful.
<p align="center">
<img src="Images/PostgresTestConnection.png">
</p>

5. Click `OK` on this window and then click `Finish` on the `Connection Settings` window. The connection is then created and shown in the left-side tree.
<p align="center">
<img src="Images/PostgresConnectionSettings.png">
</p>
57 changes: 57 additions & 0 deletions advocacy_docs/partner_docs/DBeaverGuide/05-UsingDBeaver.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
---
title: 'Using DBeaver PRO'
description: 'Walkthroughs of example usage scenarios'
---
Once DBeaver PRO is connected to an instance of EDB Postgres Advanced Server or EDB Postgres Extended Server, you can then access the capabilities of DBeaver PRO.


# Sample User Scenarios

!!! Note
The user scenarios shown are provided as example use cases of DBeaver PRO and EDB Postgres Advanced Server or EDB Postgres Extended Server. They are not intended to show all functionality.

## Connecting to the Database

1. Launch DBeaver PRO.
2. Double click the database connection you want to open.
3. Enter the username and password and click `OK`.

<p align="center">
<img src="Images/DBNavigate.png">
</p>

4. You are now connected to your database instance.

## Viewing Tables and Data

Using the appropriate SQL code, three tables (`AGENTS`, `CUSTOMERS`, and `ORDERS`) were created in the `edb` database and data was inserted to help visualize some basic functionality.

<p align="center">
<img src="Images/DBNavigate2.png">
</p>

1. In the Database Navigator, right click on your database. In this example that is `edb`.
2. Select `SQL Editor` -> `Open SQL Console`. This will open the `<edb>Console` to allow you to enter and run SQL code.

<p align="center">
<img src="Images/DBNavigate3.png">
</p>

3. Once the tables have been created, double click on the table name to look at the properties. In this case we selected the `Customers` table.

<p align="center">
<img src="Images/Console.png">
</p>

4. Click on the `Data` tab to view the data in the table.

<p align="center">
<img src="Images/Console2.png">
</p>

5. Click on the `ER Diagram` tab to view the Entity Relationships for the table.

<p align="center">
<img src="Images/Console3.png">
</p>

Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
title: 'Certification Environment'
description: 'Overview of the certification environment used in the certification of DBeaver PRO'
---

| &nbsp; | &nbsp; |
| ----------- | ----------- |
| **Certification Test Date** | May 1, 2022 |
| **EDB Postgres Advanced Server** | 11, 12, 13, 14 |
| **EDB Postgres Extended** | 13 |
| **DBeaver Enterprise** | 22.0 |
| **JDBC** | 42.2.20 |
| **EDB JDBC (Included)** | 42.3.2.1 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions advocacy_docs/partner_docs/DBeaverGuide/Images/Console.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions advocacy_docs/partner_docs/DBeaverGuide/Images/Console2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions advocacy_docs/partner_docs/DBeaverGuide/Images/Console3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions advocacy_docs/partner_docs/DBeaverGuide/Images/DBN.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions advocacy_docs/partner_docs/DBeaverGuide/Images/DBN2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions advocacy_docs/partner_docs/DBeaverGuide/Images/DBNavigate.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions advocacy_docs/partner_docs/DBeaverGuide/Images/DbeaverArc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions advocacy_docs/partner_docs/DBeaverGuide/Images/EPASConfig.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions advocacy_docs/partner_docs/DBeaverGuide/Images/JDBCURL.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions advocacy_docs/partner_docs/DBeaverGuide/Images/Table.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions advocacy_docs/partner_docs/DBeaverGuide/Images/Table2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions advocacy_docs/partner_docs/DBeaverGuide/Images/Table3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions advocacy_docs/partner_docs/DBeaverGuide/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
title: 'DBeaver PRO Implementation Guide'
indexCards: simple
directoryDefaults:
iconName: handshake
---

<p align="center">
<img src="Images/EDBPartnerProgram.png">
</p>
<h1 style="text-align: center;">EDB GlobalConnect Technology Partner Implementation Guide</h1>
<h3 style="text-align: center;">DBeaver PRO: Lite, Enterprise, and Ultimate</h3>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions advocacy_docs/partner_docs/LiquibaseGuide/index.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: 'Liquibase Implementation Guide'
title: 'Liquibase Pro Implementation Guide'
indexCards: simple
directoryDefaults:
iconName: handshake
Expand All @@ -9,4 +9,4 @@ directoryDefaults:
<img src="Images/PartnerProgram.jpg.png">
</p>
<h1 style="text-align: center;">EDB GlobalConnect Technology Partner Implementation Guide</h1>
<h3 style="text-align: center;">Liquibase</h3>
<h3 style="text-align: center;">Liquibase Pro</h3>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: 'Configuring the Integration'
description: 'Walkthrough on configuring AHV'
description: 'Walkthrough on configuring Nutanix AHV'
---

Implementing EDB software on Nutanix AHV requires the following components:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: 'Certification Environment'
description: 'Overview of the certification environment used in the certification of AHV'
description: 'Overview of the certification environment used in the certification of Nutanix AHV'
---

## Hypervisor (AHV) 20170830.453 Test Environment
Expand Down
4 changes: 2 additions & 2 deletions advocacy_docs/partner_docs/NutanixGuide/index.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: 'Nutanix Implementation Guide'
title: 'Nutanix AHV Implementation Guide'
indexCards: simple
directoryDefaults:
iconName: handshake
Expand All @@ -9,4 +9,4 @@ directoryDefaults:
<img src="Images/PartnerProgram.jpg.png">
</p>
<h1 style="text-align: center;">EDB GlobalConnect Technology Partner Implementation Guide</h1>
<h3 style="text-align: center;">Nutanix AHV</h3>
<h3 style="text-align: center;">Nutanix AHV</h3>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: 'Configuring the Integration'
description: 'Walkthrough of configuring Data Protector for PostgreSQL'
description: 'Walkthrough of configuring Repostor Data Protector for PostgreSQL'
---

## Prerequisites
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: 'Certification Environment'
description: 'Overview of the certification environment used in the certification of Data Protector for PostgreSQL'
description: 'Overview of the certification environment used in the certification of Repostor Data Protector for PostgreSQL'
---

| &nbsp; | &nbsp; |
Expand Down
4 changes: 2 additions & 2 deletions advocacy_docs/partner_docs/RepostorGuide/index.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: 'Repostor Implementation Guide'
title: 'Repostor Data Protector for PostgresSQL Implementation Guide'
indexCards: simple
directoryDefaults:
iconName: handshake
Expand All @@ -9,4 +9,4 @@ directoryDefaults:
<img src="Images/PartnerProgram.png">
</p>
<h1 style="text-align: center;">EDB GlobalConnect Technology Partner Implementation Guide</h1>
<h3 style="text-align: center;">Repostor Data Protector for PostgresSQL</h3>
<h3 style="text-align: center;">Repostor Data Protector for PostgresSQL</h3>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: 'Configuring the Integration'
description: 'Walkthrough on configuring CipherTrust Transparent Encryption (CTE)'
description: 'Walkthrough on configuring Thales CipherTrust Transparent Encryption (CTE)'
---

**Implementing the CipherTrust Transparent Encryption (CTE) solution requires the following components:**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: 'Certification Environment'
description: 'Overview of the certification environment used in the certification of CipherTrust Transparent Encryption (CTE)'
description: 'Overview of the certification environment used in the certification of Thales CipherTrust Transparent Encryption (CTE)'
---

| &nbsp; | &nbsp; |
Expand Down
2 changes: 1 addition & 1 deletion advocacy_docs/partner_docs/ThalesGuide/index.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: 'Thales Implementation Guide'
title: 'Thales CipherTrust Transparent Encryption Implementation Guide'
indexCards: simple
directoryDefaults:
iconName: handshake
Expand Down
12 changes: 12 additions & 0 deletions advocacy_docs/partner_docs/ToadEdgeGuide/02-PartnerInformation.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
title: 'Partner Information'
description: 'Details for Toad Edge'

---
| &nbsp; | &nbsp; |
| ----------- | ----------- |
| **Partner Name** | Quest |
| **Partner Product** | Toad Edge |
| **Web Site** | https://www.quest.com/products/toad-edge/ |
| **Version** | Toad Edge 2.4.1 |
| **Product Description** | Toad Edge is a lightweight, desktop toolset that simplifies the development and management of open source relational databases. Toad Edge makes it easy for you to ramp-up quickly, with support for coding, editing, schema compare and sync, and DevOps CI processes. |
Loading

0 comments on commit f467b26

Please sign in to comment.