5
In Mysql I used this syntax to create a scheduled event:
CREATE EVENT 'evento_LimparPaper'
ON SCHEDULE
EVERY 1 MONTH STARTS '2014-06-3 00:00:01'
ON COMPLETION NOT PRESERVE
ENABLE
COMMENT ''
DO BEGIN
UPDATE 'tbl_Paper' SET capa='mudar';
END
However, when trying to use these commands in an SQL Server database, it appears that the syntax is incorrect. How to solve?
Why the contrary votes? There is some serious problem in this question that I am not seeing?
– mgibsonbr