Showing posts with label Function name. Show all posts
Showing posts with label Function name. Show all posts

Wednesday, March 26, 2014

List all the function name for a database

connect to any database.
Use [Database name]


SELECT name AS function_name,type_desc
FROM sys.objects
WHERE type_desc LIKE '%FUNCTION%'