|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Monday, April 27, 2009 2:47 AM
Points: 17,
Visits: 21
|
|
Hi,
Do I have any impact on changing recovery model in SQL Server 2005 when the database is online? More over is there any impact in changing the Initial size of the log files (Currently the Recovery model is FULL).
Thank You
|
|
|
|
|
Hall of Fame
       
Group: General Forum Members
Last Login: Thursday, May 16, 2013 4:02 AM
Points: 3,131,
Visits: 1,056
|
|
If you switch from the full recovery model to the simple recovery model you break the backup log chain. Therefore, strongly recommend that you back up the log immediately before switching, which allows you to recover the database up to that point. After switching, you need to take periodic data backups to protect your data and to truncate the inactive portion of the transaction log.
You can increase the size of log file
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Monday, April 27, 2009 2:47 AM
Points: 17,
Visits: 21
|
|
Hi,
Thanks for the reply, do I have any impact on changing the database recovery model while the database is in live. And more over I have the Initial size of log files is 50 GB I need to reduce it to 50 MB is that will create any problems.
Thank You
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Today @ 3:30 AM
Points: 37,725,
Visits: 29,982
|
|
No impact other than that you will no longer be able to take log backup and hence will not be able to restore to a point-in-time after switching to simple. Also if you are running database mirroring you will not be able to switch from full recovery
You can shrink the log to 50MB, but if the DB is active there's every chance it will grow again. 50MB is very small for a transaction log for an active database.
Gail Shaw Microsoft Certified Master: SQL Server 2008, MVP SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
We walk in the dark places no others will enter We stand on the bridge and no one may pass
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Friday, October 26, 2012 11:51 AM
Points: 8,
Visits: 22
|
|
What would happen if I switched from Full to Simple to Full in a stored procedure? When I back up the transaction log after I set it back to Full, would it be able to know that there was a full database backup (.bak)? I am running SQL Server 2008.
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Today @ 3:30 AM
Points: 37,725,
Visits: 29,982
|
|
Please post new questions in a new thread. Thank you.
Gail Shaw Microsoft Certified Master: SQL Server 2008, MVP SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
We walk in the dark places no others will enter We stand on the bridge and no one may pass
|
|
|
|