2
votes
3answers
83 views
What can happen as a result of using (nolock) on every SELECT in SQL Sever?
I get that the (nolock) optimizer hint allows for "dirty reads", but under what very specific scenarios is this a bad idea? I've never seen such widespread use of (nolock) in an organization, and it …
3
votes
5answers
207 views
Does GCC inline C++ functions without the ‘inline’ keyword?
Does GCC, when compiling C++ code, ever try to optimize for speed by choosing to inline functions that are not marked with the inline keyword?
0
votes
1answer
162 views
Is direct-path insert a good way to do bulk inserts in Oracle?
We're trying to figure out the best way to handle BULK INSERTs using Oracle (10gR2), and I'm finding that it can be a pretty complicated subject. One method that I've found involves using the Append …
