Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Drops an existing contract from a database.
Transact-SQL Syntax Conventions
Syntax
DROP CONTRACT contract_name
[ ; ]
Arguments
- contract_name
The name of the contract to drop. Server, database, and schema names cannot be specified.
Remarks
You cannot drop a contract if any services or conversation priorities refer to the contract.
When you drop a contract, Service Broker ends any existing conversations that use the contract with an error.
Permissions
Permission for dropping a contract defaults to the owner of the contract, members of the db_ddladmin or db_owner fixed database roles, and members of the sysadmin fixed server role.
Examples
The following example removes the contract //Adventure-Works.com/Expenses/ExpenseSubmission from the database.
DROP CONTRACT
[//Adventure-Works.com/Expenses/ExpenseSubmission] ;
See Also
Reference
ALTER BROKER PRIORITY (Transact-SQL)
CREATE CONTRACT (Transact-SQL)