OriginalDatabaseName 속성
Gets a String value that specifies the new name for the original database that was preserved by the upgrade.
네임스페이스: Microsoft.SqlServer.Management.Dac
어셈블리: Microsoft.SqlServer.Management.Dac(Microsoft.SqlServer.Management.Dac.dll)
구문
‘선언
Public ReadOnly Property OriginalDatabaseName As String
Get
‘사용 방법
Dim instance As DacUpgradeResult
Dim value As String
value = instance.OriginalDatabaseName
public string OriginalDatabaseName { get; }
public:
property String^ OriginalDatabaseName {
String^ get ();
}
member OriginalDatabaseName : string
function get OriginalDatabaseName () : String
속성 값
유형: System. . :: . .String
A String value that specifies the new name for the original database that was preserved by the upgrade.
주의
When a DAC instance is upgraded, the upgrade creates a new copy of the database associated with the DAC, deploys the new DAC type, and migrates data from the original database to the new database. The upgrade then gives the original database a new name, and renames the new database to have the original name. Any tables and data that upgrade could not migrate to the new database are retained in the renamed original database, and you can migrate them manually. For more information, see 데이터 계층 응용 프로그램 업그레이드.