Connection parameters
Setup
Run the following SQL on your PostgreSQL instance to create a dedicated user for Datachecks.datachecks_tmp schema is used for temporary processing and keeps Datachecks operations isolated from your production data.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Connect PostgreSQL as a data source in Datachecks.
| Field | Description |
|---|---|
| Connection Name | A label for this connection within Datachecks |
| Host | The server name hosting your database |
| Port | Default is 5432. Specify an alternative if your server uses a different port |
| Username | The dedicated user for Datachecks |
| Password | The password for the Datachecks user |
| Database | The name of the PostgreSQL database you want to connect to |
| Schema | Optional — specify to limit access to a single schema |
CREATE SCHEMA datachecks_tmp;
CREATE ROLE datachecks WITH LOGIN ENCRYPTED PASSWORD 'YourSecurePassword';
GRANT ALL ON SCHEMA datachecks_tmp TO datachecks;
GRANT USAGE ON SCHEMA <myschema> TO datachecks;
GRANT SELECT ON ALL TABLES IN SCHEMA <myschema> TO datachecks;
datachecks_tmp schema is used for temporary processing and keeps Datachecks operations isolated from your production data.