Postgres
An overview of the Postgres integration with Secoda
Postgres Metadata Extracted
Get Started with Postgres
Create a Database User
-- Create a user named "secoda" that Secoda will use when connecting to your Postgres database.
CREATE USER secoda PASSWORD '<enter password here>';
-- Complete this query for any databases you would like Secoda to extract from
GRANT CONNECT ON DATABASE <database_name> TO secoda;
-- Complete this query for any schemas you would like Secoda to extract from
GRANT USAGE ON SCHEMA <schema_name> TO secoda;
GRANT SELECT ON ALL TABLES IN SCHEMA <schema_name> TO secoda;
ALTER DEFAULT PRIVILEGES IN SCHEMA <schema_name>
GRANT SELECT ON TABLES TO secoda;Connect Postgres to Secoda
Security
Last updated
Was this helpful?