在我的应用程序(ASP.NET,C#)中,我需要每天在一组预定义的时间间隔内运行存储过程。所以我创建了一个sql作业并安排了相同的工作。但问题是,可以选择使用应用程序创建/修改此时间间隔,这会将修改后的时间间隔存储在表中。所以我需要在用户配置的时间间隔内运行存储过程。
现在我正在执行以下步骤来解决此问题。
这很好用,但存储过程会每分钟执行一次(希望有人遇到同样的问题)。
寻找更好的解决方案来解决这个问题。
答案 0 :(得分:4)
假设这不是一个频繁的事件,请在更新表时执行sp_update_schedule。将其添加到更新过程或直接更新表时作为触发器。
答案 1 :(得分:3)
1创建一个sql作业并创建第1步(执行你的sp) https://msdn.microsoft.com/en-in/library/ms190268.aspx#Anchor_2
2。根据需要向作业添加多个计划(使用sp_add_jobschedule)。 详情:https://msdn.microsoft.com/en-us/library/ms366342.aspx。
答案 2 :(得分:3)
通过应用程序管理调度程序时间是好的。
但在现实世界中,为什么用户会不断更新调度时间?我的意思是说频率。
所以我认为每当从应用程序修改时间然后激活这个新的存储过程,它将使用sp_update_schedule
更新调度程序时间。
存储过程没有理由每分钟执行一次。它只会在通过应用程序修改调度程序时触发。
答案 3 :(得分:2)
我不确定您的应用程序或用户代码是如何工作的,但您可以通过调用https://msdn.microsoft.com/nl-nl/library/ms186757.aspx从您的用户代码触发SQL代理来启动作业。唯一的限制是用户需要是作业的所有者或sysadmin的成员,请参阅链接以获取更多详细信息。
答案 4 :(得分:2)
首先需要的是一个用于创建间隔时间表的小存储过程。
USE msdb
GO
CREATE PROCEDURE spCreateSchedule_Interval
@scheduleName NVARCHAR(255),
@intervalType VARCHAR(255), -- one of 'seconds', 'minutes', 'hours'
@interval int,
@ScheduleId int OUT
AS
BEGIN
-- determine time interval
DECLARE @intervalTypeInt INT;
IF @intervalType = 'seconds'
SET @intervalTypeInt = 2;
ELSE IF @intervalType = 'minutes'
SET @intervalTypeInt = 4;
ELSE IF @intervalType = 'hours'
SET @intervalTypeInt = 8;
EXEC msdb.dbo.sp_add_jobschedule
@job_name='NameOfTheJobToBeApplied', -- or you can use @job_id instead
@name=@scheduleName, -- you can later find the schedule to update/delete using this name, or the @ScheduleId
@enabled=1,
@freq_type=4, -- daily
@freq_interval=1, -- every day
@freq_subday_type=@intervalTypeInt, -- eg. 2 = seconds
@freq_subday_interval=@interval, -- eg. 15 - run every 15 seconds
@freq_relative_interval=0,
@freq_recurrence_factor=0,
@active_start_date=20160101, -- some date in the past to activate immediately, or put some date in the future for delay
@active_end_date=99991231, -- never end, or specify some valid date
@active_start_time=000000, -- active from 00:00:00 - caution: when creating multiple schedules use different time here, eg 000001, 000002, so that they not get started simultanously, as it might couse some errrors
@active_end_time=235959, -- active to 23:59:59
@schedule_id=@ScheduleID -- this will output the newly generated id, which can be used later to localize the schedule for update/delete
END;
GO
使用示例:
DECLARE @ScheduleId int;
EXEC spCreateSchedule_Interval
@scheduleName = 'UserA_Schedule',
@intervalType = 'minutes',
@interval = 27,
@ScheduleId = @ScheduleId OUT;
这应该创建每27分钟运行一次的计划。
您还可以使用proc来创建特定时间的计划:
CREATE PROCEDURE spCreateSchedule_ExactTime
@scheduleName NVARCHAR(255),
@timeToRun TIME,
@ScheduleId int OUT
AS
BEGIN
DECLARE @StartTime INT;
SET @StartTime = DATEPART(hour, @timeToRun) * 10000 + DATEPART(minute, @timeToRun) * 100 + DATEPART(second, @timeToRun);
EXEC msdb.dbo.sp_add_jobschedule
@job_name='NameOfTheJobToBeApplied', -- or you can use @job_id instead
@name=@scheduleName, -- you can later find the schedule to update/delete using this name, or the @ScheduleId
@enabled=1,
@freq_type=4, -- daily
@freq_interval=1, -- every day
@freq_subday_type=1, -- At the specified time
@freq_subday_interval=1, -- once a day, probably not used
@freq_relative_interval=0,
@freq_recurrence_factor=0,
@active_start_date=20160101, -- some date in the past to activate immediately, or put some date in the future for delay
@active_end_date=99991231, -- never end, or specify some valid date
@active_start_time=@StartTime, -- active from 00:00:00 - caution: when creating multiple schedules use different time here, eg 000001, 000002, so that they not get started simultanously, as it might couse some errrors
@active_end_time=235959, -- active to 23:59:59
@schedule_id=@ScheduleID -- this will output the newly generated id, which can be used later to localize the schedule for update/delete
END;
GO
使用示例:
DECLARE @ScheduleId INT;
EXEC spCreateSchedule_ExactTime
@scheduleName = 'UserB_Schedule',
@timeToRun = '14:58:00',
@ScheduleId = @ScheduleId OUT;
这应该创建每天14:58运行的计划。
上述两个程序可能很容易合并为一个。为清晰起见,易于维护。 它们还可以进一步增强,您可以参数化@freq_type,@ freq_interval等。 您只需要在文档中https://msdn.microsoft.com/pl-pl/library/ms366342(v=sql.110).aspx
另一步是更新现有计划的程序:
CREATE PROCEDURE spUpdateSchedule_Interval
@scheduleName NVARCHAR(255),
@intervalType VARCHAR(255), -- one of 'seconds', 'minutes', 'hours'
@interval int
--, @ScheduleId int -- you can use this instead of the firs param
AS
BEGIN
-- determine time interval
DECLARE @intervalTypeInt INT;
IF @intervalType = 'seconds'
SET @intervalTypeInt = 2;
ELSE IF @intervalType = 'minutes'
SET @intervalTypeInt = 4;
ELSE IF @intervalType = 'hours'
SET @intervalTypeInt = 8;
EXEC msdb.dbo.sp_update_schedule
--@schedule_id=@ScheduleID, -- you can use this instead of the line below, if you change the proc parameter
@name=@scheduleName,
--@new_name = @newName -- if you want to change the schedule name
@enabled=1,
@freq_type=4, -- daily
@freq_interval=1, -- every day
@freq_subday_type=@intervalTypeInt, -- eg. 2 = seconds
@freq_subday_interval=@interval, -- eg. 15 - run every 15 seconds
@freq_relative_interval=0,
@freq_recurrence_factor=0,
@active_start_date=20160101, -- some date in the past to activate immediately, or put some date in the future for delay
@active_end_date=99991231, -- never end, or specify some valid date
@active_start_time=000000, -- active from 00:00:00 - caution: when creating multiple schedules use different time here, eg 000001, 000002, so that they not get started simultanously, as it might couse some errrors
@active_end_time=235959 -- active to 23:59:59
END;
GO
用法:
EXEC spUpdateSchedule_Interval
@scheduleName = 'UserB_Schedule',
@intervalType = 'minutes',
@interval = 25;
GO
您现在应该能够通过类比创建spUpdateSchedule_ExactTime。
您需要的最后一件事 - 用于删除计划的存储过程:
USE msdb
GO
CREATE PROCEDURE spDeleteSchedule
@scheduleName VARCHAR(255)
AS
BEGIN
EXEC msdb.dbo.sp_delete_schedule @schedule_name = @scheduleName, @force_delete = 1;
END;
GO
及其用法:
USE msdb
GO
EXEC spDeleteSchedule 'UserA_Schedule';
或者您可以轻松编写将使用schedule_id而不是schedule_name的替代方法(sp_delete_schedule可以获取其中任何一个)。
<强>注意:强> 在更新和删除过程中,您可以使用名称或ID来标识计划。 虽然名称更人性化,并且我使用它们来使示例更容易理解,但我强烈建议您使用ID。 名称不必强制为唯一,因此如果您碰巧创建了两个具有相同名称的日程表,则删除和更新过程都将失败,除非您使用schedule_id作为参数。