How can I drop a procedure if it's in lower case. is there any trick so I can get rid of it, b/c the regular command to drop procedure is very simple.
drop procedure
Printable View
How can I drop a procedure if it's in lower case. is there any trick so I can get rid of it, b/c the regular command to drop procedure is very simple.
drop procedure
use quotation marks around the procedure name.
Issue
drop procedure schema.procedure_name;
Sam
try double quotes around procedure name.