We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0eabc8a commit 864170cCopy full SHA for 864170c
snippets/mssql.json
@@ -205,22 +205,6 @@
205
"description": "Create a stored procedure"
206
},
207
208
- "Drop a stored procedure": {
209
- "prefix": "sqlDropStoredProc",
210
- "body": [
211
- "-- Drop the stored procedure called '${1:StoredProcedureName}' in schema '${2:SchemaName}'",
212
- "IF EXISTS (",
213
- "SELECT *",
214
- "\tFROM INFORMATION_SCHEMA.ROUTINES",
215
- "WHERE SPECIFIC_SCHEMA = N'${2:SchemaName}'",
216
- "\tAND SPECIFIC_NAME = N'${1:StoredProcedureName}'",
217
- ")",
218
- "DROP PROCEDURE ${2:SchemaName}.${1:StoredProcedureName}",
219
- "GO"
220
- ],
221
- "description": "Drop a stored procedure"
222
- },
223
-
224
"Create a view": {
225
"prefix": "sqlCreateView",
226
"body": [
0 commit comments