SyntaxFix
Write A Post
Hire A Developer
Questions
**The simplest way to drop and recreate a stored proc in T-Sql is **
Use DatabaseName go If Object_Id('schema.storedprocname') is not null begin drop procedure schema.storedprocname end go create procedure schema.storedprocname as begin end