Remove-SCSQLDeployment
Entfernt eine SQL Server Bereitstellung aus einem SQL Server Profil.
Syntax
Remove-SCSQLDeployment
[-SQLDeployment] <SQLDeployment>
[-RunAsynchronously]
[-PROTipID <Guid>]
[-JobVariable <String>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Beschreibung
Das Cmdlet Remove-SCSQLDeployment entfernt eine Microsoft SQL Server-Bereitstellung aus einem SQL Server Profil.
Beispiele
Beispiel 1: Entfernen einer SQL Server Bereitstellung aus einem SQL-Profil
PS C:\> $SQLProfile = Get-SCSQLProfile -Name "SQLProfile01"
PS C:\> $SQLDeployment = Get-SCSQLDeployment -SQLProfile $SQLProfile -Name "SQL Deployment 01"
PS C:\> Remove-SCSQLDeployment -SQLDeployment $SQLDeployment
Der erste Befehl ruft das SQL Server Profilobjekt namens SQLProfile01 ab und speichert das Objekt in der $SQLProfile Variablen.
Der zweite Befehl ruft das SQL Server Bereitstellungsobjekt namens SQL Deployment 01 aus dem in $SQLProfile gespeicherten SQL-Profil ab und speichert das Objekt dann in der $SQLDeployment Variablen.
Der letzte Befehl entfernt die in $SQLDeployment gespeicherte SQL Server Bereitstellung aus dem in $SQLProfile gespeicherten SQL Server Profil.
Parameter
-Confirm
Hiermit werden Sie vor der Ausführung des Cmdlets zur Bestätigung aufgefordert.
Type: | SwitchParameter |
Aliases: | cf |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-JobVariable
Gibt eine Variable an, in der der Auftragsfortschritt nachverfolgt und gespeichert wird.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-PROTipID
Gibt die ID des Tipps zur Leistungs- und Ressourcenoptimierung (PRO-Tipp) an, der diese Aktion ausgelöst hat. Mit diesem Parameter können Sie PRO-Tipps überwachen.
Type: | Guid |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-RunAsynchronously
Gibt an, dass der Auftrag asynchron ausgeführt wird, damit das Steuerelement sofort zur Befehlsshell zurückkehrt.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-SQLDeployment
Gibt die SQL Server Bereitstellung an, die dieses Cmdlet entfernt.
Type: | SQLDeployment |
Position: | 0 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-WhatIf
Zeigt, was geschieht, wenn das Cmdlet ausgeführt wird. Das Cmdlet wird nicht ausgeführt.
Type: | SwitchParameter |
Aliases: | wi |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Ausgaben
SQLDeployment
Dieses Cmdlet gibt ein SQLDeployment-Objekt zurück.