SQL Server Forums
Profile | Register | Active Topics | Members | Search | Forum FAQ
 
Register Now and get your question answered!
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 General SQL Server Forums
 New to SQL Server Administration
 Databeses with simple recovery will be excluded
 New Topic  Reply to Topic
 Printer Friendly
Author Previous Topic Topic Next Topic  

carrlos
Starting Member

8 Posts

Posted - 05/24/2012 :  04:32:42  Show Profile  Reply with Quote
Hi,
The warning: Databeses with simple recovery will be excluded! is showed when I want to define back up transaction log task
What could be the reason?

khtan
In (Som, Ni, Yak)

Singapore
16745 Posts

Posted - 05/24/2012 :  04:36:45  Show Profile  Reply with Quote
because it is not applicable for Simple Recovery model

refer to BOL on Recovery Model for further details


KH
Time is always against us

Go to Top of Page

RickD
Slow But Sure Yak Herding Master

United Kingdom
3560 Posts

Posted - 05/24/2012 :  04:39:29  Show Profile  Reply with Quote
Its a simple information message. If you have any databases in Simple recovery mode, then you will never have transaction logs for these that you can back up. Read up on recovery models in SQL.

Her is a simple explanation: http://databases.about.com/od/sqlserver/a/recoverymodels.htm

and here is the BOL version: http://msdn.microsoft.com/en-us/library/ms189275.aspx
Go to Top of Page

carrlos
Starting Member

8 Posts

Posted - 05/24/2012 :  04:51:00  Show Profile  Reply with Quote
Thanks in advance

carrlos
Go to Top of Page

carrlos
Starting Member

8 Posts

Posted - 05/24/2012 :  05:06:19  Show Profile  Reply with Quote
So, Is it possible to switch from simple to full recovery without any sql server applications truble?
Go to Top of Page

Michael Valentine Jones
Yak DBA Kernel (pronounced Colonel)

USA
6997 Posts

Posted - 05/24/2012 :  10:01:51  Show Profile  Reply with Quote
This is a very good article on transaction log management.

Managing Transaction Logs
http://www.sqlservercentral.com/articles/Administration/64582/





CODO ERGO SUM
Go to Top of Page

prett
Posting Yak Master

USA
161 Posts

Posted - 05/25/2012 :  06:46:14  Show Profile  Reply with Quote
quote:
Originally posted by carrlos

So, Is it possible to switch from simple to full recovery without any sql server applications truble?



You can easily switch from simple to full recovery model by using following query:

USE master;
ALTER DATABASE model SET RECOVERY FULL;

But you have to consider some points before & after switching to another recovery model. Check this article, it has good explanation: http://www.data-base-recovery.blogspot.in/2012/05/important-points-when-switch-from-one.html
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
SQL Server Forums © 2000-2009 SQLTeam Publishing, LLC Go To Top Of Page
This page was generated in 0.15 seconds. Powered By: Snitz Forums 2000