Stored Procedures and Tables Last Modify Date

MSSQL sys.objects tablosundan üzerinde değişiklik yapılma tarihlerine göre tabloları ve stored proceduresleri listeleme sorgusu. U ile ifade edilenler tablo, P ile ifade edilenler ise SP.

1
2
3
4
SELECT name, create_date, modify_date, type
FROM sys.objects
WHERE type = 'U' OR type = 'P'
ORDER BY modify_date DESC
Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×