While this may not sound like a very good design practice, I am just curious on how this would affect performance.
Suppose I have 10 - 30 columns in a data table. Almost always, data in some of the columns will be null. Alternatively, I could have just one XML column, and only fill it with data that pertains to a record (ie, I don't need to store nulls). Which of these two cases will perform faster in terms of selection? Are there are things that I should consider (I haven't experimented too much with XML columns but I think I can still do aggregations and other common functions)
Suppose I have 10 - 30 columns in a data table. Almost always, data in some of the columns will be null. Alternatively, I could have just one XML column, and only fill it with data that pertains to a record (ie, I don't need to store nulls). Which of these two cases will perform faster in terms of selection? Are there are things that I should consider (I haven't experimented too much with XML columns but I think I can still do aggregations and other common functions)