Skip to content

Latest commit

 

History

History
94 lines (73 loc) · 4.3 KB

File metadata and controls

94 lines (73 loc) · 4.3 KB

title: "DROP FUNCTION (Transact-SQL) | Microsoft Docs" ms.custom: "" ms.date: "06/28/2017" ms.prod: "sql" ms.prod_service: "sql-data-warehouse, database-engine, pdw, sql-database" ms.service: "" ms.component: "t-sql|statements" ms.reviewer: "" ms.suite: "sql" ms.technology:

  • "database-engine" ms.tgt_pltfrm: "" ms.topic: "language-reference" f1_keywords:
  • "DROP_FUNCTION_TSQL"
  • "DROP FUNCTION" dev_langs:
  • "TSQL" helpviewer_keywords:
  • "user-defined functions [SQL Server], removing"
  • "removing user-defined functions"
  • "DROP FUNCTION statement"
  • "dropping user-defined functions"
  • "deleting user-defined functions" ms.assetid: ee5ad283-9e44-4109-902f-0ce12669ee11 caps.latest.revision: 49 author: "edmacauley" ms.author: "edmaca" manager: "craigg" monikerRange: ">= aps-pdw-2016 || = azuresqldb-current || = azure-sqldw-latest || >= sql-server-2016 || = sqlallproducts-allversions"

DROP FUNCTION (Transact-SQL)

[!INCLUDEtsql-appliesto-ss2008-asdb-asdw-pdw-md]

Removes one or more user-defined functions from the current database. User-defined functions are created by using CREATE FUNCTION and modified by using ALTER FUNCTION.

The DROP function supports natively compiled, scalar user-defined functions. For more information, see Scalar User-Defined Functions for In-Memory OLTP.

Topic link icon Transact-SQL Syntax Conventions

Syntax

 -- SQL Server, Azure SQL Database 

DROP FUNCTION [ IF EXISTS ] { [ schema_name. ] function_name } [ ,...n ]   
[;]
 -- Azure SQL Data Warehouse, Parallel Data Warehouse 

DROP FUNCTION [ schema_name. ] function_name
[;] 

Arguments

IF EXISTS
Conditionally drops the function only if it already exists. Available beginning with [!INCLUDEssnoversion_md] 2016 and in [!INCLUDEsssds_md].

schema_name
Is the name of the schema to which the user-defined function belongs.

function_name
Is the name of the user-defined function or functions to be removed. Specifying the schema name is optional. The server name and database name cannot be specified.

Remarks

DROP FUNCTION will fail if there are [!INCLUDEtsql] functions or views in the database that reference this function and were created by using SCHEMABINDING, or if there are computed columns, CHECK constraints, or DEFAULT constraints that reference the function.

DROP FUNCTION will fail if there are computed columns that reference this function and have been indexed.

Permissions

To execute DROP FUNCTION, at a minimum, a user must have ALTER permission on the schema to which the function belongs, or CONTROL permission on the function.

Examples

A. Dropping a function

The following example drops the fn_SalesByStore user-defined function from the Sales schema in the [!INCLUDEssSampleDBnormal] sample database. To create this function, see Example B in CREATE FUNCTION (Transact-SQL).

DROP FUNCTION Sales.fn_SalesByStore;  

See Also

ALTER FUNCTION (Transact-SQL)
CREATE FUNCTION (Transact-SQL)
OBJECT_ID (Transact-SQL)
EVENTDATA (Transact-SQL)
sys.sql_modules (Transact-SQL)
sys.parameters (Transact-SQL)