Connection parameters
Setup
Run the following SQL on your Azure SQL instance to create a dedicated user for Datachecks.datachecks_tmp schema is used for intermediate processing and keeps Datachecks operations isolated from your production data.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Connect Azure SQL as a data source in Datachecks.
| Field | Description |
|---|---|
| Connection Name | A label for this connection within Datachecks |
| Host | The server name hosting your database |
| Port | Default is 1433. Specify an alternative if your server uses a different port |
| Username | The dedicated user for Datachecks |
| Password | The password for the Datachecks user |
| Database | The name of the Azure SQL database you want to connect to |
| Schema | The schema you want to access |
| ODBC Driver | The driver required to establish the connection (for example, ODBC Driver 18) |
USE DatabaseName;
CREATE SCHEMA datachecks_tmp;
CREATE LOGIN DatachecksUser WITH PASSWORD = 'YourSecurePassword';
CREATE USER DatachecksUser FOR LOGIN DatachecksUser;
GRANT SELECT ON SCHEMA::YourSchema TO DatachecksUser;
GRANT SELECT, INSERT, UPDATE, DELETE ON SCHEMA::datachecks_tmp TO DatachecksUser;
datachecks_tmp schema is used for intermediate processing and keeps Datachecks operations isolated from your production data.