Skip to main content

Connecting to PostgreSQL database

PostgreSQL is one of the most advanced open-source relational databases. Dataedo provides a native connector to PostgreSQL with SSL support.

PostgreSQL SSL configuration

Generating certificates

Server configuration and generating SSL certificates for a server is described in official PostgreSQL documentation - Secure TCP/IP Connections with SSL section.


Following sections (Converting client certificate to PFX format and Add certificate to a trusted root authorities store) are both optional, and can be ignored if you authenticate with a password and not with the client certificate.


Converting client certificate to PFX format (optional)

Dataedo requires client certificate to have .PFX format (so that both certificate and private key are in the same file). If you have client certificate in formats such as PEM, CRT, CER or others, they won't be accepted by Dataedo. However, you can easily convert existing certificates into PFX certificate using the following OpenSSL command:

openssl pkcs12 -export -out client-cert.pfx -inkey private-key.key -in client-cert.crt

  1. openssl - command to execute OpenSSL,
  2. pkcs12 - file utility,
  3. -export -out client-cert.pfx - export and save the certificate as PFX client-cert.pfx file,
  4. -inkey private-key.key - the private key to be combined with certificate into PFX file,
  5. -in client-cert.crt - client certificate to be combined with private key into PFX file.

OpenSSL then asks you to provide a passphrase to protect the file. You can leave it empty, although we recommend setting a safe password, as having a certificate may allow anyone to connect to a database.

Add certificate to a trusted root authorities store (optional)

If your server uses a self-signed certificate or one that was issued by an organization not considered as trusted by Microsoft (you can find the full list in documentation) and you want to use Verify CA or Verify Full SSL mode (see more in Connection Details section), you need to add a CA certificate (this can be provided by a database administrator) to your trusted root certificates store.

To do this, run Microsoft Management Console as an administrator - type mmc in the start menu, right-click the icon, and choose Run as Administrator.

Then expand the Console Root, Certificates (Local Computer), and Trusted Root Authorities Store. Right-click on Certificates. Choose All Tasks > Import and select the CA file.

import-certificate

Connect Dataedo to PostgreSQL

Add new connection

To connect to PostgreSQL database create new documentation by clicking Add documentation and choosing Database connection.

Connection to SQL Server

On the connection screen choose PostgreSQL as DBMS.

Connection details

Provide database connection details:

  • Host - provide a host name or address where a database is on. E.g. server17, server17.ourdomain.com or 192.168.0.37.
  • Port - change the default port of PostgreSQL instance if required.
  • User and password - provide your username and password.
  • SSL Mode - select the SSL Mode for connection:
    • Prefer - Dataedo first will try to connect to a database with SSL support, and in case it didn't work it will try to establish a connection without SSL encryption.
    • Disable - connection will be unencrypted.
    • Require - only encrypted connection is possible.
    • Verify CA - connection will be encrypted and Dataedo will verify if a server certificate was issued by a trusted authority.
    • Verify Full - connection will be encrypted, Dataedo will verify if a server certificate was issued by a trusted authority and if all the information provided in the certificate are correct.
  • Configure SSL - optional step if you want to authenticate with a client certificate.
  • Database - type in database name or click [...] and choose it from the list.
Connection to postgresql

To add a client certificate for a connection, click the Configure button and choose the certificate file. If your certificate is protected with a passphrase, provide it in the Certificate Password field. Otherwise, leave the field empty.

Postgresql ssl

Saving password

You can save the password for later connections by checking the Save password option. Passwords are saved in the repository database.

Importing schema

When the connection is successful, Dataedo will read objects and show a list of objects found. You can choose which objects to import. You can also use advanced filter to narrow down the list of objects.

Objects to import

Confirm the list of objects to import by clicking Next.

The next screen will allow you to change the default name of the documentation under which your schema will be visible in the Dataedo repository.

Change title

Click Import to start the import.

Importing documentation

When done, close the import window with the Finish button.

Import succeeded

Outcome

Your database schema has been imported to new documentation in the repository.

Imported database schema

Permissions

To perform a PostgreSQL import, the role that performs it must have permissions to perform SELECT on the following objects:

  • pg_catalog.pg_namespace
  • pg_catalog.pg_class
  • pg_catalog.pg_proc
  • pg_catalog.pg_views
  • pg_catalog.pg_matviews
  • pg_catalog.pg_description
  • pg_catalog.pg_language
  • pg_catalog.pg_index
  • pg_catalog.pg_attrdef
  • pg_catalog.pg_trigger
  • pg_catalog.pg_constraint
  • pg_catalog.pg_attribute

If you use version 10 or higher, you must also have permissions to perform SELECT on the following objects:

  • pg_catalog.pg_type

If you use version below 10, you must also have permissions to perform SELECT on the following objects:

  • information_schema.table_constraints
  • information_schema.parameters
  • information_schema.key_column_usage
  • information_schema.routines

To import dependencies, the role that performs the import must have permissions to perform SELECT on the following objects:

  • pg_catalog.pg_rewrite
  • pg_catalog.pg_depend

Dataedo also need access to catalog functions like pg_get_functiondef.

Additionally, the role that performs the import must have USAGE on the schema that you want to document or other access rights to objects that you want to document.

PostgreSQL support

Learn more about PostgreSQL support in Dataedo.