EnumWindowsGroups メソッド (String)
指定したグループに関して、Windows グループの一覧を列挙します。
名前空間: Microsoft.SqlServer.Management.Smo
アセンブリ: Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)
構文
'宣言
Public Function EnumWindowsGroups ( _
groupName As String _
) As DataTable
'使用
Dim instance As Database
Dim groupName As String
Dim returnValue As DataTable
returnValue = instance.EnumWindowsGroups(groupName)
public DataTable EnumWindowsGroups(
string groupName
)
public:
DataTable^ EnumWindowsGroups(
String^ groupName
)
member EnumWindowsGroups :
groupName:string -> DataTable
public function EnumWindowsGroups(
groupName : String
) : DataTable
パラメーター
- groupName
型: System. . :: . .String
Windows グループ名を示す String 値です。
戻り値
型: System.Data. . :: . .DataTable
指定したグループについての Windows グループ情報を含む DataTable オブジェクトの値。次の表に、返される DataTable の列を示します。
列 |
データ型 |
内容 |
---|---|---|
Urn |
Windows グループを表す URN 文字列です。 |
|
Name |
Windows グループの名前です。 |
|
ID |
Windows グループを一意に識別する ID 値です。 |
|
Login |
SQL Server の Windows グループを表すログインです。 |
|
IsSystemObject |
Windows グループがシステム オブジェクトであるかどうかを示すブール値です。 |
|
LoginType |
ログインの種類です。「LoginType」を参照してください。 |
|
HasDBAccess |
Windows グループが参照先データベースにアクセスできるかどうかを示すブール値です。 |
|
Sid |
Windows グループのログイン セキュリティ識別子です。 |
|
UserType |
ユーザーの種類です。「UserType」を参照してください。 |
|
Certificate |
Windows グループが SQL Server にログオンするために使用する証明書です。 |
|
AsymmetricKey |
Windows グループが SQL Server にログオンするために使用する非対称キーです。 |
|
CreateDate |
Windows グループを作成した日時です。 |
|
DateLastModified |
Windows グループを最後に変更した日時です。 |
|
DefaultSchema |
Windows グループに関連付けられた既定のスキーマです。 |
使用例
次の例では、Server オブジェクト列挙メソッドを実行しますが、DataTable オブジェクトからの情報の抽出方法は、Database 列挙メソッドの場合と同じです。
'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Call the EnumCollations method and return collation information to DataTable variable.
Dim d As DataTable
'Select the returned data into an array of DataRow.
d = srv.EnumCollations
'Iterate through the rows and display collation details for the instance of SQL Server.
Dim r As DataRow
Dim c As DataColumn
For Each r In d.Rows
Console.WriteLine("============================================")
For Each c In r.Table.Columns
Console.WriteLine(c.ColumnName + " = " + r(c).ToString)
Next
Next