我正在尝试使用Microsoft SQL Server 2008的添加计划来执行时间间隔。我是具体的,我希望有时间运行weekly once sunday midnight
。自@freq_type
每周运行以来@freq_subday_type
为8,daily once midnight
为1,因为我希望它在特定时间运行。但是,这也可以应用于EXEC sp_add_schedule
@schedule_name = N'UTC +3h Daily Once Midnight' ,
@freq_type = 4,
@freq_interval = 1,
@freq_subday_type = 1 ,
@freq_subday_interval = 0,
@active_start_time=210000
GO
。我不希望它看起来一样。我怎样才能使星期日变得更具体,指明它必须是星期日,这是特定的一天。
每日一次午夜
EXEC sp_add_schedule
@schedule_name = N'UTC +6h Weekly Once Sunday Midnight' ,
@freq_type = 8,
@freq_interval = 1,
@freq_subday_type = 1 ,
@freq_subday_interval = 0,
@active_start_time=180000
GO
每周一次周日午夜
const nightmare = new Nightmare({'show': show, 'BrowserWindow': {height: 900}});
答案 0 :(得分:1)
我认为第二个时间表如下:
USE msdb ;
GO
EXEC sp_add_schedule
@schedule_name = N'UTC +6h Weekly Once Sunday Midnight' ,
@freq_type = 8,
@freq_interval = 1,
@freq_recurrence_factor=1,
@freq_subday_type = 1 ,
@freq_subday_interval = 0,
@active_start_time=180000
Go
祝你好运。