After using a stored procedure, I wanted to use it again, so I ran this code:
UPDATE MyTable
SET MyColumn
= MyProcedure(MyColumn
);
That worked, so I know the procedure exists.
Next, I wanted to drop the procedure, so I ran this:
DROP PROCEDURE MyProcedure;
But I got the following error message:
SQL Error (1305) MyProcedure does not exist.
Given that I can still use the procedure, it must exist, but when I try to delete it, HeidiSQL tells me the procedure does not exist.
Does it exist or not?
How can I delete the stored procedure?
Could the upper case letters in the name of my stored procedure be causing the trouble?
My HeidiSQL version is 12.8.0.6908 on Windows 11.
Thanks.