forked from ktaranov/sqlserver-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SP_HelpIndex.snippet
29 lines (28 loc) · 976 Bytes
/
SP_HelpIndex.snippet
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<_locDefinition xmlns="urn:locstudio">
<_locDefault _loc="locNone" />
<_locTag _loc="locData">Title</_locTag>
<_locTag _loc="locData">Description</_locTag>
<_locTag _loc="locData">Author</_locTag>
<_locTag _loc="locData">ToolTip</_locTag>
</_locDefinition>
<CodeSnippet Format="1.0.0">
<Header>
<Title>SP_HelpIndex</Title>
<Shortcut></Shortcut>
<Description>Code snippet for displaying the indexes of a specified table.</Description>
<Author>Matan Yungman</Author>
<SnippetTypes>
<SnippetType>SurroundsWith</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Declarations></Declarations>
<Code Language="SQL"><![CDATA[
sp_helpindex '$selected$' $end$
]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>