I want to implement every-minute database stored procedure executing in ASP.NET MVC web site using Quartz.Net. I wonder how can I exec the procedure with and without parameters.
I want to implement every-minute database stored procedure executing in ASP.NET MVC web site
Share
Well, it’s a matter of configuring the scheduler and then in the job implementation call the stored procedure. Also if you are using SQL Server haven’t you considered doing this using the server agent?