Set SQL 2008 and SQL 2012 Users on suspendable

This commit is contained in:
robvde 2014-07-17 07:51:43 +08:00
parent 9e7b162359
commit 7de55cfd78
2 changed files with 18 additions and 0 deletions

View file

@ -4453,3 +4453,13 @@ DELETE FROM [dbo].[Quotas] WHERE QuotaID = 427
END
GO
-- Set SQL 2008 and SQL 2012 Users on suspendable
BEGIN
UPDATE [dbo].[ServiceItemTypes] SET [Suspendable] = 1 WHERE [ItemTypeID] = 32 AND [GroupID] = 22
END
GO
BEGIN
UPDATE [dbo].[ServiceItemTypes] SET [Suspendable] = 1 WHERE [ItemTypeID] = 38 AND [GroupID] = 23
END
GO