I'm looking for the oracle equivalent for WAITFOR DELAY
in MsSql so I can test what happens when I get a timeout in my scripts.
Asked
Active
Viewed 1,355 times
1 Answers
6
Silly, typing this question gave me the perfect google query which lead met to this answer:
BEGIN
dbms_lock.sleep(5);
END;

Lodewijk
- 2,380
- 4
- 25
- 40