INF: Calculating Space for the Storage of NULL Values (65963)



The information in this article applies to:

  • Microsoft SQL Server 4.2x
  • Microsoft SQL Server 6.0
  • Microsoft SQL Server 6.5

This article was previously published under Q65963

SUMMARY

This article explains how to calculate the amount of space needed for the storage of NULL values.

MORE INFORMATION

For all standard data types, NULL values stored by Microsoft SQL Server do not take up any additional storage space. The only associated overhead for a column containing a NULL value is a single byte in the storage record that defines a pointer to the column. This is a fixed cost that is associated with the creation of the column. There is a special case for Text/Image storage.

If the columns were created with "nulls allowed," no additional space is allocated for Text and Image columns until data is actually inserted into those columns. However, once a Text or Image column has had data inserted into it, the page space remains allocated even if the column is changed to NULL. The only way to free this allocated page space is to delete the row.

Modification Type:MajorLast Reviewed:11/14/2003
Keywords:kbusage KB65963