Home Forums SQL Server 2008 SQL Server 2008 - General How To Get Timer Like Funcationality in SSMS to Auto execute a Query every N incremenets RE: How To Get Timer Like Funcationality in SSMS to Auto execute a Query every N incremenets

  • Have you tried replacing the While loop with a GO N?

    SELECT *

    FROM MyTable

    waitfor delay '00:00:02'

    GO 5

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2