Sql Server Setup
Step 1: Gather Connection Information
Step 2: Create a Database User (if needed)
CREATE LOGIN zenlytic_user WITH PASSWORD = 'your_secure_password';
USE your_database;
CREATE USER zenlytic_user FOR LOGIN zenlytic_user;
GRANT CONNECT TO zenlytic_user;
GRANT SELECT ON SCHEMA::dbo TO zenlytic_user;Step 3: Add the Connection in Zenlytic

Step 4: Configure Firewall/Security
Step 5: Test Your Connection
Troubleshooting
Last updated
Was this helpful?

