Skip to main content
Summation connects to Microsoft SQL Server — and compatible managed flavors (Azure SQL Database, Azure SQL Managed Instance, Amazon RDS for SQL Server, Google Cloud SQL for SQL Server) — using standard host/port credentials.
The connector authenticates with SQL Server Authentication (a SQL login and password). Windows Authentication and Microsoft Entra ID (Azure AD) are not supported.

What you’ll need

  • A reachable host and port (default 1433).
  • A database name.
  • A SQL login with SELECT on the tables you want exposed. See GRANT (Transact-SQL) in the SQL Server docs.
Create a dedicated read-only login for Summation. Its queries are then auditable and the connector has no way to modify data.

Where to find host/port for your provider

Form fields

Encryption

Most managed providers (Azure SQL, RDS, Cloud SQL) present a trusted certificate and work with Encrypt true and Trust Server Certificate false.

Setup SQL

See CREATE LOGIN and CREATE USER for more options.

Adding datasets

Source references use the three-part database.schema.table form:
Identifiers are case-sensitive when quoted. If a database, schema, or table name uses mixed case, wrap that part in double quotes — for example mssql:my_database."MySchema"."MyTable".

Common problems