-
Notifications
You must be signed in to change notification settings - Fork 674
/
Count Rows.snippet
28 lines (28 loc) · 1.01 KB
/
Count Rows.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
<?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>Count rows</Title>
<Shortcut></Shortcut>
<Description>Code snippet for counting the number of rows in a table.</Description>
<Author>Matan Yungman</Author>
<SnippetTypes>
<SnippetType>SurroundsWith</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Declarations></Declarations>
<Code Language="SQL"><![CDATA[
SELECT sum(rows) FROM SYS.PARTITIONS WHERE object_id=object_id('$selected$') and index_id in(0,1) $end$
]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>