Skip to content

Latest commit

 

History

History
57 lines (42 loc) · 2.79 KB

File metadata and controls

57 lines (42 loc) · 2.79 KB
title Locals Window
description Learn how to use the Locals window of the Transact-SQL debugger to display and modify expressions from the current call stack frame.
titleSuffix T-SQL debugger
ms.prod sql
ms.technology ssms
ms.topic conceptual
helpviewer_keywords
Locals Window [Transact-SQL]
ms.assetid 59bea640-7823-4b4d-832c-f384d83cca2f
author markingmyname
ms.author maghan
ms.reviewer
ms.custom seo-lt-2019
ms.date 12/04/2019
monikerRange >=aps-pdw-2016||=azuresqldb-current||=azure-sqldw-latest||>=sql-server-2016||>=sql-server-linux-2017||=azuresqldb-mi-current

Transact-SQL Debugger - Locals Window

[!INCLUDE SQL Server]

The Locals window displays information about the local expressions in the current scope of the [!INCLUDEtsql] debugger. The scope is set to the current call stack frame that is selected in the Call Stack window. You must be in debug mode to display the local expressions.

[!INCLUDEssms-old-versions]

Task List

To access the Locals window

  • On the Debug menu, click Windows, and then click Locals.

To change the value of an expression

  • Right-click the expression, and then select Edit Value.

Columns

Name
Is the name of the local expression. The [!INCLUDEtsql] debugger lists variables, parameters, and the system functions that have names that start with @@.

Value
Displays the value that is currently assigned to the local expression. This column is blank when no value has been assigned to the expression.

If the length of an expression is larger than the width of the Value column, a tooltip displays the full value when you move the pointer over the Value cell for that expression.

A magnifying glass icon in a Value cell indicates that the [!INCLUDEtsql] debugger visualizer is available. In the list, you can specify Text Visualizer, XML Visualizer, or HTML Visualizer. To start a debugger visualizer, click the magnifying glass icon. The [!INCLUDEtsql] debugger opens a dialog box that displays the data in a format appropriate to the data type.

Type
Displays the data type of the expression.

See Also

Transact-SQL Debugger
Transact-SQL Debugger Information
Watch Window
Call Stack Window
QuickWatch Dialog Box
Expressions (Transact-SQL)