sql server 2008 调度程序作业中的自定义日志记录 >查看历史记录?
我正在创建 sql server 2008 代理调度程序作业形式的 sql 脚本。 如果在“作业”中的某些情况下失败,想要记录详细信息查看历史记录。
有什么办法,让我们可以使用 Job > 记录自定义文本吗?查看历史记录?
I am creating sql server 2008 Agent scheduler job form sql script.
Want to Log the details if failed in some case within Job > View Histroy.
Is there any way, so we can log custom text with Job > View Histroy?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是在 SQL 脚本中使用 print 命令
,
即然后查看各个步骤以查看输出。唯一的问题是它看起来像这样:
提取起来有点尴尬。
The simplest way is to use the print command in your SQL script
i.e.
Then look at the individual step to see the output. The only problem is that it will look something like this:
Which is a bit awkward to extract.