IgnoreDrift 속성
참고: 이 API는 더 이상 사용되지 않습니다.
드리프트 무시 업그레이드 옵션을 가져오고 설정합니다.
네임스페이스: Microsoft.SqlServer.Management.Dac
어셈블리: Microsoft.SqlServer.Management.Dac(Microsoft.SqlServer.Management.Dac.dll)
구문
‘선언
<ObsoleteAttribute("Please use BlockOnChanges")> _
Public Property IgnoreDrift As Boolean
Get
Set
‘사용 방법
Dim instance As DacUpgradeOptions
Dim value As Boolean
value = instance.IgnoreDrift
instance.IgnoreDrift = value
[ObsoleteAttribute("Please use BlockOnChanges")]
public bool IgnoreDrift { get; set; }
[ObsoleteAttribute(L"Please use BlockOnChanges")]
public:
property bool IgnoreDrift {
bool get ();
void set (bool value);
}
[<ObsoleteAttribute("Please use BlockOnChanges")>]
member IgnoreDrift : bool with get, set
function get IgnoreDrift () : boolean
function set IgnoreDrift (value : boolean)
속성 값
유형: System. . :: . .Boolean
드리프트가 검색될 경우 업그레이드에서 취할 동작을 지정하는 Boolean 값입니다. true이면 업그레이드된 데이터베이스에 일부 데이터를 누락시킬 수 있는 데이터베이스 변경이 발견되더라도 업그레이드를 계속합니다. 사전에 변경을 분석했으며 데이터를 수동으로 마이그레이션하기 위한 계획이 있을 경우에만 true로 지정하십시오. false이면 드리프트가 검색될 경우 업그레이드가 중지됩니다.
주의
Drift is marked by changes made to a database after a DAC is deployed, such that the database schema is now different than the original schema defined in the DAC type. If tables have been added or changed, such as by using CREATE TABLE or ALTER TABLE statements, the tables or their data may not be moved to the upgraded database. They will be present in the original database that is preserved by the upgrade, so you can move the data manually. For more information, see 데이터 계층 응용 프로그램 업그레이드.