I don't know about 2008R2 but when we had migrated from SQL 2000 to 2005 as a temporary workaround we had manually created a stored procedure sp_insmswebtask . The best solution is to use SQL Reporting services.CREATE PROCEDURE sp_insmswebtask-- This procedure is for internal use by Web Assistant @procname nvarchar(128), @outputfile nvarchar(255), @taskstat bit, @wparams image, @trigflags smallint, @taskid intAS INSERT INTO dbo.mswebtasks(procname, outputfile, taskstat, wparams, trigflags, taskid) VALUES(@procname, @outputfile, @taskstat, @wparams, @trigflags, @taskid)