如何在 SQL Server 中配置和运行数据库邮件
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想不出任何方法来配置数据库邮件以发送每个回滚或事务,这有点矫枉过正,而且听起来您无论如何都想对其进行选择性。
不过,您可以做的是在存储过程中每次提交/回滚后添加对电子邮件 sp 的调用。下面是一个简单的示例:
您可以在此处阅读有关 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:
You can read more about the parameters for sp_send_dbmail here: http://msdn.microsoft.com/en-us/library/ms190307.aspx
Hope this helps