Azure SQL Database (beta)
What is Azure SQL Database?
Azure SQL Database is a fully managed relational database service provided by Microsoft Azure. It offers high availability, scalability, and built-in intelligence, making it ideal for applications requiring robust data management and security. Users benefit from reduced maintenance overhead, automatic backups, and seamless integration with other Azure services, enabling efficient data handling and analytics.
Why Connect Azure SQL Database to Monte Carlo?
Integrating Monte Carlo with your Azure SQL Database allows you to monitor your data and tables. Monte Carlo can detect anomalous volume changes out of the box. With the ability to run SQL queries on your Azure SQL database tables and views, you can create advanced monitors to analyze the data in your tables and views. For a full list of supported monitor types see Monitor Support .
After connecting Azure SQL Database here is what you can expect to see out of the box:
Volume
Our volume monitors are active out of the box. By collecting metadata on your tables each hour, Monte Carlo's machine learning algorithm can set automatic thresholds to alert when a table has gone too long without a change in size or when an abnormal amount of rows are added or deleted.
Monitor Support
Below are the supported monitors for the Azure Synapse integration today. Please reach out to your Monte Carlo representative if you have requirements for additional Monitors.
Category | Monitor Type | Support |
---|---|---|
Automated Anomaly Detection | Freshness | |
Automated Anomaly Detection | Volume | ✅ |
Automated Monitoring | Schema Changes | |
Opt-in Monitor | SQL Rule | ✅ |
Opt-in Monitor | Comparison Rule | ✅ |
Opt-in Monitor | Freshness Rule | |
Opt-in Monitor | Volume Rule | ✅ |
Opt-in Monitor | Volume Anomaly Detection | ✅ |
Opt-in Monitor | Metrics Monitor | ✅ |
Opt-in Monitor | Dimension Tracking | ✅ |
Opt-in Monitor | JSON Schema Changes | |
Opt-in Monitor | Performance |
Connecting to Azure SQL Database
Now that we know the value connecting Azure SQL Database to Monte Carlo can bring, here are the necessary steps to set up the integration.
Prerequisites
To create a readonly service account, you will need access to a SQL admin user.
This guide explains how to create a read-only service account for Monte Carlo in your Azure SQL Database.
To review all steps necessary to integrate your SQL database with Monte Carlo, please see here.
Create a read-only service account
Connect to the master
database as the SQL admin and run:
CREATE LOGIN montecarlo WITH PASSWORD = '<password>';
Connect to the Dedicated SQL Pool database as the SQL admin and run:
CREATE USER montecarlo FROM LOGIN montecarlo;
EXEC sp_addrolemember 'db_datareader', 'montecarlo';
FAQs
What hosting solutions are supported?
This integration supports any instance that is reachable from one of our hosting options. Please see the networking docs for more detail.
Updated about 2 months ago