We can using Oracle function dbms_lock.sleep(n_seconds) to run queries at certain interval, such as inserting data into a table every second. Function dbms_lock.sleep(n_seconds) will suspend the session for n_seconds. To illustrate this function, we insert the system time into a table every second 20 times.
SQL> create table tbl_x (id number, dt date); SQL> begin for i in 1..20 loop insert into tbl_x values(i, sysdate); dbms_lock.sleep(1); end loop; commit; end; SQL> / SQL> select * from tbl_x; ID DT ---------- ------------------- 1 12-12-2014 12:44:41 2 12-12-2014 12:44:42 3 12-12-2014 12:44:43 4 12-12-2014 12:44:44 5 12-12-2014 12:44:45 6 12-12-2014 12:44:46 7 12-12-2014 12:44:47 8 12-12-2014 12:44:48 9 12-12-2014 12:44:49 10 12-12-2014 12:44:50 11 12-12-2014 12:44:51 12 12-12-2014 12:44:52 13 12-12-2014 12:44:53 14 12-12-2014 12:44:54 15 12-12-2014 12:44:55 16 12-12-2014 12:44:56 17 12-12-2014 12:44:57 18 12-12-2014 12:44:58 19 12-12-2014 12:44:59 20 12-12-2014 12:45:00 20 rows selected.As it is shown above, records are inserted every 1 second.
No comments:
Post a Comment