Skip to content

Instantly share code, notes, and snippets.

@yzorg
yzorg / trycatchtran.sql
Last active June 19, 2020 12:58 — forked from mishrsud/trycatchtran.sql
SQL TRY-CATCH WITH TRANSACTION
CREATE PROCEDURE [dbo].[spTxnDemo]
@debug int = NULL
, @forceError int = NULL
AS
BEGIN
SET NOCOUNT ON;
SET @debug = ISNULL(@debug, 0);
SET @forceError = ISNULL(@forceError, 0);
BEGIN TRY
BEGIN TRANSACTION MY_TXN;
@yzorg
yzorg / IE 'Send to Chrome' bookmarklet
Last active December 11, 2015 03:08 — forked from anonymous/gist:4334192
'Send to Chrome' button in IE, adds chrome2:// protocol to Windows
// in desktop IE and metro IE - create a bookmark with the line below
javascript:document.location=("chrome2://"+document.location)