Reasons To Upgrade
Upgrading to 2008 will give an additional 3 years of support. So you’re looking at 7-8 years of support as opposed to 4-5 years on 2005.
Source: Article on SQL Server Central
SQL 2005 SSIS – Buggy and has major shortcomings. Any enhancements for SSIS 2005 are halted.
Interesting post on SSIS faults
Cannot create a global class in a project (i.e. – you have to re-write code everywhere)
CLR Framework is only a subset (Does not support External Assemblies or COM Interop)
DataTypes for transformations do not automatically map (have to manually be mapped using the mouse)
It is very hard to debug a package
Built-in logging displays tons of useless information and very little useful information
Difficult to find out specific information on the record-level about why an error occurred
Limited data types available in their flat-file connectors
Data flow tasks cannot include logical conditional flows like the process flows.
Script editors use VB.Net only (…my opinion)
Overall, just very sensitive and annoying.
SSAS – Being a complete re-write, the 2005 Analysis services is less mature. Performance enhancements have been made in 2008. Personal experience has shown many errors when aggregating cubes and slower than expected on-the-fly aggregations than in SQL 2000 AS.
Auditing – SQL 2008 implements auditing out of the box and functions asynchronously not hindering performance. Using SQL 2005 we will have to manually write auditing functionality or go third party. Depending on future auditing requirements, performance potentially can be impacted.
Resource governor – SQL 2008 provides the ability to limit the resources of queries. This often happens with reporting procedures. Limiting the resources of non application centric resources will help end-user experience.
Performance Data Collection – collect historical snapshots of system performance in a separate database
Reporting Services – 2005 reporting services is very resource intensive and is not practical unless on a separate installation of SQL Server to perform report pagination/rendering. 2008 Reporting services is a rewrite of the reporting engine.
SQL 2008 Performance Scale
Full text search – This is now integrated into the SQL Server engine and performance has been enhanced.
SQL Full Text Search
Change Data Capture – For requirements to save or monitor historical information on changed data. Using SQL 2008 we can implement a non-invasive detection of changed records.
CPU’s can be added on the fly
Ability to compress data and use less disk space
Reasons For Developers
Change Data Capture (CDC) – very solid and great to use for determining changed records.
Additional enhancements made to minimal logging for inserts
Intellisense – Built in finally
Resource Governor – Very cool. Throttle the resources of users based on Memory or Processor
Declare and set a variables inline
New Grouping Sets allows analysis-like data in OLTP (Grouping Sets)
Table Valued Parameters – Pass a table into a stored procedure as a parameter
Merge Statement – No more upserts. Now you can perform update and insert operations in on statement. Great for updating historical tables
New DMV shows all object dependencies
Data compression – Compress tables at the row level or the page level. Saves a tremendous amount of space.
0 comments:
Post a Comment