MySQL
An overview of the MySQL integration with Secoda
MySQL Metadata Extracted
Getting Started with MySQL
Create a Database User
-- Create a user named "secoda" that Secoda will use when connecting to your MySQL database.
CREATE USER 'secoda'@'localhost' IDENTIFIED BY '<enter password here>';
-- Complete this query for any databases you would like Secoda to extract from
GRANT SELECT ON <database_name>.* TO 'secoda'@'localhost';
-- Complete this query for any schemas you would like Secoda to extract from
GRANT SELECT ON <schema_name>.* TO 'secoda'@'localhost';Connect MySQL to Secoda
Security
Last updated
Was this helpful?