Search Results

2
votes
10answers
251 views

When creating a social voting system, should you keep track of downvotes and upvotes separately in the DB?

With things like SO, Digg, Reddit, etc... Should one keep track of downvotes in the database independent of upvotes? Or should they simply have a "votes" field that is decremented/increme …
0
votes
3answers
135 views

How do I get the highest currently used ID number in a table with LINQ?

I have a table with a list of names. This table has an ID column that is an autoincremented number. I would like to display on my website something like, "6,523,213 names created so far." …
2
votes
2answers
69 views

When scraping a lot of stats from a webpage, how often should I insert the collected results in my DB?

I'm scraping a website (scripting responsibly by throttling my scraping and with permission) and I'm going to be gathering statistics on 300,000 users. I plan on storing this data in a SQL …
3
votes
3answers
70 views

How can I query rankings for the users in my DB, but only consider the latest entry for each user?

Lets say I have a database table called "Scrape" possibly setup like: UserID (int) UserName (varchar) Wins (int) Losses (int) ScrapeDate (datetime) I'm t …