Wednesday 17 February 2016

SESSION_ID (SQL Data Warehouse)

THIS TOPIC APPLIES TO: noSQL Server noAzure SQL Database yesAzure SQL Data Warehouse yesParallel Data Warehouse
Returns the ID of the current SQL Data Warehouse session.

Syntax

Azure SQL Data Warehouse and Parallel Data Warehouse
SESSION_ID ( )

Return Value

Returns an nvarchar(32) value.

General Remarks

The session ID is assigned to each user connection when the connection is made. It persists for the duration of the connection. When the connection ends, the session ID is released.
The session ID begins with the alphabetical characters 'SID'. These are case-sensitive and must be capitalized when session ID is used in SQL commands.
You can query the view sys.dm_pdw_exec_sessions to retrieve the same information as this function.

Examples

The following example returns the current session ID.
SELECT SESSION_ID();

No comments:

Post a Comment

SQL Server Services and Tools

  Microsoft provides both data management and business intelligence (BI) tools and services together with SQL Server. For data management, S...