Skip to content

Instantly share code, notes, and snippets.

@Hromenique
Last active August 29, 2015 14:06
Show Gist options
  • Save Hromenique/b758d962fa41e77c6296 to your computer and use it in GitHub Desktop.
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
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