Remove-SCSQLDeployment
Hiermee verwijdert u een SQL Server implementatie uit een SQL Server-profiel.
Syntax
Remove-SCSQLDeployment
[-SQLDeployment] <SQLDeployment>
[-RunAsynchronously]
[-PROTipID <Guid>]
[-JobVariable <String>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Description
De cmdlet Remove-SCSQLDeployment verwijdert een Microsoft SQL Server-implementatie uit een SQL Server-profiel.
Voorbeelden
Voorbeeld 1: Een SQL Server-implementatie verwijderen uit een SQL-profiel
PS C:\> $SQLProfile = Get-SCSQLProfile -Name "SQLProfile01"
PS C:\> $SQLDeployment = Get-SCSQLDeployment -SQLProfile $SQLProfile -Name "SQL Deployment 01"
PS C:\> Remove-SCSQLDeployment -SQLDeployment $SQLDeployment
Met de eerste opdracht wordt het SQL Server profielobject met de naam SQLProfile01 opgehaald en wordt het object opgeslagen in de $SQLProfile variabele.
Met de tweede opdracht wordt het SQL Server implementatieobject met de naam SQL Deployment 01 opgehaald uit het SQL-profiel dat is opgeslagen in $SQLProfile en slaat het object vervolgens op in de $SQLDeployment variabele.
Met de laatste opdracht verwijdert u de SQL Server implementatie die is opgeslagen in $SQLDeployment uit het SQL Server profiel dat is opgeslagen in $SQLProfile.
Parameters
-Confirm
Hiermee wordt u gevraagd om bevestiging voordat u de cmdlet uitvoert.
Type: | SwitchParameter |
Aliases: | cf |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-JobVariable
Hiermee geeft u een variabele op waarin de voortgang van de taak wordt bijgehouden en opgeslagen.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-PROTipID
Hiermee geeft u de id op van de tip Prestatie- en resourceoptimalisatie (PRO-tip) die deze actie heeft geactiveerd. Met deze parameter kunt u PRO-tips controleren.
Type: | Guid |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-RunAsynchronously
Geeft aan dat de taak asynchroon wordt uitgevoerd, zodat het besturingselement onmiddellijk terugkeert naar de opdrachtshell.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-SQLDeployment
Hiermee geeft u de SQL Server implementatie die door deze cmdlet wordt verwijderd.
Type: | SQLDeployment |
Position: | 0 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-WhatIf
Hiermee wordt weergegeven wat er zou gebeuren als u de cmdlet uitvoert. De cmdlet wordt niet uitgevoerd.
Type: | SwitchParameter |
Aliases: | wi |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Uitvoerwaarden
SQLDeployment
Met deze cmdlet wordt een SQLDeployment-object geretourneerd.