Mar 3, 2011
Apple iPad 2 vs iPad: What different?
Feb 15, 2011
Use NOLOCK and READPAST table hints in SQL Server for speed up query
When data in a database is read or modified, the database engine uses special types of controls, called locks, to maintain integrity in the database. Locks basically work by making sure database records involved in a transaction cannot be modified by other transactions until the first transaction has committed, ensuring database consistency.
When designing database applications, you should keep in mind the different types of locks that will be issued, and the different levels of isolation your transactions will occur. Typically, the SQL Server defaults work fine for what you are trying to accomplish. However, there will be times when it is advantageous to manually make hints to how locks are issued on your tables in your SQL statements.
Feb 8, 2011
Tips to Speed up SQL Server database queries
by Tim Chapman, TechRepublic