change GetItemIdByOrganizationId to reflect change of column length in underlying table

This commit is contained in:
VoosW 2012-11-06 18:39:48 +01:00
parent cac9401322
commit d367078cc6

View file

@ -6439,3 +6439,19 @@ GO
ALTER PROCEDURE [dbo].[GetItemIdByOrganizationId]
@OrganizationId nvarchar(128)
AS
BEGIN
SET NOCOUNT ON;
SELECT
ItemID
FROM
dbo.ExchangeOrganizations
WHERE
OrganizationId = @OrganizationId
END
GO