Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I would certainly consider using snapshots, but there are a couple of things you need to consider before you decide one way or the other:</p> <ul> <li>Snapshots use sparse files to store data, effectively only storing the changes to each table from the time of its creation. The more rows in your table that change, the smaller the disk saving over a simple replication.</li> <li>Snapshots happen to the entire database, rather than just one table. Therefore, if your DB is huge, and need 100+ copies of your DB per hour, that's going to cost you a lot of disk space and performance. On the other hand, if you're happy with one snapshot per hour for all your processes and the data doesn't change <em>too</em> much, snapshots may be exactly what you need.</li> <li>Snapshots will have a performance overhead on your original DB, as the snapshots need to be kept up to date with what data has changed. If you're already tight on performance, this may be an issue.</li> </ul> <p>There are certainly some other things to consider, but that's not a bad starting point. Books OnLine has a fairly detailed article regarding the use of Snapshots, which I would read before deciding. <a href="http://msdn.microsoft.com/en-us/library/ms175158%28v=SQL.90%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms175158%28v=SQL.90%29.aspx</a> There's also a section in there on limitations: <a href="http://msdn.microsoft.com/en-us/library/ms189940%28v=SQL.90%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms189940%28v=SQL.90%29.aspx</a></p> <p>Hope this helps.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload