ListUserPermissions Method
この機能は、将来のバージョンの Microsoft SQL Server では削除される予定です。新規の開発作業ではこの機能を使用しないようにし、現在この機能を使用しているアプリケーションは修正することを検討してください。
The ListUserPermissions method returns a SQLObjectList object that enumerates object access privilege for a specified Microsoft SQL Server database role or user.
構文
object
.ListUserPermissions(
UserName
)
as
SQLObjectList
Parts
- object
Expression that evaluates to an object in the Applies To list.
- UserName
String that specifies an existing SQL Server user-defined database role or user by name.
Prototype (C/C++)
HRESULT ListUserPermissions(
SQLDMO_LPCSTR UserName,
LPSQLDMOPERMISSIONLIST* ppList);
Returns
A SQLObjectList object that contains 0 or more Permission objects.
解説
The ListUserPermissions method enumerates object access permissions granted explicitly.
SQL Server server and database roles assign privilege by granting statement execution permissions implicitly. Implicit grants are not enumerated by the ListUserPermissions method.
Applies To:
|