No comments SQL Server – Get Last Modified Function By Enrique 27/05/2016 03/05/2020 SQL SERVER, Database Administration To get the last modified function date, execute the script below. SELECT name, type_desc create_date, modify_dateFROM sys.objects WHERE RIGHT(type_desc, 8) = 'FUNCTION'ORDER BY modify_date DESC Knowledge worth sharing...LinkedinFacebookGoogleTwitter