模拟长时间运行的 Oracle DB 查询
在 Oracle DB 中运行需要很长时间(至少几分钟)的数据库查询的最简单(最好没有任何新表创建)方法是什么?
What is the simplest (preferably without any new table creation) way of running a database query which takes long time (at least several minutes) in Oracle DB?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
考虑使用DBMS_LOCK.SLEEP(300),其中参数 - 等待的秒数。
Consider using DBMS_LOCK.SLEEP(300), where parameter - number of seconds to wait.
DBMS_LOCK.sleep
(http://www.oracle-base.com/articles/ 9i/UsefulProceduresAndFunctions9i.php)
DBMS_LOCK.sleep
(http://www.oracle-base.com/articles/9i/UsefulProceduresAndFunctions9i.php)