Query to find the list of Functions in SQL Server

[sql]
SELECT name FROM sys.objects
WHERE type IN (‘AF ‘,’FN’, ‘IF’, ‘TF’, ‘FS’, ‘FT’)
[/sql]

Leave a Reply

Your email address will not be published. Required fields are marked *