Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
227 B

4 years ago
  1. # -*- mode: snippet -*-
  2. # contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
  3. # name: create procedure ...
  4. # --
  5. CREATE PROCEDURE [${1:dbo}].[${2:Name}]
  6. (
  7. $3 $4 = ${5:NULL} ${6:OUTPUT}
  8. )
  9. AS
  10. BEGIN
  11. $0
  12. END
  13. GO