views:

34

answers:

1

When a database system writes a record to a page on disk, and one of the fields in that record is null, what value is used to represent that 'null' such that when the record is read back in, it knows that the field is 'null.'

Perhaps it is dependent on the data-type of that field?

A: 

It uses a NULL bitmap, you can use DBCC PAGE to take a closer look

Check out this link for more detail Poking about with DBCC PAGE

SQLMenace
I was almost certain it was metadata related. Thanks for the links.