RDS GPO
This commit is contained in:
parent
492c0289f6
commit
dd5fc131bc
15 changed files with 556 additions and 38 deletions
|
@ -9371,6 +9371,17 @@ AS
|
|||
WHERE RDSServerId = @ServerId AND SettingsName = @SettingsName
|
||||
GO
|
||||
|
||||
IF EXISTS (SELECT * FROM SYS.OBJECTS WHERE type = 'P' AND name = 'DeleteRDSServerSettings')
|
||||
DROP PROCEDURE DeleteRDSServerSettings
|
||||
GO
|
||||
CREATE PROCEDURE DeleteRDSServerSettings
|
||||
(
|
||||
@ServerId int
|
||||
)
|
||||
AS
|
||||
DELETE FROM RDSServerSettings WHERE RDSServerId = @ServerId
|
||||
GO
|
||||
|
||||
|
||||
IF EXISTS (SELECT * FROM SYS.OBJECTS WHERE type = 'P' AND name = 'UpdateRDSServerSettings')
|
||||
DROP PROCEDURE UpdateRDSServerSettings
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue