Click here to Skip to main content
15,896,207 members

Bugs and Suggestions

   

General discussions, site bug reports and suggestions about the site.

For general questions check out the CodeProject FAQs. To report spam and abuse Head to the Spam and abuse watch. If you wish to report a bug privately, especially those related to security, please email webmaster@codeproject.com

 
GeneralRe: The "admin messages" in the thread below might explain why "Reputation history" almost never shows any more. Pin
Jörgen Andersson2-Feb-20 20:51
professionalJörgen Andersson2-Feb-20 20:51 
GeneralRe: The "admin messages" in the thread below might explain why "Reputation history" almost never shows any more. Pin
ZurdoDev3-Feb-20 1:56
professionalZurdoDev3-Feb-20 1:56 
GeneralRe: The "admin messages" in the thread below might explain why "Reputation history" almost never shows any more. Pin
Wendelius3-Feb-20 8:42
mentorWendelius3-Feb-20 8:42 
GeneralRe: The "admin messages" in the thread below might explain why "Reputation history" almost never shows any more. Pin
Jörgen Andersson3-Feb-20 10:36
professionalJörgen Andersson3-Feb-20 10:36 
GeneralRe: The "admin messages" in the thread below might explain why "Reputation history" almost never shows any more. Pin
Wendelius4-Feb-20 6:50
mentorWendelius4-Feb-20 6:50 
GeneralRe: The "admin messages" in the thread below might explain why "Reputation history" almost never shows any more. Pin
Jörgen Andersson4-Feb-20 8:23
professionalJörgen Andersson4-Feb-20 8:23 
GeneralRe: The "admin messages" in the thread below might explain why "Reputation history" almost never shows any more. Pin
Chris Maunder4-Feb-20 6:57
cofounderChris Maunder4-Feb-20 6:57 
GeneralRe: The "admin messages" in the thread below might explain why "Reputation history" almost never shows any more. Pin
Jörgen Andersson4-Feb-20 11:56
professionalJörgen Andersson4-Feb-20 11:56 
I have a feeling you're not using SQL Server any more, otherwise I'd recommend sp_BlitzIndex®[^] by Brent Ozar. It will list overlapping indexes amongst other things. I also have a nifty little query that will list missing indexes for you.

Anyway, the thing is, this particular timeout isn't happening just sometimes, it happens basically all the time for users with high enough reputation. Which implies that it is very dependent on the number of rows in the query.

Normally this would be a query similar to
SQL
SELECT TOP 100 Columns FROM Reputation WHERE mid = 2624750 ORDER BY DateTimeAdded DESC
which would easily be handled by a RangeScan on the index(mid,DateTimeAdded DESC). (Preferably clustered in this case)

But you know that already, so there's something else going on here.
Have to admit I'm curious.
Wrong is evil and must be defeated. - Jeff Ello

GeneralRe: The "admin messages" in the thread below might explain why "Reputation history" almost never shows any more. Pin
Richard Deeming5-Feb-20 0:38
mveRichard Deeming5-Feb-20 0:38 
GeneralRe: The "admin messages" in the thread below might explain why "Reputation history" almost never shows any more. Pin
Jörgen Andersson5-Feb-20 1:11
professionalJörgen Andersson5-Feb-20 1:11 
GeneralRe: The "admin messages" in the thread below might explain why "Reputation history" almost never shows any more. Pin
Chris Maunder11-Feb-20 7:49
cofounderChris Maunder11-Feb-20 7:49 
GeneralRe: The "admin messages" in the thread below might explain why "Reputation history" almost never shows any more. Pin
Jörgen Andersson11-Feb-20 10:19
professionalJörgen Andersson11-Feb-20 10:19 
GeneralRe: The "admin messages" in the thread below might explain why "Reputation history" almost never shows any more. Pin
W Balboos, GHB11-Feb-20 7:09
W Balboos, GHB11-Feb-20 7:09 
GeneralRe: The "admin messages" in the thread below might explain why "Reputation history" almost never shows any more. Pin
Chris Maunder11-Feb-20 7:48
cofounderChris Maunder11-Feb-20 7:48 
GeneralRe: The "admin messages" in the thread below might explain why "Reputation history" almost never shows any more. Pin
Jörgen Andersson11-Feb-20 10:21
professionalJörgen Andersson11-Feb-20 10:21 
QuestionNot sure how I got this... Pin
OriginalGriff1-Feb-20 22:30
mveOriginalGriff1-Feb-20 22:30 
AnswerRe: Not sure how I got this... Pin
Wendelius1-Feb-20 23:18
mentorWendelius1-Feb-20 23:18 
GeneralRe: Not sure how I got this... Pin
OriginalGriff1-Feb-20 23:37
mveOriginalGriff1-Feb-20 23:37 
GeneralRe: Not sure how I got this... Pin
Wendelius2-Feb-20 0:11
mentorWendelius2-Feb-20 0:11 
GeneralRe: Not sure how I got this... Pin
OriginalGriff2-Feb-20 0:47
mveOriginalGriff2-Feb-20 0:47 
AnswerRe: Not sure how I got this... Pin
Peter_in_27802-Feb-20 1:18
professionalPeter_in_27802-Feb-20 1:18 
GeneralRe: Not sure how I got this... Pin
phil.o2-Feb-20 1:26
professionalphil.o2-Feb-20 1:26 
AnswerRe: Not sure how I got this... Pin
Nelek2-Feb-20 5:03
protectorNelek2-Feb-20 5:03 
AnswerRe: Not sure how I got this... Pin
Brisingr Aerowing2-Feb-20 14:56
professionalBrisingr Aerowing2-Feb-20 14:56 
AnswerRe: Not sure how I got this... Pin
Jörgen Andersson2-Feb-20 20:53
professionalJörgen Andersson2-Feb-20 20:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Flags: Fixed

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.