Welcome to TechNet Blogs
Sign in
|
Join
|
Help
SQL Server Blogs
Vipul Shah's SQL Blogs
This Blog
About
Email
Syndication
RSS 2.0
Atom 1.0
Search
Tags
/3GB /PAE and AWE
64-bit
Benefits of SQL 2005
Data Scripter Utility
Database Design
DDL Triggers
Default Traces
DTS
Guest User in SQL Server
Indexes
Integration Services
LOGON Triggers
Migration to SQL 2005
Missing Indexes DMVs
Monitoring
Patches
Reporting Services
SQL Server Management Studio
SQL Server Performance
Table Partitioning
T-SQL
Archives
June 2009 (1)
May 2009 (1)
April 2008 (1)
February 2008 (2)
December 2007 (2)
September 2007 (3)
August 2007 (1)
July 2007 (1)
June 2007 (1)
May 2007 (3)
April 2007 (3)
March 2007 (5)
February 2007 (2)
January 2007 (1)
November 2006 (3)
"Transparent" Benefits of SQL Server 2005
Did you know?
In SQL Server 2005:
DBCC - uses snapshot framework avoiding locks - no table level schema locks
sys.dm_db_index_physical_stats replaces DBCC SHOWCONTIG - Both of these tools doesn't require S lock. It only require IS lock
Rebuilding clustered index does not necessarily rebuild associated nonclustered indexes unless the keyword ALL is specified
Asynch stats update - ALTER DATABASE <DBNAME> SET AUTO_UPDATE_STATISTICS_ASYNC ON: Query compilation with out-of-date statistics causes auto update to be done in background. Compilation does not pause, but proceeds with old statistics
It automatically skips updating stats for tables and indexes that haven't had any updates since the last time statistics were created or updated
Scalability of tempdb has been enhanced - caching of initial pages occurs upon declaration of temporary tables and table variables - saves time and boosts performance
Backup data and Log concurrently - Logshipping backups are not blocked by a data backup
Page checksum is on by default - higher reliability. Buffer pool replacement policy is much better at keeping the right pages in cache
Deadlock output is now XML (graphical) by using DeadLock Graph event type in Profiler
Missing Index feature is always on. With new feature - SET STATISTICS XML ON, you can see the ShowPlan in XML format and within that output there is an element of MissingIndexes. This element contains information about missing indexes based on the query execution plan.
Published Wednesday, May 02, 2007 10:25 PM by
vishah
Filed under:
Benefits of SQL 2005
Comments
Anonymous comments are disabled