Is there a SQL Server 2005 script that would give all the
table_names in a database, the
last time they were updated and
by whom?
I've gotten as far as:
select name, modify_date
from sys.tables
order by name
but I can't figure out the "user" part.
Software/Hardware used:
ASKED:
October 5, 2008 6:15 PM
UPDATED:
October 6, 2008 12:33 AM
Check out my SQL Server blog “SQL Server with Mr Denny” for more SQL Server information.