DROP REMOTE SERVICE BINDING (Transact-SQL)

**APPLIES TO:** ![yes](media/yes.png)SQL Server (starting with 2008) ![no](media/no.png)Azure SQL Database ![no](media/no.png)Azure SQL Data Warehouse ![no](media/no.png)Parallel Data Warehouse

Drops a remote service binding.

Topic link icon Transact-SQL Syntax Conventions

Syntax

  
DROP REMOTE SERVICE BINDING binding_name  
[ ; ]  

Arguments

binding_name
Is the name of the remote service binding to drop. Server, database, and schema names cannot be specified.

Permissions

Permission for dropping a remote service binding defaults to the owner of the remote service binding, members of the db_owner fixed database role, and members of the sysadmin fixed server role.

Examples

The following example deletes the remote service binding APBinding from the database.

DROP REMOTE SERVICE BINDING APBinding ;  

See Also

CREATE REMOTE SERVICE BINDING (Transact-SQL)
ALTER REMOTE SERVICE BINDING (Transact-SQL)
EVENTDATA (Transact-SQL)