2026.03.b
Highlights
The 2026.03.b release adds support for managing SQL Server sessions.
- The List Sessions by Server and List Session by Database return information about the SQL Server sessions running on the specified SQL Server instance or database running on a SQL Server instance.
- The Delete Session supports deleting the specified SQL Server session.
Sessions
Clients with the Data Bridge Admin role can now view a list of active server sessions on their Data Bridge cluster. Session operations support filtering server sessions by managed server instance or database. Data Bridge Admins can also delete active sessions on the hosted databases.
List Sessions by Server Instance
The List Sessions by Server Instance operation (GET /databridge/v1/sql-instances/{instanceName}/sessions) returns a list of server sessions on the specified server instance.
{
"sessionId": 54,
"databaseName": "master",
"loginName": "sa",
"programName": "Core Microsoft SqlClient Data Provider",
"hostName": "eih-api-5555f4f65c-7qsfv",
"status": "running",
"loginTime": "2026-01-27T21:17:59.693",
"lastRequestStartTime": "2026-01-27T21:17:59.69",
"lastRequestEndTime": "2026-01-27T21:17:59.69",
"cpuTime": 0,
"memoryUsage": 0,
"executingSql": "SELECT * from sys.databases",
"blockingSessionId": 0
}
| Property | Type | Description |
|---|---|---|
sessionId | Number | ID of session. |
databaseName | String | Name of database associated with the session. |
loginName | String | Login of principal running the session. |
programName | String | Name of program running the session. |
hostName | String | Name of host machine running the session. |
status | String | Status of session, e.g. running, pending, suspended, etc. |
loginTime | String | |
lastRequestStartTime | String | |
lastRequestEndTime | String | |
cpuTime | Number | CPU used |
memoryUsage | Number | Memory sed. |
executingSql | String | If applicable. |
blockingSessionId | Number | If true, session is blocked. |
List Sessions by Database
The List Sessions by Database operation (GET /databridge/v1/sql-instances/{instanceName}/databases/[databaseName]/sessions) returns a list of server sessions running on a specific database.
This operation takes two path parameters: instanceName and databaseName. The instaneName identifies the ID of a managed server instance. The databaseName identifies the ID of a database on the server instance.
{
"sessionId": 54,
"databaseName": "master",
"loginName": "sa",
"programName": "Core Microsoft SqlClient Data Provider",
"hostName": "eih-api-5555f4f65c-7qsfv",
"status": "running",
"loginTime": "2026-01-27T21:17:59.693",
"lastRequestStartTime": "2026-01-27T21:17:59.69",
"lastRequestEndTime": "2026-01-27T21:17:59.69",
"cpuTime": 0,
"memoryUsage": 0,
"executingSql": "SELECT * from sys.databases",
"blockingSessionId": 0
}
Delete Sessions
The Delete Session operation (DELETE /databridge/v1/sql-instances/{instanceName}/sessions/{spid}) deletes the specified server session.
This operation takes two path parameters: instanceName and spid.
If successful, returns 204 Accepted
