我接管了一个写得不好的系统并执行了一个特定的存储过程,它似乎在调用sp_send_dbmail
。目前我甚至没有在商店程序中看到它自己在sp_send_dbmail
被调用的地方。在这个阶段,我正在寻找一种方法,可以从商店程序中永久禁用它,甚至可以从中调用它。也许它只在商店程序出错时调用了吗?如果是的话,那是在哪里设定的?
这就是我的商店程序:
USE [pis]
GO
/****** Object: StoredProcedure [dbo].[deal_note] Script Date: 4/15/2015 7:25:27 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER procedure [dbo].[deal_note](
@keycode varchar(50),
@deal_id int,
@notes varchar(max)
) as
/*
select * from dbo.consumernotes
*/
begin
set nocount on
--parse key and code
declare @key int
declare @code int
select
@key = left(@keycode, charindex('-',@keycode)-1),
@code = substring( @keycode, charindex('-', @keycode)+1, len(@keycode) )
declare @user_id int
select top 1
@user_id = k.[user_id]
from acc.Keys k
where k.id = @key
and k.code = @code
insert into dbo.ConsumerNotes
(deal_id, notes, created_by )
select @deal_id, @notes, @user_id
if @@rowcount>0
select '0' [code], 'note' [section], 'Record updated.' [message]
else
select '1' [code], 'note' [section], 'Error updating record..' [message]
end--procedure
答案 0 :(得分:0)
您必须暂时停止数据库邮件,通过在过程开始时添加以下语句来执行此操作:
EXECUTE MSDB.dbo.sysmail_stop_sp
在程序结束时,您将需要再次启动数据库邮件,这可以通过以下方式完成:
EXECUTE MSDB.dbo.sysmail_start_sp