Поделиться через


Метод Server.PingSqlServerVersion (String)

Gets the version number of the instance of SQL Server.

Пространство имен:  Microsoft.SqlServer.Management.Smo
Сборка:  Microsoft.SqlServer.Smo (в Microsoft.SqlServer.Smo.dll)

Синтаксис

'Декларация
Public Function PingSqlServerVersion ( _
    serverName As String _
) As ServerVersion
'Применение
Dim instance As Server 
Dim serverName As String 
Dim returnValue As ServerVersion 

returnValue = instance.PingSqlServerVersion(serverName)
public ServerVersion PingSqlServerVersion(
    string serverName
)
public:
ServerVersion^ PingSqlServerVersion(
    String^ serverName
)
member PingSqlServerVersion : 
        serverName:string -> ServerVersion
public function PingSqlServerVersion(
    serverName : String
) : ServerVersion

Параметры

  • serverName
    Тип: System.String
    A String value that specifies the name of the instance of SQL Server.

Возвращаемое значение

Тип: Microsoft.SqlServer.Management.Common.ServerVersion
A ServerVersion object value that specifies the version of the instance of SQL Server.

Примеры

C#

Server srv = new Server("(local)");
Console.WriteLine(srv.PingSqlServerVersion("(local)"));

PowerShell

$srv = new-object Microsoft.SqlServer.Management.Smo.Server("(local)")
Write-Host $srv.PingSqlServerVersion("(local)")

См. также

Справочник

Server Класс

Перегрузка PingSqlServerVersion

Пространство имен Microsoft.SqlServer.Management.Smo

Другие ресурсы

Вызов методов

Управление серверами