SmoApplication.EnumAvailableSqlServers Method (Boolean)

Enumerates a list of local available instances of SQL Server.

Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

'Declaration
Public Shared Function EnumAvailableSqlServers ( _
    localOnly As Boolean _
) As DataTable
'Usage
Dim localOnly As Boolean 
Dim returnValue As DataTable 

returnValue = SmoApplication.EnumAvailableSqlServers(localOnly)
public static DataTable EnumAvailableSqlServers(
    bool localOnly
)
public:
static DataTable^ EnumAvailableSqlServers(
    bool localOnly
)
static member EnumAvailableSqlServers : 
        localOnly:bool -> DataTable
public static function EnumAvailableSqlServers(
    localOnly : boolean
) : DataTable

Parameters

  • localOnly
    Type: System.Boolean
    A Boolean value that specifies whether local instances are listed or all instances available on the network.If True, only local instances are listed.If False, all instances are listed.

Return Value

Type: System.Data.DataTable
A DataTable system object value that contains an enumerated list of information about the available instances of SQL Server. The table describes the different columns of the returned DataTable.

Column

Data type

Description

Name

String

The name of the instance of SQL Server.

Server

String

The name of the server on which the instance of SQL Server is installed.

Instance

String

The instance of SQL Server.

IsClustered

Boolean

A Boolean value that is True if the instance is participating in failover clustering, or False if it is not.

Version

String

The version of the instance of SQL Server.

IsLocal

Boolean

A Boolean value that is True if the instance is local, or False if the instance is remote.

Remarks

The computer running the instance SQL Server might not receive responses to the EnumAvailableSqlServers method in a timely manner. The returned list might not show all the available instances of SQL Server on the network. When you call the EnumAvailableSqlServers method in subsequent tries, more servers might become visible on the network.

This method fails to list the local instance if a firewall is operating on the server. The firewall blocks any broadcast traffic issued when the method is called, even if the sender is from local machine.

Examples

Handling SMO Events

See Also

Reference

SmoApplication Class

EnumAvailableSqlServers Overload

Microsoft.SqlServer.Management.Smo Namespace