Remove debug information

It is currently possible to add debug information to packages using PL/SQL developer.

Is there any way of removing this debug information?
 
You can compile the Package with SQL*Plus.
I think in default it don't add the debug information...
 
From a Command or SQL window:

ALTER PACKAGE packagename COMPILE;

as opposed to

ALTER PACKAGE packagename COMPILE DEBUG;

This might make a handy Browser Extender option.
 
Back
Top