I have Microsoft SQL Server Management Studio Express
Is there a way to see output/messages while a process is running?
For example, if I type
declare @count smallint
set @count = 1
While @count < 1000
Begin
Select @count
Set @count = @count + 1
END
The "1,2,3..." do not show up until the entire query is finished, and then they show up all at one time.
How do I get output to be displayed as the process is going?
Thanks!
Is there a way to see output/messages while a process is running?
For example, if I type
declare @count smallint
set @count = 1
While @count < 1000
Begin
Select @count
Set @count = @count + 1
END
The "1,2,3..." do not show up until the entire query is finished, and then they show up all at one time.
How do I get output to be displayed as the process is going?
Thanks!