What's new in SQL Server 2008 - Some More
Filestream Storage As the name may suggest, Filestream enables the storage of unstructured data such as documents and videos. This feature integrates with the NTFS files system by using the nvarchar(max) data type to store data on the file system. This feature is great for when you’re currently storing documents inside of your SQL Server system that are larger than 1 MB and fast read access is important. Sparse Columns Sparse columns are very similar to other types of database columns, except that they are specialized and optimized for null values. If you have a table that holds a lot of NULL values, first consider your table design. If your design is solid or cannot be altered, then your table may be a candidate to take advantage of sparse columns. The rule from Microsoft is to consider using Sparse columns when 20-40 percent of the values in a column will be NULL. New Date & Time Data Types Prior to SQL Server 2008, there was no way to native dat...