Well there are a bunch of things we do
The SQL Server instance is isolated and runs on a machine dedicated to data.se, only containing data.se public data.
This means that if stuff goes horribly wrong, performance of the main sites will not be affected.
Anonymous have to fill captchas
We had an instance where somebody had the very bright idea of running the same query over and over using some sophisticated robot like a shell script with wget. This is not going to happen anymore.
Throttles throttles and more throttles
There is a limit to the number of queries we will execute per user, per hour
Everything is cached
Second time we see any query, the results will be cached, which helps cut down on db traffic
Queries time out after 120 seconds
If you mess up and run an expensive query it will timeout. As an exercise for the reader I am not against also throttling CPU time on a per-user basis. Have not had the need to do this yet.
Number of results we return is capped
We do not return "infinite" results to the browsers we cap them.