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