码迷,mamicode.com
首页 > 数据库 > 详细

Oracle 存储过程 延迟执行 DBMS_LOCK.SLEEP(60);

时间:2017-09-01 15:04:11      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:sda   data   output   存储   acl   int   art   span   highlight   

 
  1. --测试代码:  
  2.   
  3. declare   
  4.   -- Local variables here  
  5.   i integer;  
  6. begin  
  7.   -- Test statements here  
  8.    dbms_output.put_line(to_char(sysdate,‘yyyy-MM-dd HH24:MI:SS‘));  
  9.    DBMS_LOCK.SLEEP(60);--休眠60秒  
  10.    dbms_output.put_line(to_char(sysdate,‘yyyy-MM-dd HH24:MI:SS‘));  
  11. end;  
  12.   
  13.   
  14. --输出结果:  
  15.   
  16. 2012-08-27 16:25:49  
  17. 2012-08-27 16:26:49  

Oracle 存储过程 延迟执行 DBMS_LOCK.SLEEP(60);

标签:sda   data   output   存储   acl   int   art   span   highlight   

原文地址:http://www.cnblogs.com/pejsidney/p/7463171.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!