Which statement is valid when removing procedures?
Reveal answer
Fill a bubble to check yourself
Which statement is valid when removing procedures?
Use a drop procedure statement to drop a standalone procedure.
Use a drop procedure statement to drop a procedure that is part of a package. Then recompile the package specification.
Use a drop procedure statement to drop a procedure that is part of a package. Then recompile the package body.
For faster removal and re-creation, do not use a drop procedure statement. Instead, recompile the procedure using the alter procedure statement with the REUSE SETTINGS clause.
To remove a standalone procedure from the database, use the DROP PROCEDURE statement. Procedures inside a package cannot be dropped individually; the entire package body must be modified and recompiled.