InfoQ

News

Deprecated and Discontinued Features in SQL Server 2008

Posted by Abel Avram on Jun 10, 2008 04:50 AM

Community
.NET
Topics
SQL Server

Everybody is waiting for the new features coming with Microsoft SQL Server 2008, but there are some deprecated and discontinued features that we should be aware of. Deprecated features are features found in previous versions of SQL Server that are no longer recommended to be used in newer products, and they are going to be removed from future versions of the server. Discontinued features are those features no longer available in SQL Server 2008. It is important to notice what those features are before migrating to SQL Server 2008.

The deprecated and discontinued features are found in a backward compatibility online document on MSDN. There are several major areas with many compatibility issues:

  1. Database Engine
  2. Analysis Services
  3. Integration Services
  4. Reporting Services
  5. Replication
  6. Full-text Search

Beside those deprecated and discontinued features, there are numerous breaking and behavioral changes in the product in the respective areas. A breaking change might break an application or a script built on a previous version of SQL Server. A behavioral change affects the way features work in SQL Server. It is recommended to consult the documentation before upgrading to SQL Server 2008, or using the Upgrade Advisor, an application which analyses the current installation of SQL Server and generates a report with various issues that need to be fixed either before or after the upgrade. 

More specifics please by Al Tenhundfeld Posted Jun 11, 2008 12:10 AM
Re: More specifics please by Simon Bowie-Britton Posted Jun 18, 2008 5:17 AM
  1. Back to top

    More specifics please

    Jun 11, 2008 12:10 AM by Al Tenhundfeld

    It's nice that you provided a link to the site where we can read all of the lists ourselves, but I think all of the readers would appreciate you highlighting some of the big deprecated features. The "major areas" you pointed out are essentially the entire SQL Server platform.

    For example, just quickly skimming a few sections I noticed some issues that have the potential to affect a lot of people:

    1. Use of *= and =* will no longer be supported in TSQL. ANSI joins will be required. Most people know to use ANSI joins when writing new code, even if they don't understand the subtle differences that can arise, but I've personally seen thousands of legacy reports that use the older syntax.

    2. RAISERROR(int,string) is no longer supported. It appears some flavors of RAISERROR are still supported, but the recommendation is to move to the new-in-2005 try-catch paradigm. Again, I've seen some older systems with this code riddled throughout their stored procs.

    3. Remote servers have been entirely replaced with linked servers - probably a good thing.

    4. SET ROWCOUNT is no longer supported. TSQL will have to be rewritten to use TOP.

    5. Notification Services has been removed from SQL Server 2008. This is a big deal for some people, but this deprecation has been pretty widely publicized already.

    6. In Reporting Services, HTML with Office Web Components (OWC) rendering extension is discontinued.

  2. Back to top

    Re: More specifics please

    Jun 18, 2008 5:17 AM by Simon Bowie-Britton

    Hmm - More concerning is the deprecation of SQL commands that match Sybase (e.g. sp_lock, sp_depends, temporary table naming conventions, image datatype and a few others...). It will be harder to migrate Sybase based applications to the SQL Server platform in the future. Considering that X86 Hardware has provided significant performance benefits over the last few years vs historical SUN infrastructure, this added an extra migration option for IT managers to consider when retiring Sybase databases (i.e. vs migrating to DB2 or Oracle). I know this is a hangup from the origins of SQL Server, but it has been extremely useful for moving between Sybase and SQL Server platforms for development purposes.

Educational Content

Bindings, Platforms, and Innovation

This presentation focuses on the Internet and separating myth from fact, history from the future, and the mundane from the imaginative. Bob Frankston presents a vision of what could and should be.

Orchestrating Long Running Activities with JBoss / JBPM

This article explores the use of JBoss and jBPM to implement design solutions that effectively address the issue of orchestrating long running activities.

Neo4j - The Benefits of Graph Databases

This presentation covers the use of graph databases as an optimal solution for data that is difficult to fit in static tables, rapidly evolving data or data that has a lot of optional attributes.

Realistic about Risk: Software development with Real Options

This session introduces Real Options and shows how it can help in running your project. Real Options is a decision-making process that can be used to manage risk.

Communication Flexibility Using Bindings

This article discusses the use of bindings on services and references (including the instance of non-configured bindings) as the means to implement SCA communications in a Web and SOA environment.

Writing DSLs in Groovy

After a short introduction to DSLs, Scott Davis plays with the keyboard showing how to approach the creation of a DSL by typing working snippets of Groovy code that get executed.

Scaling Agile with C/ALM (Collaborative Application Lifecycle Management)

IBM Rational and InfoQ present, Scaling Agile with C/ALM, an eBook showing organizations how to become “finely tuned software delivery machines” by enabling team integration and scaling.

Concurrent Programming with Microsoft F#

Amanda Laucher presents a real life enterprise application written in F#. She shows actual code snippets, explaining design decisions and suggesting how to use some of the F# constructs.