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
TSQL_Newbie
source
to share
1 answer
You can try this:
SELECT Name, modify_date, * FROM sys.all_objects
WHERE Name = 'Table name'
+6
kluverua
source
to share