0 / 60 seg.

What is the problem with this code?

DECLARE @Counter int;
SET @Counter = 1;
WHILE @Counter > 0
BEGIN
    SET @Counter = @Counter +1;
END;