Answers for "delay in sql procedure"

SQL
1

how to delay stored procedure execution in sql server

How to delay the execution of the stored procedure in SQL SERVER
The code below will delay the execution for 2hrs.

BEGIN  
    WAITFOR DELAY '02:00';  
    EXECUTE sp_helpdb;  
END;  
GO
Posted by: Guest on February-19-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language