I've had some logging problems and based on the way the application works we don't need full recovery mode, which will help us with our logging.

How do I switch the database into simple recovery mode?

link|improve this question

64% accept rate
feedback

1 Answer

up vote 6 down vote accepted

You can do it in SQL Managment Studio by right-clicking the database, choosing Properties, selecting Options in the menu on the left and changing the Recovery Model drop-down to Simple.

In T-SQL the command is:

ALTER DATABASE [MyDatabase] SET RECOVERY SIMPLE
link|improve this answer
you don't need to restart the database do you? – Spence Jun 16 '09 at 3:37
Nope. You don't really restart a database, per se. You would restart the server instance. In any case, you don't have to when changing the recovery model. – squillman Jun 16 '09 at 3:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.