Last active
August 29, 2015 14:06
-
-
Save Hromenique/b758d962fa41e77c6296 to your computer and use it in GitHub Desktop.
Exemplo de "cabeçalho" no script de criação de procedures que faz o drop da procedure caso a mesma exista
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If exists (select 1 from sys.procedures where name = 'myProcedure') | |
Drop Procedure myProcedure | |
--CREATE PROCEDURE myProcedure ...... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment