Skip to content

Instantly share code, notes, and snippets.

@celsojr
Last active May 8, 2020 12:13
Show Gist options
  • Save celsojr/7971b5440c401ad6bda6fe95d3110e47 to your computer and use it in GitHub Desktop.
Save celsojr/7971b5440c401ad6bda6fe95d3110e47 to your computer and use it in GitHub Desktop.
Begin secure transaction with MSSMS
<?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>BEGIN TRANSACTION</Title>
<Shortcut></Shortcut>
<Description>Begin secure transaction</Description>
<Author>Celso Jr</Author>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<Code Language="SQL"><![CDATA[BEGIN TRAN --COMMIT ROLLBACK]]></Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment