March 16, 2014

SPARSE Columns in table

This feature introduced in Sql server 2008

SPARSE column are better at managing NULL and ZERO values in SQL Server. It does not take any space in database at all. If column is created with SPARSE clause with it and it contains ZERO or NULL it will be take lesser space then regular column (without SPARSE clause).

In SQL Server 2008 maximum column allowed per table is 1024. All the SPARSE columns does not count to this limit of 1024. The maximum limit of SPARSE column is 100,000. In summary any table can have maximum of 100,000 SPARSE and 1024 regular columns.

Example
--------
CREATE TABLE Test
(
  PK_RowID INT IDENTITY(1,1),
  Col1 INT SPARSE,
  Col2 VARCHAR(500) SPARSE,
)



Advantages of SPARSE column are:
  • INSERT, UPDATE, and DELETE statements can reference the sparse columns by name. SPARSE column can work as one XML column as well.
  • SPARSE column can take advantage of filtered Indexes, where data are filled in the row.
  • SPARSE column saves lots of database space when there are zero or null values in database.
Disadvantages of SPARSE column are:
  • SPARSE column does not have IDENTITY or ROWGUIDCOL property.
  • SPARSE column cannot be applied on text, ntext, image, timestamp, geometry, geography or user defined datatypes.
  • SPARSE column cannot have default value or rule or computed column.
  • Clustered index or a unique primary key index cannot be applied SPARSE column. SPARSE column cannot be part of clustered index key.
  • Table containing SPARSE column can have maximum size of 8018 bytes instead of regular 8060 bytes.
A table operation which involves SPARSE column takes performance hit over regular column.

No comments:

Post a Comment