How to give sleep command in pl/sql ? I heard like there are many ways but not known. Please let me know which one is better if we have many options. Thank you.
You can use the built-in package DBMS_LOCK.
Example:
SQL> exec dbms_lock.sleep(10);
The unit of measurement is seconds.
No one has followed this question yet.