Wednesday, January 27, 2021

SQL Server check modified date of stored procedure

SELECT name, create_date, modify_date

FROM sys.objects

WHERE type = 'P'

AND name = 'sp_update_cost_cabmag_compute_loh_by_factory'

No comments:

Post a Comment