• This is a very common question, and no, there is no direct way to do this.

    From https://msdn.microsoft.com/en-us/library/cc646012.aspx, the documentation on the debugger:

    Expressions are Transact-SQL clauses that evaluate to a single, scalar value, such as variables or parameters. The left debugger window can display the data values that are currently assigned to expressions in up to five tabs or windows: Locals, Watch1, Watch2, Watch3, and Watch4.

    (emphasis mine)

    There is a clunky workaround, by declaring a variable using the XML datatype, and setting its value to the result of a SELECT from the table variable. You can then see the value of the XML variable.

    It isn't so pretty, but it's the only workaround I know.

    Cheers!

    EDIT: I should say it's the only workaround if you absolutely must use the debugger. It's probably better not to do it using the debugger, and just select from the table variable into a permanent table at the points you're interested in, and just track it that way.