I am new to SQL server, I have requested to update a table daily based on specific criteria, so I created a stored procedure in SQL server, and I want to know how I can run a stored procedure on a daily /weekly/monthly basis.
CREATE PROC spupdate
AS
BEGIN
--do stuff update table
END