update sql
This commit is contained in:
parent
8a5baa8f6d
commit
1f404a25ff
1 changed files with 5 additions and 4 deletions
|
@ -3208,25 +3208,26 @@ GO
|
||||||
|
|
||||||
-- Security Groups Quota update
|
-- Security Groups Quota update
|
||||||
|
|
||||||
|
IF EXISTS (SELECT * FROM [dbo].[Quotas] WHERE [QuotaName] = 'HostedSolution.SecurityGroupManagement' AND [QuotaID] = 423)
|
||||||
|
BEGIN
|
||||||
|
|
||||||
UPDATE [dbo].[Quotas]
|
UPDATE [dbo].[Quotas]
|
||||||
SET [QuotaDescription] = N'Security Groups',
|
SET [QuotaDescription] = N'Security Groups',
|
||||||
[QuotaName] = N'HostedSolution.SecurityGroups',
|
[QuotaName] = N'HostedSolution.SecurityGroups',
|
||||||
[QuotaTypeID] = 2
|
[QuotaTypeID] = 2
|
||||||
WHERE [QuotaID] = 423
|
WHERE [QuotaID] = 423
|
||||||
GO
|
|
||||||
|
|
||||||
UPDATE [dbo].[HostingPlanQuotas]
|
UPDATE [dbo].[HostingPlanQuotas]
|
||||||
SET [QuotaValue] = -1
|
SET [QuotaValue] = -1
|
||||||
WHERE [QuotaID] = 423
|
WHERE [QuotaID] = 423
|
||||||
GO
|
|
||||||
|
|
||||||
UPDATE [dbo].[PackageQuotas]
|
UPDATE [dbo].[PackageQuotas]
|
||||||
SET [QuotaValue] = -1
|
SET [QuotaValue] = -1
|
||||||
WHERE [QuotaID] = 423
|
WHERE [QuotaID] = 423
|
||||||
|
|
||||||
|
END
|
||||||
GO
|
GO
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
IF EXISTS (SELECT * FROM SYS.OBJECTS WHERE type = 'P' AND name = 'GetOrganizationStatistics')
|
IF EXISTS (SELECT * FROM SYS.OBJECTS WHERE type = 'P' AND name = 'GetOrganizationStatistics')
|
||||||
DROP PROCEDURE [dbo].[GetOrganizationStatistics]
|
DROP PROCEDURE [dbo].[GetOrganizationStatistics]
|
||||||
GO
|
GO
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue