Prerequisites
Configuration Steps
1. Create a Seam User in PostgreSQL
You’ll need to create a dedicated read-only user for Seam to access your PostgreSQL database. Connect to your PostgreSQL database using a SQL client with admin credentials to run these commands.SQL Commands
Replace the following placeholders in the commands below:<schema>- The name of your PostgreSQL schema<table>- The name of your PostgreSQL table (if using Option 2)<password>- A randomly generated password (save this for later)
You can modify the
GRANT statements to limit the scope of Seam’s permissions. Choose Option 1 to grant access to all tables in a schema, or Option 2 to grant access only to specific tables.2. Gather Connection Details
You’ll need the following information to complete the Seam connection:The username you created (e.g.,
seam_postgres_integration_user)The password you set for the Seam user
Your database’s host address (e.g.,
123.456.789.012 or subdomain.example.com)Database name
Port (default: 5432)

