Remove-SCSQLScriptCommand

Removes a SQL Server script from an application deployment.

Description

The Remove-SCSQLScriptCommand cmdlet removes a SQL Server script from an application deployment.

For more information about Remove-SCSQLScriptCommand, type: "Get-Help Remove-SCSQLScriptCommand -online".

Parameters

SQLScriptCommand

Required? true
Accept Pipeline Input? true (ByValue)
Position? 0
Specifies a SQL Server script command object.

JobVariable

Required? false
Accept Pipeline Input? false
Position? named
Specifies that job progress is tracked and stored in the variable named by this parameter. 

PROTipID

Required? false
Accept Pipeline Input? false
Position? named
Specifies the ID of the PRO tip that triggered this action. This allows for auditing of PRO tips.

RunAsynchronously

Required? false
Accept Pipeline Input? false
Position? named
Indicates that the job runs asynchronously so that control returns to the command shell immediately. 

Examples

1: Remove a SQL Script script from an application deployment.
PS C:\> $AppProfile = Get-SCApplicationProfile -Name "SvcWebAppProfile01"
PS C:\> $AppDeployment = Get-SCApplicationDeployment -ApplicationProfile $AppProfile -Name "SQLDataTierApp01"
PS C:\> $SQLScript = Get-SCSQLScriptCommand -ApplicationDeployment $AppDeployment | where {$_.DeploymentOrder -eq "1" -and $_.SQLScriptType -eq "PreInstall"}
PS C:\> Remove-SCSQLScriptCommand -SQLScriptCommand $SQLScript
The first command gets the application profile object named SvcWebAppProfile01 and stores the object in the $AppProfile variable.

The second command gets the application deployment object named SQLDataTierApp01 for the application profile stored in $ApplicationProfile, and then stores the object in the $AppDeployment variable.

The third command gets the first PreInstall SQL script (deployment order 1, SQL script type PreInstall) associated with the application deployment stored in $AppDeployment.

The last command removes the SQL Server script stored in $SQLScript.

See Also