Joel's query doesn't look for bounties and also doesn't count reputation which has been received before a post went into community wiki mode. I've found a nice query which looks pretty good and which should be correct. For example, Jon Skeet lost 816,430 reputation just due to reputation cap. If I would run Joel's query, it would show that Jon skeet lost a total of 1,212,401 which is REALLY inaccurate.
Code inserted by Pekka
-- Reputation cap cut off
-- This query calculates how much reputation has been cut off because
-- you reached the limit of 200 reputation per day (through upvotes).
DECLARE @UserId int = ##UserId##
SELECT SUM(overvoted.sumvotes)
FROM (SELECT sumvotes = CASE
WHEN SUM(allvotes.votes) >= 200 THEN
SUM(allvotes.votes) - 200
ELSE 0
END
FROM (SELECT COUNT(*) * 10 AS votes,
votes.creationdate AS creationdate
FROM posts
INNER JOIN votes
ON votes.postid = posts.id
AND votetypeid = 2
WHERE posts.owneruserid = @userid
AND posts.communityowneddate IS NULL
GROUP BY votes.creationdate
UNION
SELECT COUNT(*) * -2 AS votes,
votes.creationdate AS creationdate
FROM posts
INNER JOIN votes
ON votes.postid = posts.id
AND votetypeid = 3
WHERE posts.owneruserid = @userid
AND posts.communityowneddate IS NULL
GROUP BY votes.creationdate) AS allvotes
GROUP BY allvotes.creationdate) AS overvoted