SELECT name, create_date, modify_date
FROM sys.objects
WHERE type = 'P'
ORDER BY modify_date DESC
Il type
per una funzione è FN
anziché P
per procedura. Oppure puoi filtrare sulla colonna del nome.
SELECT name, create_date, modify_date
FROM sys.objects
WHERE type = 'P'
ORDER BY modify_date DESC
Il type
per una funzione è FN
anziché P
per procedura. Oppure puoi filtrare sulla colonna del nome.