Query to find the list of Functions in SQL Server
SELECT name FROM sys.objects WHERE type IN ('AF ','FN', 'IF', 'TF', 'FS', 'FT')
Query to find the list of Functions in SQL Server
SELECT name FROM sys.objects WHERE type IN ('AF ','FN', 'IF', 'TF', 'FS', 'FT')