SQL Server Find out when the table was renamed?

Can you tell when a table was renamed? (as the main question) And if possible, which user did it?

+3


source to share


1 answer


You can try this:



SELECT Name, modify_date, * FROM sys.all_objects
WHERE Name = 'Table name'

      

+6


source







All Articles