Understanding the StackOverflow Database Schema - SQLServerPedia

http://sqlserverpedia.com/wiki/Understanding_the_StackOverflow_Database_Schema Notes about schema used by StackOverflow.com and related websites. It is very simple, only several tables used. (most likely because there are performance problems with joins)

Google Translate "Again about SQL " -- route costs lookup for telephony operator

http://translate.google.com/translate?u=http%3A%2F%2Fplakhov.livejournal.com%2F144249.html%3Fthread%3D2563193%23t2563193&sl=ru&tl=en&hl=&ie=UTF-8 Google translate of 2 posts in Russian section of LJ about route costs look up problem commonly faced by telephony operators

Recursion Ventures - Dan Kamisky on SQL Injections and XSS

http://recursion.com/interpolique.html in 3 lines Dan’s method is:

[RUS]Проектирование френдленты и рейтингов / Проектирование БД : Форум на SQL.RU | [Forum SQL.ru] Modeling frendlist, ratings

http://sql.ru/forum/actualthread.aspx?tid=754989 Some comments on modeling friendlits user activity, for social media websites (or apps)

GreenSQL | Open Source Database Security, SQL Injection Prevention

http://www.greensql.net/ SQL-proxy/filtering software for MySQL and PostgreSQL databases, used to prevent SQL-injection-like attacks, filter-out dangerous SQL, etc

[RUS] Подсчет количества найденных записей в PostgreSQL / Хабрахабр

http://m.habrahabr.ru/post/30046/ PostgresSQL: how to count number of rows returned by a query and do it fast

MySQL vs PostgreSQL Benchmarks | Random Bugs

http://www.randombugs.com/linux/mysql-postgresql-benchmarks.html yet another mysql vs postgresql benchmark using “OSDB”. Small difference between the two, but consider that benchmark was done on 2-way SMP, 3GB ram, 1 SATA DISK and a small dataset.

Cache Performance Comparison | MySQL Performance Blog

http://www.mysqlperformanceblog.com/2006/08/09/cache-performance-comparison/ gives you an idea how different caching methods perform. Read it before implementing something

Prevent users from seeing SQL inside SP Postgersql ( from flames on sql.ru about MySQL vs PostgreSQL [russian] Выбор СУБД: MySQL или PostgreSQL / Сравнение СУБД : Форум на SQL.RU )

http://sql.ru/forum/actualthread.aspx?tid=606215&pg=3 example: REVOKE SELECT ON pg_catalog.pg_proc, information_schema.routines FROM public

[russian] Юзеры - Друзья. Какая связь? / Проектирование БД : Форум на SQL.RU || User - Friends relationship : Database design, forum SQL.ru

http://sql.ru/forum/actualthread.aspx?bid=36&tid=552763&pg=2 design pattern for friends/users, i.e. how to organize user-friend relationship. patters suggest that you need to make 2 tables, i.e freindship and friendship:user