Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between COMPILE and COMPILE WITH DEBUG within Oracle Sql Dev?

I am new to Oracle SQL developer and I was just curious as to the difference between the COMPILE and COMPILE WITH DEBUG options. Does this mean if a program unit is simply COMPILED, then I will not be able to debug it ?

What about in a production environment, where I want to run through the procedure (in debug mode) but without recompiling (in order to avoid invalidating other objects) ?

like image 284
Hiro Avatar asked Sep 11 '25 08:09

Hiro


1 Answers

Does this mean if a program unit is simply COMPILED, then I will not be able to debug it ?

You're right.

What about in a production environment, where I want to run through the procedure (in debug mode) but without recompiling (in order to avoid invalidating other objects) ?

Without recompiling a procedure for debug, debugging is not possible!

like image 134
Tim Avatar answered Sep 12 '25 21:09

Tim