BatchUpgradeOptions.ActionOnExist Property

Definition

Gets or sets a ActionOnExistType value that specifies how to handle upgraded packages that have the same name as existing Integration Services packages.

public:
 property Microsoft::SqlServer::Dts::Runtime::ActionOnExistType ActionOnExist { Microsoft::SqlServer::Dts::Runtime::ActionOnExistType get(); void set(Microsoft::SqlServer::Dts::Runtime::ActionOnExistType value); };
public Microsoft.SqlServer.Dts.Runtime.ActionOnExistType ActionOnExist { get; set; }
member this.ActionOnExist : Microsoft.SqlServer.Dts.Runtime.ActionOnExistType with get, set
Public Property ActionOnExist As ActionOnExistType

Property Value

A ActionOnExistType value that specifies how to handle upgraded packages that have the same name as existing packages.

Remarks

The following table lists the valid values.

Value Description
Rename Adds a number to the name of the upgrade package. This is the default value.
Overwrite Replaces the existing package with the upgraded package.
Error Generates an error, and the package is not upgraded.

Applies to