如何在 SQL Server 中配置和运行数据库邮件

发布于 2024-09-02 03:40:11 字数 343 浏览 8 评论 0原文

如何在 SQL Server 2008 中启用和运行数据库邮件?我知道需要

  • 启用 Service Broker
  • 配置 SMTP(需要邮件服务器)
  • 使用配置存储过程

我不知道应用程序和数据库邮件之间的关系是什么。

实际上如何为回滚提交事务启用数据库邮件? (不适用于所有 SP,仅适用于其中一些)

更新:数据库邮件是一项自动向您在配置中指定的人员发送邮件(或短信)的服务。您可以指定该事件(发送邮件)的触发地点和时间。所以我想看看如何配置它。

How to enable and run database mail in SQL Server 2008? I know that it need to

  • Enabling Service Broker
  • Configuring SMTP (a Mail server is needed)
  • Using configuration stored procedure

I don't know what's the relation between application and database mail.

Actually how to enable database mail for a RollBack and Commit Transaction ? (not for all SP , just for some of them)

Update: database mail is a service which automatically sends mail (or sms) to a person which you specify in the configuration. You can specify that this event (sending mail) where and when fired. So I want to see how can I configure this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

安静 2024-09-09 03:40:11

我想不出任何方法来配置数据库邮件以发送每个回滚或事务,这有点矫枉过正,而且听起来您无论如何都想对其进行选择性。

不过,您可以做的是在存储过程中每次提交/回滚后添加对电子邮件 sp 的调用。下面是一个简单的示例:

BEGIN TRAN
-- sql operations here
COMMIT

-- send email
EXEC msdb.dbo.sp_send_dbmail
@profile_name = 'DB Alerts',
@recipients = '[email protected]',
@body = 'Commit completed for ...',
@subject = 'SQL Commit/Rollback event';

您可以在此处阅读有关 sp_send_dbmail 参数的更多信息: http: //msdn.microsoft.com/en-us/library/ms190307.aspx

希望这有帮助

I cannot think of any way to configure db mail to send for every rollback or transaction, that would be a little overkill, and it sounds like you want to be selective about it anyways.

What you can do though is add a call to the email sp after each commit / rollback in your stored procedures. Here's a quick example:

BEGIN TRAN
-- sql operations here
COMMIT

-- send email
EXEC msdb.dbo.sp_send_dbmail
@profile_name = 'DB Alerts',
@recipients = '[email protected]',
@body = 'Commit completed for ...',
@subject = 'SQL Commit/Rollback event';

You can read more about the parameters for sp_send_dbmail here: http://msdn.microsoft.com/en-us/library/ms190307.aspx

Hope this helps

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文