Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I can't seem to google the syntax for editing an already-created stored procedure in MySQL.

I'd be happy with a link.

share|improve this question

3 Answers

up vote 9 down vote accepted

You can change certain attributes using the ALTER PROCEDURE syntax

To change the procedure body you will have to drop and recreate the entire procedure, in this case SHOW CREATE PROCEDURE may be useful

share|improve this answer
Seems like the only way. But I don't get it. When you select "Alter Procedure" (should be "Routine") in Workbench, you get a Create statement that works fine. – Gruber Nov 2 '12 at 11:01
1  
Workbench's alter routine is a workbench specific abstraction. The actual raw SQL is a ALTER PROCEDURE. If you change a procedure in workbench it will still drop and recreate. – Neil Aitken Nov 2 '12 at 17:22

In addition to what Neil Aitken said and provided you work on windows, you can download Toad for MySQL by Quest Software, a free and very usefull IDE for MySQL.

Toad has tools (=GUIs to SP, Tables, Views and more) that enable you to edit stored procedures in an editor and will even show you the syntax used execute many commands!

share|improve this answer
From what i've seen Toad is a great tool, I must get around to learning it. – Neil Aitken Apr 1 '10 at 11:38
1  
@Neil Aitken: Toad is great, I mostly apreciate it's facilitating 'autodidactic' learning by letting me see the SQL-incantation it will use to do my bidding! – lexu Apr 1 '10 at 11:42
Isn't SQL Management Studio quite similar to toad? – ALOToverflow Apr 1 '10 at 11:48
Lol @ SQL-incantation, it does feel like that sometimes. Downloading the freweware edition now, I've been after a new tool for ages. – Neil Aitken Apr 1 '10 at 11:48
@Frank: I don't know 'SQL Management Studio' , the web seems to suggest it's a microsoft app aimed at MS SQL-Server. If that's not what your talking about: where can I find it? – lexu Apr 1 '10 at 12:02
show 3 more comments

i found dropping and re-creating as the easiest solution:

DROP PROCEDURE IF EXISTS foo;
    delimiter //
    create PROCEDURE foo (args)
    begin
      bla bla
    end//
    delimiter ;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.