vote up 9 vote down star
2

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.

flag

71% accept rate
1  
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 ;) – pcampbell Mar 20 at 3:43
I'm boggled by calling an asynchronous service from T-SQL. – jmucchiello Oct 7 at 6:53

2 Answers

vote up 6 vote down check

look at the WAITFOR command

Eg.

-- wait for 1 second
WAITFOR DELAY '00:01'
link|flag
vote up 1 vote down

Your statement will wait for 1 minute and not 1 second. You need to add more '00:'

WAITFOR DELAY '00:00:01'

link|flag

Your Answer

Get an OpenID
or

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