Hello,I am trying to schedule a job to run when called from a SPThe name of the SP am trying to run is 'weekly_Updates' and i am trying to add it as a job. Am not sure what I am doingHow do i add this SP to be execute at 0:00 hoursthanksUSE msdb ;GOEXEC dbo.sp_add_job @job_name = N'sally', @enabled = 1, @description = N'weekly Updates', @owner_login_name = N'sa', @notify_level_eventlog = 2, @notify_level_email = 2, @notify_level_netsend = 2, @notify_level_page = 2, @notify_email_operator_name = N'sysname', @notify_netsend_operator_name = N'sa', @notify_page_operator_name = N'sa', @delete_level = 0 ;GO
Am getting this errorMsg 14234, Level 16, State 1, Procedure sp_verify_job, Line 243The specified '@notify_email_operator_name' is invalid (valid values are returned by sp_help_operator).
Yes O !