This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// in desktop IE and metro IE - create a bookmark with the line below | |
javascript:document.location=("chrome2://"+document.location) |