Answers for multiple databases welcome!
|
2
|
|
|
|
|
|
In Oracle the default mode of operation is the Read committed isolation level where a select statement is not blocked by another transaction modifying the data it's reading. From Data Concurrency and Consistency:
|
||
|
|
|
|
PostgreSQL also uses MVCC (Multi-Version Concurrency Control), so using the default transaction isolation level (read-committed), you should never block, unless somebody is doing maintainace on th DB (dropping / adding columns / tables / indexes / etc). |
||
|
|
|
|
In Firebird writers never block readers and there are no dirty-reads. Only read-commited and snapshot isolation levels. |
||
|
|
|
|
Jeff Atwood has a good post on this topic: |
||
|
|
|
|
In SQL Server you can use the with(nolock) keyword in your select statements. For example:
Make sure to specify with(nolock) for each table/view in the query. |
||
|
