查询超时

发布于 2024-09-27 21:11:05 字数 205 浏览 1 评论 0原文

我想知道我们是否可以使 SQL 查询超时。

从某种意义上说,假设我有一个sql查询,其输出只有在10分钟内给出输出时才有用,之后即使它输出结果对我来说也没有用处。

我想要做的是,如果查询需要 10 分钟以上才能完成处理,那么它应该会自行终止。

有可能的方法吗?

一个例子会很有帮助。

如果我的想法无法理解,请告诉我。

I wanted to know if we can timeout a sql query.

In the sense, that suppose I have a sql query whose output is useful only if gives the output in 10 minutes ,after which even if it outputs the results its of no use to me.

What I want to do is that if the query takes more than 10 minutes to do the processing then it should just kind of kill itself.

Is there a possible way to do so??

An example will be pretty helpful.

Let me know if my thoughts are not comprehendible..

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

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

发布评论

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

评论(2

肥爪爪 2024-10-04 21:11:05

这是 SqlCommand.CommandTimeout

   SqlCommand cmd = new SqlCommand();
   cmd.CommandText = "SELECT blah FROM Categories ORDER BY CategoryID";
   cmd.CommandTimeout = 600;  // 10 minutes = 600 seconds
   // Caveat: it you need a timeout value of more than 30 - 60 seconds
   //         perhaps time to look at why it takes so long...

Here's what it would look like for the SqlCommand.CommandTimeout

   SqlCommand cmd = new SqlCommand();
   cmd.CommandText = "SELECT blah FROM Categories ORDER BY CategoryID";
   cmd.CommandTimeout = 600;  // 10 minutes = 600 seconds
   // Caveat: it you need a timeout value of more than 30 - 60 seconds
   //         perhaps time to look at why it takes so long...
陌生 2024-10-04 21:11:05

您可以将 Command 对象的 CommandTimout 属性设置为 10 分钟。当命令超时时,SQL Server 会注意到连接已断开并取消查询。

You can set the CommandTimout property of the Command object to 10 minutes. When the command times out, SQL Server will notice that the connection is dropped and cancel the query.

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