views:

23

answers:

1

Hi, Is there anything called dynamic partitioning in SQL server? If so how can i implement it?

A: 

You can have an automatic sliding window table partition that will keep say the last X days data in one partition and move everything else

http://technet.microsoft.com/en-us/library/aa964122(SQL.90).aspx

Kevin Ross