InterviewSolution
| 1. |
What is pseudo-simple Recovery Model? |
|
Answer» Pseudo-simple Recovery Model is situational based recovery model. This is something not given by project but ones with CIRCUMSTANCES. It’s a situation where the DATABASE may be configured in the FULL recovery model but BEHAVES like a SIMPLE recovery model. The database will behave like a SIMPLE recovery model until a full database backup is taken after switching recovery model to Full. For example, You have a database in Simple Recovery Model and now you have switched it to the FULL recovery model. You NEED to perform a full backup after switching recovery model otherwise database will keep behaving like simple and keeps TRUNCATING Transaction log on commit. |
|