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 |
Aiby
Yak Posting Veteran
71 Posts |
Posted - 2010-08-25 : 17:12:52
|
Is there any way to identify the whether a Database is restored by any user ? |
|
russell
Pyro-ma-ni-yak
5072 Posts |
Posted - 2010-08-25 : 17:19:04
|
[code]SELECT restore_date, user_nameFROM msdb.dbo.restorehistoryWHERE destination_database_name = 'DATABASE NAME HERE'[/code] |
|
|
Kristen
Test
22859 Posts |
Posted - 2010-08-26 : 05:43:55
|
I expect Russell's is fine, but if you need it there is a more detailed query here:http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=54300#268882 |
|
|
|
|
|