I have a script that lists all of our custom Incident templates and their resolution:
SELECT rtl.Templatename "Template Name", rtf.Resolution "Default Resolution" FROM RequestTemplate_list rtl
LEFT JOIN RequestTemplate_Fields rtf ON rtl.TEMPLATEID=rtf.TEMPLATEID
ORDER BY 1
Could this be modified to include the date the template was created?