2

i am using PL/SQL developer by allroundautomations. Some days back i was able to create package and package body. i did recompiled several times package body. But since yesterday, i am facing this issue. I open package body and click on recompile (without doing any changes) it hangs.

please help !!!

Lalit Kumar B
  • 47,486
  • 13
  • 97
  • 124
Sam4Code
  • 541
  • 5
  • 9

1 Answers1

2
  1. Perhaps you could wait for a while until you see ORA-04021 timeout occurred while waiting to lock object. Even if you close the PL/SQL Developer window or end the process, the previous session might still be ACTIVE. You can kill that session and try again.

You can query v$locked_object to find out.

  1. It is also possible that, the package is in use by some other session when you try to compile it.

You can query v$sqlarea and v$session to find out.

Lalit Kumar B
  • 47,486
  • 13
  • 97
  • 124