initial population of repo

This commit is contained in:
Thierry Schork
2022-12-30 10:37:11 +01:00
parent 969dc57be1
commit 5d7658d85f
72 changed files with 488 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{
"id": "57ed331c-5e96-43bf-a88d-53b47658a9cc",
"prefix": "idxCheck",
"description": "IF block with check if an index exists",
"body": "IF INDEXPROPERTY(OBJECT_ID('$table$'), '$idxName$' , 'IndexID' ) IS NOT NULL BEGIN;\r\n\t$CURSOR$\r\nEND;\r\n",
"placeholders": [
{
"name": "table",
"defaultValue": null
},
{
"name": "idxName",
"defaultValue": null
}
]
}