The Deny method negates a granted stored procedure permission or a list of granted permissions for one or more Microsoft® SQL Server™ users or roles.
object.Deny( Privilege , GranteeNames , [ GrantGrant ] )
Part | Description |
---|---|
object | Expression that evaluates to an object in the Applies To list. |
Privilege | Long integer specifying one or more stored procedure privileges as described in Settings. |
GranteeNames | SQL-DMO multistring listing users or roles. |
GrantGrant | When True, the grantee(s) specified are granted the ability to execute the DENY statement referencing the stored procedure. When False (default), the ability to deny permission is not granted. |
Constant | Value | Description |
---|---|---|
SQLDMOPriv_AllObjectPrivs | 63 | Deny all granted permissions on the referenced stored procedure |
SQLDMOPriv_Execute | 16 | Deny EXECUTE permission on the referenced stored procedure |
Denying permission to database users and roles by using the Deny method of the StoredProcedure object requires appropriate privilege. The SQL Server login used for SQLServer object connection must be granted the ability to execute DENY referencing the stored procedure, the owner of the stored procedure, or a member of a role with greater privilege.
HRESULT Deny(
SQLDMO_PRIVILEGE_TYPE iPrivileges,
SQLDMO_LPCSTR GranteeNames,
BOOL GrantGrant =FALSE);