如何在 SQL Server 中验证触发器
我的问题是这样的:有时对数据库模式的更改会使触发器中的 SQL 语句无效。例如,我可能会在触发器引用的表中删除一列。当我这样做时,直到下次触发器触发时我才收到任何有关该问题的指示,在某些情况下,这可能需要几个月的时间才能投入生产。
在 SQL Server 数据库中验证对象(例如触发器或用户定义的函数)的最佳方法是什么?
My problem is this: sometimes changes to database schema invalidate the SQL statements in a trigger. For instance I may drop a column in a table that a trigger references. When I do that, I do not receive any indication of that problem until the next time the trigger fires, which might be months out in production in certain situations.
What is the best way to validate objects, such as triggers or user defined functions, in a SQL server database?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看一下名为 SQL 搜索 执行此操作 - 它在整个数据库中搜索任何类型的字符串。
在您的情况下:搜索例如您删除的列,然后让 SQL 搜索查找引用该列的所有存储过程、触发器等 ->为您提供了需要修复的问题的简单列表。
对于任何 DBA 或数据库开发人员来说,它都是一个很棒的必备工具 - 我是否已经提到过它绝对免费可用于任何类型的用途?
Have a look at the FREE Red-Gate tool called SQL Search which does this - it searches your entire database for any kind of string(s).
In your case: search for e.g. columns that you've dropped, and let SQL Search find all stored procs, triggers etc. that referenced that column -> gives you an easy list of those things that you need to fix.
It's a great must-have tool for any DBA or database developer - did I already mention it's absolutely FREE to use for any kind of use??
我不完全确定这种情况是否已涵盖,但您应该尝试 Red Gate 的 SQL Prompt 5 中的“查找无效对象”功能。如果这不起作用,请告诉我。
I'm not totally sure if this case is covered, but you should try the 'Find Invalid Objects' feature in Red Gate's SQL Prompt 5. Let me know if this doesn't work.