Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
memorykills
Starting Member
18 Posts |
Posted - 2011-09-16 : 10:33:29
|
Hi. is there some system table/view that shows when a table gets created and by which user?thanks! |
|
russell
Pyro-ma-ni-yak
5072 Posts |
Posted - 2011-09-16 : 10:39:14
|
SELECT create_date FROM sys.tables WHERE name = 'Table Name Here';Won't tell you who though. The default trace will show that. |
|
|
memorykills
Starting Member
18 Posts |
Posted - 2011-09-16 : 10:45:52
|
thank you russell. |
|
|
|
|
|