Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 812 Bytes

File metadata and controls

42 lines (29 loc) · 812 Bytes
title UserName (MDX) | Microsoft Docs
ms.date 06/04/2018
ms.prod sql
ms.technology analysis-services
ms.custom mdx
ms.topic reference
ms.author owend
ms.reviewer owend
author minewiskan

UserName (MDX)

Returns the domain name and user name of the current connection.

Syntax

  
UserName [ ( ) ]  

Remarks

The returned value is a string with the following format:

domain-name\user-name

Example

The following example returns the user name of the user that is executing the query.

WITH MEMBER Measures.x AS UserName  
SELECT Measures.x ON COLUMNS  
FROM [Adventure Works]  
  

See Also

MDX Function Reference (MDX)