Is it possible to control where the print/raiseerror statements print in the result window in Sql Server Management Studio.
e.g.
sql Code:
declare @x int set @x = 0 while (@x < 10) begin -- do my stuff here set @x = @x + 1 -- print progress -- can we print all these on just one line instead of each one on separate line ?? RAISERROR ('|', 0, 1) WITH NOWAIT end


icon on the left of the post.
Reply With Quote
