automatic events occured on time in SQL ASP.net
i am developing a website and in this i want automatic SQL procedure call that will called after every 15 days...
is there any trigger or proc开发者_高级运维edure that works for it or in ASP.net or vb.net to achieve the above task...
thanks in advance...
If you are using a full (I.e. not express) version of SQL server then just use the SQL agent to schedule a job. If you are using an express edition then you can get around it by using the windows scheduler to run a batch file that fires your stored procedure
精彩评论