Redshift
An overview of the Redshift integration with Secoda
Redshift Metadata Extracted
Getting Started with Redshift
Create a Database User
-- Create a user named "secoda" that Secoda will use when connecting to your Redshift cluster.
CREATE USER secoda PASSWORD '<enter password here>';
-- Allows the "secoda" user to query metadata
-- Explaination of query here -> https://stackoverflow.com/questions/48567440/granting-permissions-on-redshift-system-tables-to-non-superusers
ALTER USER secoda SYSLOG ACCESS UNRESTRICTED;
-- Complete this query for any schemas you would like Secoda to extract
GRANT REFERENCES ON ALL TABLES IN SCHEMA <schema_name> TO secoda
-- Optionally provide SELECT access for the preview, query blocks, and profiling
GRANT SELECT ON ALL TABLES IN SCHEMA <schema_name> TO secoda
GRANT SELECT ON svv_table_info TO secoda;Connect Redshift to Secoda
Whitelist Secoda IP Address
Networking
EC2-Classic
EC2-VPC
Last updated
Was this helpful?