Back to Top

how to Shedule an event to the specific time

SQL: How to Shedule an event to the specific time


Description

We can schedule an event in the sql server. So here is the syntax for that:

Syntax


CREATE EVENT my_event
  ON SCHEDULE
    EVERY 1 DAY
    STARTS '2014-04-30 23:00:00' ON COMPLETION PRESERVE ENABLE 
  DO

0comments

Post a Comment