I'm using Management Studio 2012 but I'm not able to debug any SQL code. After I hit the Debug button I'm not getting any green arrow on the left side and none of my SQL object are being loaded to the memory.
I'm getting this message when I move my cursor over the breakpoint I set: The breakpoint will not currently be hit. Unable to bind SQL breakpoint at this time. Object containing the breakpoint not loaded.
I followed a youtube video demonstrating how to debug in Studio 2012: http://www.youtube.com/watch?v=_jsFM_PUPgA&feature=relmfu
The guy in the video around 4:30 writes a small SQL query, puts a breakpoint in the SELECT and clicks on Debug. Then he will get a small green arrow on the top left corner of the editor and also his breakpoint is being hit. Mine isn't.
This is what I would like to debug:
declare @count int = 0
while @count <> 10
begin
select @count
set @count = @count + 1
end
It's pretty simple and the debugging should work. Of course, I would like to debug more complex stored procedures later on..
Any suggestions?