次の方法で共有


ActiveConnections プロパティ

データベースへのアクティブな接続の数を取得します。

名前空間:  Microsoft.SqlServer.Management.Smo
アセンブリ:  Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)

構文

'宣言
<SfcPropertyAttribute(SfcPropertyFlags.None Or SfcPropertyFlags.Expensive Or SfcPropertyFlags.Standalone)> _
Public ReadOnly Property ActiveConnections As Integer
    Get
'使用
Dim instance As Database
Dim value As Integer

value = instance.ActiveConnections
[SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Expensive|SfcPropertyFlags.Standalone)]
public int ActiveConnections { get; }
[SfcPropertyAttribute(SfcPropertyFlags::None|SfcPropertyFlags::Expensive|SfcPropertyFlags::Standalone)]
public:
property int ActiveConnections {
    int get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Expensive|SfcPropertyFlags.Standalone)>]
member ActiveConnections : int
function get ActiveConnections () : int

プロパティ値

型: System. . :: . .Int32
データベースへのアクティブな接続の数を示す Int32 値。

説明

ActiveConnections プロパティは、参照先データベースに対するアクティブな接続の数を返します。SQL Server のインスタンスにおける合計データベース接続数を取得するには、GetActiveDBConnectionCount メソッドを使用します。

使用例

VB

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server()

'Reference the AdventureWorks2008R2 database.
Dim db As Database
db = srv.Databases("AdventureWorks2008R2")

'Display the number of active connections to the database.
Console.WriteLine(db.ActiveConnections)

PowerShell

$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("AdventureWorks2008R2")
Write-Host $db.ActiveConnections