MySQL
Connect a MySQL Database to Actian AI Analyst
Connect MySQL to Actian AI Analyst
1. Create a Read-Only User in MySQL
-- Replace with your secure username and password
CREATE USER 'analyst_user'@'%' IDENTIFIED BY 'your_secure_password';
-- Grant usage access (no database access yet)
GRANT USAGE ON *.* TO 'analyst_user'@'%';2. Grant Read-Only Access to Data
3. Optional Configuration (Recommended)
4. Set Up the Connection in Actian AI Analyst
That's It!
Last updated
Was this helpful?