The Azure SQL connector talks to Microsoft’s managed SQL Server (Azure SQL Database, Azure SQL Managed Instance) over the standard TDS protocol with TLS. Available on Enterprise plans.Documentation Index
Fetch the complete documentation index at: https://docs.summand.com/llms.txt
Use this file to discover all available pages before exploring further.
What Summand needs
A SQL login with read-only access to the schemas and tables you intend to analyze:SELECTon the target tablesVIEW DEFINITIONon the schemas (for catalog discovery)- Standard SQL
INFORMATION_SCHEMAaccess
INFORMATION_SCHEMA, and never executes user-supplied SQL.
Network access
Summand connects from a fixed set of egress IPs (visible in Settings → Connectivity). Allowlist them on:- The Azure SQL server’s firewall (Networking → Firewall and virtual networks)
- Any Azure Private Link configuration if the server is private
Setup
Create a read-only login
Add the connector
From Connectors → Add connector → Azure SQL, provide:
- Server (e.g.
<your-server>.database.windows.net) - Port — usually
1433 - Database name
- Username and password from the previous step
Authentication
Today, Summand uses SQL authentication (username + password). Microsoft Entra ID authentication and managed-identity authentication are on the roadmap for organizations that want to standardize on Entra credentials.Performance
Azure SQL connections honor the standard SQL Server query plan — Summand’s curation step issues straightforwardSELECT * against the table. For very large tables, create a database view that pre-filters or samples and point Summand at the view.