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 |
anupamk
Starting Member
8 Posts |
Posted - 2013-03-26 : 02:46:29
|
Hi,In my Current Datawarehouse we want to change the Recovery Model from Simple to Full.What will the impact? How the performance will be affacted. What things I need to take care of?Thanks,Anupam |
|
prett
Posting Yak Master
212 Posts |
Posted - 2013-03-26 : 06:14:22
|
Simple recovery model allows restore database only up to the last full backup, while in full recovery model, you can get point in time recovery.You can change recovery model from simple to full as it is desirable in any production enviornment.however, you would have to take a full backup immediately after changing recovery model from simple to full. Also, as suggested you need to perform periodic transactiong log backup based on your workload. |
|
|
jackv
Master Smack Fu Yak Hacker
2179 Posts |
Posted - 2013-03-27 : 16:30:47
|
One of the impacts - is to analyse disk required and the regular backups to clear the logs. Another impact is performance , do you have large bulk loading processes?Jack Vamvas--------------------http://www.sqlserver-dba.com |
|
|
anupamk
Starting Member
8 Posts |
Posted - 2013-03-28 : 00:18:10
|
Hi,No, we don't have Bulk loading process in the database where we want to change recovery model. But let me know what if Bulk loading process is there?Thanks,Anupam |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2013-03-28 : 06:39:35
|
Bulk loading process will cause logging every transactions in full recovery model which will have huge impact on disk space, io operations etc. Its a surprise to me when you say you dont have Bulk loading process in your warehouse. Warehouse will usually have batch data loads daily. Also most of day warehouse data would be static as data loads mostly happens nightly or at the max on noontime too unless you have some real time reporting needs. So not sure why you want Recovery Model to be Full. Can you tell the reason for doing this?------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/ |
|
|
jackv
Master Smack Fu Yak Hacker
2179 Posts |
Posted - 2013-03-31 : 02:35:18
|
If you are maintaining a Datawarehouse , and the data loads are once a day - and the data remains static during the day- then Recovery Model of FULL has little value. The users typically run reports - as read - with no writes.Jack Vamvas--------------------http://www.sqlserver-dba.com |
|
|
|
|
|
|
|