Skip to content

Latest commit

 

History

History
159 lines (128 loc) · 8.82 KB

deny-service-broker-permissions-transact-sql.md

File metadata and controls

159 lines (128 loc) · 8.82 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic helpviewer_keywords dev_langs
DENY Service Broker Permissions (Transact-SQL)
DENY Service Broker Permissions (Transact-SQL)
VanMSFT
vanto
06/09/2017
sql
t-sql
reference
denying permissions [Service Broker]
routes [Service Broker], permissions
Service Broker, permissions
DENY statement, Service Broker
remote service bindings [Service Broker], permissions
permissions [Service Broker]
message types [Service Broker], permissions
denying permissions [SQL Server], Service Broker
contracts [Service Broker], permissions
services [Service Broker], permissions
TSQL

DENY Service Broker Permissions (Transact-SQL)

[!INCLUDE SQL Server]

Denies permissions on a [!INCLUDEssSB] contract, message type, remote service binding, route, or service.

:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions

Syntax

DENY permission  [ ,...n ] ON  
    {    
       [ CONTRACT :: contract_name ]   
       | [ MESSAGE TYPE :: message_type_name ]    
       | [ REMOTE SERVICE BINDING :: remote_binding_name ]    
       | [ ROUTE :: route_name ]   
       | [ SERVICE :: service_name ]      
        }  
    TO database_principal [ ,...n ]   
    [ CASCADE ]  
        [ AS denying_principal ]  

[!INCLUDEsql-server-tsql-previous-offline-documentation]

Arguments

permission
Specifies a permission that can be denied on a [!INCLUDEssSB] securable. For a list of the permissions, see the Remarks section later in this topic.

CONTRACT ::contract_name
Specifies the contract on which the permission is being denied. The scope qualifier :: is required.

MESSAGE TYPE ::message_type_name
Specifies the message type on which the permission is being denied. The scope qualifier :: is required.

REMOTE SERVICE BINDING ::remote_binding_name
Specifies the remote service binding on which the permission is being denied. The scope qualifier :: is required.

ROUTE ::route_name
Specifies the route on which the permission is being denied. The scope qualifier :: is required.

SERVICE ::message_type_name
Specifies the service on which the permission is being denied. The scope qualifier :: is required.

database_principal
Specifies the principal to which the permission is being denied. One of the following:

  • Database user
  • Database role
  • Application role
  • Database user mapped to a Windows login
  • Database user mapped to a Windows group
  • Database user mapped to a certificate
  • Database user mapped to an asymmetric key
  • Database user not mapped to a server principal

CASCADE
Indicates that the permission being denied is also denied to other principals to which it has been granted by this principal.

denying_principal
Specifies a principal from which the principal executing this query derives its right to deny the permission. One of the following:

  • Database user
  • Database role
  • Application role
  • Database user mapped to a Windows login
  • Database user mapped to a Windows group
  • Database user mapped to a certificate
  • Database user mapped to an asymmetric key
  • Database user not mapped to a server principal

Remarks

Service Broker Contracts

A [!INCLUDEssSB] contract is a database-level securable contained by the database that is its parent in the permissions hierarchy. The most specific and limited permissions that can be denied on a [!INCLUDEssSB] contract are listed in the following table, together with the more general permissions that include them by implication.

Service Broker contract permission Implied by Service Broker contract permission Implied by database permission
CONTROL CONTROL CONTROL
TAKE OWNERSHIP CONTROL CONTROL
ALTER CONTROL ALTER ANY CONTRACT
REFERENCES CONTROL REFERENCES
VIEW DEFINITION CONTROL VIEW DEFINITION

Service Broker Message Types

A [!INCLUDEssSB] message type is a database-level securable that is contained by the database that is its parent in the permissions hierarchy. The most specific and limited permissions that can be denied on a [!INCLUDEssSB] message type are listed in the following table, together with the more general permissions that include them by implication.

Service Broker message type permission Implied by Service Broker message type permission Implied by database permission
CONTROL CONTROL CONTROL
TAKE OWNERSHIP CONTROL CONTROL
ALTER CONTROL ALTER ANY MESSAGE TYPE
REFERENCES CONTROL REFERENCES
VIEW DEFINITION CONTROL VIEW DEFINITION

Service Broker Remote Service Bindings

A [!INCLUDEssSB] remote service binding is a database-level securable that is contained by the database that is its parent in the permissions hierarchy. The most specific and limited permissions that can be denied on a [!INCLUDEssSB] remote service binding are listed in the following table, together with the more general permissions that include them by implication.

Service Broker remote service binding permission Implied by Service Broker remote service binding permission Implied by database permission
CONTROL CONTROL CONTROL
TAKE OWNERSHIP CONTROL CONTROL
ALTER CONTROL ALTER ANY REMOTE SERVICE BINDING
VIEW DEFINITION CONTROL VIEW DEFINITION

Service Broker Routes

A [!INCLUDEssSB] route is a database-level securable that is contained by the database that is its parent in the permissions hierarchy. The most specific and limited permissions that can be denied on a [!INCLUDEssSB] route are listed in the following table, together with the more general permissions that include them by implication.

Service Broker route permission Implied by Service Broker route permission Implied by database permission
CONTROL CONTROL CONTROL
TAKE OWNERSHIP CONTROL CONTROL
ALTER CONTROL ALTER ANY ROUTE
VIEW DEFINITION CONTROL VIEW DEFINITION

Service Broker Services

A [!INCLUDEssSB] service is a database-level securable that is contained by the database that is its parent in the permissions hierarchy. The most specific and limited permissions that can be denied on a [!INCLUDEssSB] service are listed in the following table, together with the more general permissions that include them by implication.

Service Broker service permission Implied by Service Broker service permission Implied by database permission
CONTROL CONTROL CONTROL
TAKE OWNERSHIP CONTROL CONTROL
SEND CONTROL CONTROL
ALTER CONTROL ALTER ANY SERVICE
VIEW DEFINITION CONTROL VIEW DEFINITION

Permissions

Requires CONTROL permission on the [!INCLUDEssSB] contract, message type, remote service binding, route, or service. If the AS clause is used, the specified principal must own the securable on which permissions are being denied.

See Also

Principals (Database Engine)
REVOKE Service Broker Permissions (Transact-SQL)
DENY (Transact-SQL)
Permissions (Database Engine)