fixed update sql script
This commit is contained in:
parent
34af4912e8
commit
9dbbd48313
1 changed files with 7 additions and 1 deletions
|
@ -2102,7 +2102,7 @@ AS
|
||||||
|
|
||||||
RETURN @Result
|
RETURN @Result
|
||||||
END
|
END
|
||||||
|
GO
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -2173,6 +2173,12 @@ exec sp_executesql @sql, N'@ItemID int, @IncludeMailboxes int, @IncludeContacts
|
||||||
RETURN
|
RETURN
|
||||||
GO
|
GO
|
||||||
|
|
||||||
|
|
||||||
|
IF EXISTS (SELECT * FROM sys.objects WHERE type_desc = N'SQL_STORED_PROCEDURE' AND name = N'SearchExchangeAccountsByTypes')
|
||||||
|
DROP PROCEDURE [dbo].[SearchExchangeAccountsByTypes]
|
||||||
|
GO
|
||||||
|
|
||||||
|
|
||||||
CREATE PROCEDURE [dbo].[SearchExchangeAccountsByTypes]
|
CREATE PROCEDURE [dbo].[SearchExchangeAccountsByTypes]
|
||||||
(
|
(
|
||||||
@ActorID int,
|
@ActorID int,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue