From 0f008435ba47d7b2a14d43021c7bf6f09362df65 Mon Sep 17 00:00:00 2001 From: Matt Portune Date: Wed, 24 Jun 2020 13:59:00 -0400 Subject: [PATCH] sproc tweak --- .../dbo/Stored Procedures/SsoConfig_ReadByIdentifier.sql | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Sql/dbo/Stored Procedures/SsoConfig_ReadByIdentifier.sql b/src/Sql/dbo/Stored Procedures/SsoConfig_ReadByIdentifier.sql index 61a6db05fc..470c28e0de 100644 --- a/src/Sql/dbo/Stored Procedures/SsoConfig_ReadByIdentifier.sql +++ b/src/Sql/dbo/Stored Procedures/SsoConfig_ReadByIdentifier.sql @@ -5,12 +5,10 @@ BEGIN SET NOCOUNT ON SELECT TOP 1 - SSO.*, - O.[Identifier] + SSO.* FROM [dbo].[SsoConfigView] SSO INNER JOIN [dbo].[Organization] O ON O.[Id] = SSO.[OrganizationId] - WHERE - O.[Identifier] = @Identifier + AND O.[Identifier] = @Identifier END