Advantages of MS SQL Server 2008 over MS SQL Server 2005? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T02:36:22Z http://stackoverflow.com/feeds/question/198478 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/198478/advantages-of-ms-sql-server-2008-over-ms-sql-server-2005 20 Advantages of MS SQL Server 2008 over MS SQL Server 2005? torial 2008-10-13T18:11:30Z 2009-06-25T07:34:33Z <p>What are the key differences between MS SQL Server 2005 and 2008? </p> <p>Are there any compelling reasons for upgrading (any edition, as I have a customer with multiple editions)? Or can you point to a website with either a chart or bullet point comparison of the two servers?</p> <p>Also, is there anything noteworthy in the Express editions of either version?</p> http://stackoverflow.com/questions/198478/advantages-of-ms-sql-server-2008-over-ms-sql-server-2005/198505#198505 3 Answer by Gulzar for Advantages of MS SQL Server 2008 over MS SQL Server 2005? Gulzar 2008-10-13T18:21:39Z 2008-10-13T18:21:39Z <p>There are new <a href="http://www.microsoft.com/sqlserver/2008/en/us/overview.aspx" rel="nofollow">features added</a>. But, you will have to see if it is worth the upgrade. Some good <a href="http://www.simple-talk.com/sql/learn-sql-server/management-studio-improvements-in-sql-server-2008/" rel="nofollow">improvements in Management Studio 2008</a> though, especially the intellisense for the Query Editor. </p> http://stackoverflow.com/questions/198478/advantages-of-ms-sql-server-2008-over-ms-sql-server-2005/198530#198530 9 Answer by Richard T for Advantages of MS SQL Server 2008 over MS SQL Server 2005? Richard T 2008-10-13T18:27:30Z 2008-10-20T02:53:19Z <p>Obviously, there's the huge advantage of having the very latest version number - nobody can say your system's out of date!</p> <p>I make it a point not to upgrade software unless I know of a particular benefit I want or that may have some value in the future that's worth today's pain. Databases in particular are things you should never update on a whim as usually you're using a database for a vital reason and something <em>could</em> change in an upgrade that upsets the apple cart.</p> <p><hr /></p> <p>UPDATE:</p> <p>Notice that I didn't edit or delete the post just because three of you decided to vote this one down. That's because those who voted this down MISSED THE POINT and they might very well learn something by stopping and thinking...</p> <p>The very idea of always going to a younger release is flawed; vendors love it, but if there's nothing wrong, don't fix it! This is especially true in the database world where it's not at all uncommon for entire enterprises depend on a database. Upgrading without knowing <em>exactly</em> what benefits and risks there are is just plain stupid.</p> <p>The original poster said they didn't know if there were any benefits to be had. In my opinion it's VERY risky to suggest to that person that they upgrade because the risks are unknown. Sites often have dependencies they don't even know about! ...Hang out in this industry for some thirty years and maybe you'll figure this out... I guess there's also a big difference between coding engineers and the support staff that have to keep systems running 24/7. Those of us who have to keep the lights burning know how vital our systems are and that we have to take a more cautious approach than someone writing code.</p> <p>Another point here; when you see something you don't directly agree with, you might just think about it for a while instead of just deciding it doesn't fit your paradigm so it must be wrong - and therefore voting it down. Voting down should only be done for things that are clearly wrong and not because it disagrees with your OPINION.</p> http://stackoverflow.com/questions/198478/advantages-of-ms-sql-server-2008-over-ms-sql-server-2005/198554#198554 33 Answer by Josef for Advantages of MS SQL Server 2008 over MS SQL Server 2005? Josef 2008-10-13T18:34:06Z 2009-05-14T23:12:05Z <ul> <li>Transparent Data Encryption. The ability to encrypt an entire database.</li> <li>Backup Encryption. Executed at backup time to prevent tampering.</li> <li>External Key Management. Storing Keys separate from the data.</li> <li>Auditing. Monitoring of data access.</li> <li>Data Compression. Fact Table size reduction and improved performance.</li> <li>Resource Governor. Restrict users or groups from consuming high levels or resources.</li> <li>Hot Plug CPU. Add CPUs on the fly.</li> <li>Performance Studio. Collection of performance monitoring tools.</li> <li><em>Installation improvements. Disk images and service pack uninstall options.</em></li> <li>Dynamic Development. New ADO and Visual Studio options as well as Dot Net 3.</li> <li>Entity Data Services. Line Of Business (LOB) framework and Entity Query Language (eSQL)</li> <li>LINQ. Development query language for access multiple types of data such as SQL and XML.</li> <li>Data Synchronizing. Development of frequently disconnected applications.</li> <li>Large UDT. No size restriction on UDT.</li> <li>Dates and Times. New data types: Date, Time, Date Time Offset.</li> <li>File Stream. New data type VarBinary(Max) FileStream for managing binary data.</li> <li>Table Value Parameters. The ability to pass an entire table to a stored procedure.</li> <li>Spatial Data. Data type for storing Latitude, Longitude, and GPS entries.</li> <li>Full Text Search. Native Indexes, thesaurus as metadata, and backup ability.</li> <li>SQL Server Integration Service. Improved multiprocessor support and faster lookups.</li> <li>MERGE. TSQL command combining Insert, Update, and Delete.</li> <li>SQL Server Analysis Server. Stack improvements, faster block computations.</li> <li>SQL Server Reporting Server. Improved memory management and better rendering.</li> <li>Microsoft Office 2007. Use OFFICE as an SSRS template. SSRS to WORD.</li> <li>SQL 200 Support Ends. Mainstream Support for SQL 2000 is coming to an end.</li> </ul> <p>(Good intro article <a href="http://www.databasejournal.com/features/mssql/article.php/3691821" rel="nofollow">part 1</a>, <a href="http://www.databasejournal.com/features/mssql/article.php/3697056" rel="nofollow">part 2</a>, <a href="http://www.databasejournal.com/features/mssql/article.php/3702381" rel="nofollow">part 3</a>. As for compelling reasons, that depends on what you are using SQL server for. Do you need <a href="http://blogs.msdn.com/manisblog/archive/2007/08/17/sql-server-2008-hierarchyid.aspx" rel="nofollow">hierarchical data types</a>? Do you currently store files in the database and want to switch over to <a href="http://blogs.msdn.com/rdoherty/archive/2007/10/12/getting-traction-with-sql-server-2008-filestream.aspx" rel="nofollow">SQL Server's new filestream feature</a>? Could you use more disk space by turning on <a href="http://blogs.msdn.com/chadboyd/archive/2007/07/28/katmai-sql-2008-data-compression-including-backup-compression.aspx" rel="nofollow">data compression</a>? </p> <p>And let's not forget the ability to <a href="http://msdn.microsoft.com/en-us/library/bb522522.aspx" rel="nofollow">MERGE</a> data.</p> http://stackoverflow.com/questions/198478/advantages-of-ms-sql-server-2008-over-ms-sql-server-2005/198622#198622 2 Answer by MichaelGG for Advantages of MS SQL Server 2008 over MS SQL Server 2005? MichaelGG 2008-10-13T18:51:57Z 2008-10-13T18:51:57Z <p>Someone with more reputation can copy this into the main answer:</p> <ul> <li>Change Tracking. Allows you to get info on what changes happened to which rows since a specific version.</li> <li>Change Data Capture. Allows all changes to be captured and queried. (Enterprise)</li> </ul> http://stackoverflow.com/questions/198478/advantages-of-ms-sql-server-2008-over-ms-sql-server-2005/198627#198627 2 Answer by gbn for Advantages of MS SQL Server 2008 over MS SQL Server 2005? gbn 2008-10-13T18:53:00Z 2008-10-13T18:53:00Z <p>I guess it depends on your role</p> <p>For me as a developer:</p> <ul> <li>Merge statement</li> <li>Reporting Services improvement</li> <li>Date/time changes</li> </ul> http://stackoverflow.com/questions/198478/advantages-of-ms-sql-server-2008-over-ms-sql-server-2005/215808#215808 9 Answer by Brent Ozar for Advantages of MS SQL Server 2008 over MS SQL Server 2005? Brent Ozar 2008-10-19T01:01:39Z 2008-10-19T01:01:39Z <p>Kevin Kline wrote a pretty good whitepaper summing up the top ten features in 2008 that make it worthwhile.</p> <p><a href="http://www.quest.com/sql2008/" rel="nofollow">SQL 2008 Worth the Wait</a></p> <p>But be aware that a lot of the really killer features are only in Enterprise Edition. Data compression and backup compression are among two of my top favorites - they give you free performance improvements right off the bat. Data compression lessens the amount of I/O you have to do, so a lot of queries speed up 20-40%. CPU use goes up, but in today's multi-core environments, we often have more CPU power but not more IO. Anyway, those are only in Enterprise.</p> <p>If you're only going to use Standard Edition, then most of the improvements require changes to your application code and T-SQL code, so it's not quite as easy of a sell.</p> http://stackoverflow.com/questions/198478/advantages-of-ms-sql-server-2008-over-ms-sql-server-2005/263505#263505 2 Answer by Graham for Advantages of MS SQL Server 2008 over MS SQL Server 2005? Graham 2008-11-04T21:29:48Z 2008-11-04T21:29:48Z <p>SQL 2008 also allows you to disable lock escalation on specific tables. I have found this very useful on small frequently updated tables where locks can escalate causing concurrency issues. In SQL 2005, even with the ROWLOCK hint on delete statements locks can be escalated which can lead to deadlocks. In my testing, an application which I have developed had concurrency issues during small table manipulation due to lock escalation on SQL 2005. In SQL 2008 this problem went away.</p> <p>It is still important to bear in mind the potential overhead of handling large numbers of row locks, but having the option to stop escalation when you want to is very useful.</p> http://stackoverflow.com/questions/198478/advantages-of-ms-sql-server-2008-over-ms-sql-server-2005/815181#815181 2 Answer by hainstech for Advantages of MS SQL Server 2008 over MS SQL Server 2005? hainstech 2009-05-02T16:49:38Z 2009-05-02T16:49:38Z <p>I went to a bunch of sql 2008 talks in PASS 2008, the only 'killer feature' from my point of view is extended events. There are lots of great improvements, but that was the only one that got close to being a game changer for me. Table value params and merge were probably my next fav. Day-to-day, intellisense is a huge win.. but this isn't really specific to sql 2008, just the sql 2008 toolset (other tools can give you similar intellisense against sql2005/2000/etc).</p> http://stackoverflow.com/questions/198478/advantages-of-ms-sql-server-2008-over-ms-sql-server-2005/1042616#1042616 1 Answer by Hakan Winther for Advantages of MS SQL Server 2008 over MS SQL Server 2005? Hakan Winther 2009-06-25T07:34:33Z 2009-06-25T07:34:33Z <p>One of my favourites are Filtered indexes. Now I can create lightning fast covering indexes for my most critical queries with only minor impact on DML statements.</p> <p>/Håkan Winther</p>