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
1
Create a read-only login
2
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
3
Pick tables and configure datasets
Same as any other database connector — Summand discovers the schemas you can read, you toggle on the tables to analyze, and you set targets per dataset.
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.