SSMS 间歇性地针对错误的数据库执行我突出显示的脚本

发布于 2024-12-04 13:33:08 字数 273 浏览 2 评论 0原文

在 SQL Server 2008 R2 上,我有一个显式开头的脚本

USE MyDatabase;

,并且它永远不会切换到任何其他数据库; 当我执行整个脚本时,它会针对正确的数据库运行,正如我在第一行中指定的那样。

但是,如果在运行整个脚本后,突出显示并运行其中的一部分,SSMS 会间歇性地针对另一个数据库运行它。

这可能非常危险,而我使用以前版本的 SQL Server 时从未发生过这种情况! 我怎样才能避免这个危险的错误?

On SQL Server 2008 R2, I have a script that explicitly begins with

USE MyDatabase;

and it never ever switches to any other database;
When I execute the whole script, it runs against the correct database, as I have specified in the first line.

If, however, after I have ran the whole script, I highlight and run a part of it, SSMS intermittently runs it against another database.

This is potentially very dangerous, and it never happened to me with previous versions of SQL Server!
How can I avoid this dangerous bug?

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

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

发布评论

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

评论(2

晨与橙与城 2024-12-11 13:33:08

This sounds like this Connect bug that occurs if you have a RAISERROR or your SSMS session gets otherwise disconnected (this can be due to flaky network and you may not notice that it happened). It is a dangerous bug and while the Connect item doesn't state so explicitly, I suggest you apply SQL Server 2008 R2 SP1 to your workstation, as I've heard that it is fixed there.

一梦浮鱼 2024-12-11 13:33:08

我还喜欢在所有查询中完全限定我的表 (database.schema.table),而不是依赖于 use 语句。

I also prefer to fully qualify my tables (database.schema.table) in all queries rather than rely on a use statement.

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