ListObjectPermissions Method
后续版本的 Microsoft SQL Server 将删除该功能。 请避免在新的开发工作中使用该功能,并着手修改当前还在使用该功能的应用程序。
The ListObjectPermissions method returns a SQLObjectList object that enumerates object access privilege for one or more Microsoft SQL Server security accounts.
语法
object.ListObjectPermissions( [ Privilege ] )as SQLObjectList
Parts
object
Expression that evaluates to an object in the Applies To list.Privilege
Optional. Constrains the list to members that enumerates object access permissions as described in Settings.
Prototype (C/C++)
HRESULT ListObjectPermissions(
LPSQLDMOPERMISSIONLIST* ppList,
SQLDMO_PRIVILEGE_TYPE lPrivilegeTypes = SQLDMOPriv_AllObjectPrivs);
Settings
When setting the Privilege argument to override default behavior, indicate more than a single permission by combining values using an OR logical operator. Set Privilege by using these SQLDMO_PRIVILEGE_TYPE values.
Constant |
Value |
Description |
---|---|---|
SQLDMOPriv_/AllObjectPrivs |
63 |
Default. All applicable object privilege. |
SQLDMOPriv_Delete |
8 |
List object enumerates accounts and those tables or views against which permission is granted to execute a DELETE statement. |
SQLDMOPriv_Execute |
16 |
List object enumerates accounts and those stored procedures for which permission is granted to execute an EXECUTE statement. |
SQLDMOPriv_Insert |
2 |
List object enumerates accounts and those tables or views against which permission is granted to execute an INSERT statement. |
SQLDMOPriv_References |
32 |
List object enumerates accounts, and those tables that the account can reference, in declarative referential integrity constraints. |
SQLDMOPriv_Select |
1 |
List object enumerates accounts and those tables or views against which permission is granted to execute a SELECT statement. |
SQLDMOPriv_Update |
4 |
List object enumerates accounts and those tables or views against which permission is granted to execute an UPDATE statement. |
Returns
A SQLObjectList object that contains 0 or more Permission objects
注释
The ListObjectPermissions 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 ListObjectPermissions method.