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 |
Johnf62
Starting Member
7 Posts |
Posted - 2010-09-26 : 17:25:01
|
Hello,I want to find a list of databases on our test servers which are not simple mode as we want to change them all to simple as they are not in daily use once tested. I use the code below in 2005 but do not have experience of 2000 and I'm struggling to get the code to work.select * from sys.databaseswhere recovery_model_desc <> 'SIMPLE'and name not in ('master','model','msdb','tempdb') I hope someone can help and thanks given in advance of any help.cheersjohnJohn Frederick |
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
Johnf62
Starting Member
7 Posts |
Posted - 2010-09-26 : 18:12:40
|
Thanks Tara, worked a treat.Just what I needed.John Frederick |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
|
|
|