Home Forums SQL Server 2008 T-SQL (SS2K8) Is it possible to use sp_update_job to remove job notification? RE: Is it possible to use sp_update_job to remove job notification?

  • Use the following to remove the notification.

    EXEC msdb.dbo.sp_update_job

    @job_name=N'MyJobName',

    @notify_email_operator_name=N''

    GO