I have a stored procedure which I edit through Visual Studio 2008. Is there a simple way to change the name of the stored procedure? Right now if I look at the sproc's properties, the name of the sproc is grayed out.
+1
A:
if you have management studio you can right click on procedure name and choose rename .
otherwise you have to drop and recreate;
josephj1989
2010-07-02 22:48:20
+1
A:
EXEC sp_rename OLDNAME, NEWNAME
Assuming you can execute SQL statements via VS2008. I mostly use SSMS for my SQL work.
enth
2010-07-02 23:35:58