1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-24 17:17:40 +01:00

param sniffing on user search proc

This commit is contained in:
Kyle Spearrin 2018-03-24 19:56:48 -04:00
parent 56a0688bd5
commit a9c8fbf6cb
2 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,7 @@
@Email NVARCHAR(50), @Email NVARCHAR(50),
@Skip INT = 0, @Skip INT = 0,
@Take INT = 25 @Take INT = 25
WITH RECOMPILE
AS AS
BEGIN BEGIN
SET NOCOUNT ON SET NOCOUNT ON

View File

@ -8,6 +8,7 @@ CREATE PROCEDURE [dbo].[User_Search]
@Email NVARCHAR(50), @Email NVARCHAR(50),
@Skip INT = 0, @Skip INT = 0,
@Take INT = 25 @Take INT = 25
WITH RECOMPILE
AS AS
BEGIN BEGIN
SET NOCOUNT ON SET NOCOUNT ON