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.