declare @d varchar(19); set @d = convert(varchar(19), getDate(), 120); raiserror(@d, 10, 1) with nowait; waitfor delay '00:00:10'; set @d = convert(varchar(19), getDate(), 120); raiserror(@d, 10, 1) with nowait; waitfor delay '00:00:10'; select 'All Done' goThe above prints activity in **real time**. Substitute raiserror with select or print and one is doomed to wait entire 20 seconds and then get all prints at once :(
No one has followed this question yet.