From: http://msdn.microsoft.com/en-us/library/ms187495.aspx
Example:
–Restore the regular log backup (from backup set 2).
RESTORE LOG AdventureWorks2008R2
FROM DISK = 'Z:\SQLServerBackups\AdventureWorks2008R2FullRM.bak'
WITH FILE=2,
NORECOVERY;
My question: If I don’t specify NORECOVERY, will it be the default? I have a bunch of databases that were migrated in this fashion and I’m not sure how to tell which recovery model was used.
Thanks
RECOVERY is the default. See the documentation for the RESTORE command, which states: