![]() |
Learn more about Toad for SQL Server Find solutions and downloads at the |
Toad for SQL Server 6.6 |
The sliding window scenario is a SQL Server 2005 table partitioning feature that enables you to handle data aging effectively. Using this scenario, you can automatically add new partitions to a large table without having to manually move data, archive aged data, and delete partitions. Sliding window scenarios are useful for tables where large loads occur periodically, such as billing or payroll systems.
Because active data is queried much more often than aged data, the sliding window scenario rolls new data into the production table and switches aged partitions out. The main benefit is that queries can be performed on the new data while the aged data is being archived. SQL Server 2005 supports the sliding window scenario with its T-SQL statements.
Notes:
To create a sliding window scenario
Select Tables from the Databases node in the Object Explorer.