Skip to content

Commit 02e27fc

Browse files
Update usp_sqlwatch_logger_xes_blockers.sql (#485)
Fix for usp_sqlwatch_logger_xes_blockers stored procedure if SQL Server uses binary collation. Co-authored-by: Marcin Gminski <[email protected]>
1 parent bfb571a commit 02e27fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SqlWatch.Monitor/Project.SqlWatch.Database/dbo/Procedures/usp_sqlwatch_logger_xes_blockers.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set nocount on;
55
set xact_abort on;
66

77
declare @execution_count bigint = 0,
8-
@session_name nvarchar(64) = 'SQLWATCH_Blockers',
8+
@session_name nvarchar(64) = 'SQLWATCH_blockers',
99
@snapshot_time datetime,
1010
@snapshot_type_id tinyint = 9,
1111
@filename varchar(8000),
@@ -200,4 +200,4 @@ begin catch
200200
@process_stage = 'F774F15F-C0F1-4C77-835D-C3EE6451F831',
201201
@process_message = null,
202202
@process_message_type = 'ERROR';
203-
end catch;
203+
end catch;

0 commit comments

Comments
 (0)