At times, in test scenarios, you may want to emulate that a transaction or a T-SQL query takes ‘x’ amount of time. Well that is possible (although not with precision) in SQL Server (2005/2008) using the WAITFOR command. Here’s an example of delaying query execution till a specified time interval has elapsed – let us say 10 secondsUSE Northwind
WAITFOR DELAY '00:00:10';
SELECT LASTNAME, FIRSTNAME FROM Employees; Read more: SQL Server curry
WAITFOR DELAY '00:00:10';
SELECT LASTNAME, FIRSTNAME FROM Employees; Read more: SQL Server curry
0 comments:
Post a Comment