Notitie
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen u aan te melden of de directory te wijzigen.
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen de mappen te wijzigen.
Applies to: 
 SQL Server 
 Azure SQL Managed Instance
Removes a conversation priority from the current database.
 Transact-SQL syntax conventions
Syntax
DROP BROKER PRIORITY ConversationPriorityName  
[;]  
Arguments
ConversationPriorityName
Specifies the name of the conversation priority to be removed.
Remarks
When you drop a conversation priority, any existing conversations continue to operate with the priority levels they were assigned from the conversation priority.
Permissions
Permission for creating a conversation priority defaults to members of the db_ddladmin or db_owner fixed database roles, and to the sysadmin fixed server role. Requires ALTER permission on the database.
Examples
The following example drops the conversation priority named InitiatorAToTargetPriority.
DROP BROKER PRIORITY InitiatorAToTargetPriority;
See Also
ALTER BROKER PRIORITY (Transact-SQL)
CREATE BROKER PRIORITY (Transact-SQL)
sys.conversation_priorities (Transact-SQL)