In T-SQL debugging, "Step Into" behaves like "Step Over."
Jungsooooo
0
Reputation points
- visual studio 2022 (17.11.5)
- Microsoft SQL Server 2022 (RTM) - 16.0.1000.6 (X64) Oct 8 2022 05:58:25 Copyright (C) 2022 Microsoft Corporation Developer Edition (64-bit) on Windows 10 Enterprise 10.0 <X64> (Build 22631: ) (Hypervisor)
During the debugging process of a procedure, when using Step Into on the EXEC procedure
statement, it behaves like Step Over. However, the results (e.g., return_value
) are displayed correctly.
What could be the reason for this behavior, and how can it be resolved?
On the 6th line, when I use Step Into (F11), [usp_user_insert]
does not open, and it skips directly to:
SELECT @return_value as 'Return Value'
.
Sign in to answer