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?
+7
A:
Consider using DBMS_LOCK.SLEEP(300), where parameter - number of seconds to wait.
Veton
2009-09-07 14:08:16
Thanks, that's what I really need :)
Superfilin
2009-09-07 14:11:40
+1 Very useful, thanks for the tip!
javashlook
2009-09-10 18:14:02