Can we see the values (rows and cells) in a table valued variable in SQL Server Management Studio (SSMS) during debug time? If yes, how?
|
That's not yet implemented according this Microsoft Connect link: Microsoft Connect |
|||
|
|
Insert the above statement at the point where you want to view the table's contents. The table's contents will be rendered as XML in the locals window, or you can add |
|||||||
|
|
Just use the select query to display the table varialble, where ever you want to check. http://www.simple-talk.com/sql/learn-sql-server/management-studio-improvements-in-sql-server-2008/ |
|||||||||||||
|
|
This project https://github.com/FilipDeVos/sp_select has a stored procedure Usage:
While debugging a stored procedure you can open a new tab and run this command to see the contents of the temp table. |
|||
|
|
|
I have come to the conclusion that this is not possible without any plugins. |
|||||
|