如何在 plsql 中为匿名块或查询设置超时?

How to set timeout for anonoymous block or query in plsql?(如何在 plsql 中为匿名块或查询设置超时?)
本文介绍了如何在 plsql 中为匿名块或查询设置超时?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我知道您可以设置用户个人资料或设置查询的一般超时.>

但我希望为过程中的特定查询设置超时并捕获异常,例如:

开始更新 tbl 设置 col = v_val;--无限时间从 id = 20 的 tbl 中删除;--无限时间开始从 tbl 中删除;-- 我希望这有一个有限的时间来执行异常(超时???)然后- 代码;结尾;结尾;

这可能吗?我能捕捉到任何超时异常吗?每个块或查询?没有找到关于该主题的太多信息.

解决方案

不,您不能在 pl/sql 中设置超时.您可以为此使用宿主语言,在其中嵌入 sql 和 pl/sql.

I know you can set user profiles or set a general timeout for query.

But I wish to set timeout to a specific query inside a procedure and catch the exception, something like :

begin
      update tbl set col = v_val; --Unlimited time
      delete from tbl where id = 20; --Unlimited time

      begin
            delete from tbl; -- I want this to have a limited time to perform
            exception  when (timeout???) then
            --code; 

      end;

end;

Is this possible? is there any timeout exceptions at all I can catch? per block or query? didn't find much info on the topic.

解决方案

No, you can not set a timeout in pl/sql. You could use a host language for this in which you embed your sql and pl/sql.

这篇关于如何在 plsql 中为匿名块或查询设置超时?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)