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 |
mikebird
Aged Yak Warrior
529 Posts |
Posted - 2008-12-14 : 08:55:32
|
What's the difference between a snapshot and a full backup? |
|
GilaMonster
Master Smack Fu Yak Hacker
4507 Posts |
Posted - 2008-12-14 : 10:58:36
|
A snapshot as in a database snapshot? (as opposed to snapshot replication)A backup is a full copy of the database (schema and data) at the time the backup was made.A snapshot is a point-in-time view of a database. All that's contained in the snapshot file is the original version of pages that have changed in the source DB since the snapshot was created. It's not a full copy of the DB.--Gail ShawSQL Server MVP |
 |
|
|
|
|