change GetItemIdByOrganizationId to reflect change of column length in underlying table
This commit is contained in:
parent
cac9401322
commit
d367078cc6
1 changed files with 16 additions and 0 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue