Advertisement
blacksvk

Untitled

Feb 26th, 2020
469
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. SET ANSI_NULLS ON
  2. GO
  3. SET QUOTED_IDENTIFIER ON
  4. GO
  5.  
  6. CREATE PROCEDURE WaitForOK
  7. AS
  8. BEGIN
  9. -- SET NOCOUNT ON added to prevent extra result sets from
  10. -- interfering with SELECT statements.
  11. SET NOCOUNT ON;
  12.  
  13. WAITFOR DELAY '00:00:15'
  14. SELECT 'ok' as result
  15.  
  16. END
  17. GO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement