查询超时
我想知道我们是否可以使 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是 SqlCommand.CommandTimeout
Here's what it would look like for the SqlCommand.CommandTimeout
您可以将
Command
对象的CommandTimout
属性设置为 10 分钟。当命令超时时,SQL Server 会注意到连接已断开并取消查询。You can set the
CommandTimout
property of theCommand
object to 10 minutes. When the command times out, SQL Server will notice that the connection is dropped and cancel the query.