3

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.

Community
  • 1
  • 1
Lodewijk
  • 2,380
  • 4
  • 25
  • 40

1 Answers1

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