show/hide this revision's text 4 Not got the hang of WMD yet!

Q. Why are you storing the AnswerCount in the Posts table in the first place?

An alternative approach is to eliminate the "write back" to the Posts table by not storing the AnswerCount in the table but to dynamically calculate the number of answers to the post as required.

Yes, this will mean you're running an additional query:

SELECT COUNT(*) FROM Answers WHERE post_id = @id

or more typically (if you're displaying this for the home page):

SELECT post_idp.post_id, 
     <post p.<additional post fields>,
     AnswerCount
a.AnswerCount
FROM Posts p
    INNER JOIN AnswersCount_view a
    ON <join criteria>
WHERE <home page criteria>

but this typically results in an INDEX SCAN and may be more efficient in the use of resources than using READ ISOLATION.

There's more than one way to skin a cat. De-normalisation Premature de-normalisation of a database schema can introduce scalability issues.

show/hide this revision's text 3 code formatting

Q. Why are you storing the AnswerCount in the Posts table in the first place?

An alternative approach is to eliminate the "write back" to the Posts table by not storing the AnswerCount in the table but to dynamically calculate the number of answers to the post as required.

Yes, this will mean you're running an additional query:

SELECT COUNT(*) FROM Answers WHERE post_id = @id

or more typically (if you're displaying this for the home page):

SELECT post_id, 
       ,
         <post fields>,
       AnswerCount
FROM Posts
     INNER JOIN AnswersCount_view
      ON <join criteria>
WHERE <home page criteria>

but this typically results in an INDEX SCAN and may be more efficient in the use of resources than using READ ISOLATION.

There's more than one way to skin a cat. De-normalisation of a database schema can introduce scalability issues.

show/hide this revision's text 2 Formatting

Q. Why are you storing the AnswerCount in the Posts table in the first place?

An alternative approach is to eliminate the "write back" to the Posts table by not storing the AnswerCount in the table but to dynamically calculate that each timethe number of answers to the post as required.

Yes, this will mean you're running an additional queryto :

SELECT COUNT(*) FROM Answers WHERE post_id = @id

or more typically (if you're displaying this for the home page):

SELECT post_id, , AnswerCount FROM Posts INNER JOIN AnswersCount_view ON WHERE

but this typically results in an INDEX SCAN and may be more efficient in the use of resources than using READ ISOLATION.

There's more than one way to skin a cat. De-normalisation of a database schema can introduce scalability issues.

show/hide this revision's text 1