Is there to way write a T-SQL command to just make it sleep for a period of time? I am writing a web service asynchronously and I want to be able to run some tests to see if the asynchronous pattern is really going to make it more scalable. In order to "mock" an external service that is slow, I want to be able to call a SQL server with a script that runs slowly, but isn't actually processing a ton of stuff.

link|improve this question

63% accept rate
3  
Fair question! I might want to use this sometime. As a complete aside, this is the first time I've ever heard of wanting the DB to be slower ;) – p.campbell Mar 20 '09 at 3:43
1  
I'm boggled by calling an asynchronous service from T-SQL. – jmucchiello Oct 7 '09 at 6:53
feedback

1 Answer

up vote 84 down vote accepted

look at the WAITFOR command

Eg.

-- wait for 1 minute
WAITFOR DELAY '00:01'

-- wait for 1 second
WAITFOR DELAY '00:00:01'

This command allows you a high degree of precision but is only accurate within 10ms - 16ms on a typical machine as it relies on GetTickCount. So, for example, the call WAITFOR DELAY '00:00:00:001' is likely to result in no wait at all.

link|improve this answer
WAITFOR DELAY worked. too bad I voted it down before I could see it work. – trace Feb 8 at 7:14
1  
Why would you even vote something down if you didn't know it'd work? – Rich May 3 at 10:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.