DeployedDac.ComputerName 속성
Gets the name of the computer on which the DAC package was deployed.
네임스페이스: Microsoft.SqlServer.Management.Utility
어셈블리: Microsoft.SqlServer.Management.Utility(Microsoft.SqlServer.Management.Utility.dll)
구문
‘선언
<SfcPropertyAttribute(SfcPropertyFlags.Data)> _
Public ReadOnly Property ComputerName As String
Get
‘사용 방법
Dim instance As DeployedDac
Dim value As String
value = instance.ComputerName
[SfcPropertyAttribute(SfcPropertyFlags.Data)]
public string ComputerName { get; }
[SfcPropertyAttribute(SfcPropertyFlags::Data)]
public:
property String^ ComputerName {
String^ get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.Data)>]
member ComputerName : string
function get ComputerName () : String
속성 값
유형: System.String
A String value that specifies the name the computer on which the DAC package was deployed.
주의
The DAC package may be deployed on more than one instance of SQL Server running on the same computer.
예
VC#
System.Console.WriteLine(deployedDac.ComputerName);
VB
System.Console.WriteLine(deployedDac.ComputerName)
PowerShell
Write-Host $deployedDac.ComputerName