I am using SQL Server 2008 Express and I cannot buy the full version it is not in the budget.
What I need is after an insert is done to call a stored procedure to send a notification email after a certain amount of hours. This amount of hours is also stored in the database for configurable reasons.
I was thinking about using windows scheduler and running a stored procedure twice a day but if the user set it to run less than 12 hours that will lead to the user being notified two times or more. I also certainly don't think it is wise to run it every hour. So both these options don't seem like the best.
I was wondering is there was a way to time something like this or even schedule it to run at a certain time (using express remember)
Any Help would be greatly appreciated and thanks for reading!