This article attempts to provide guidance to developers who are considering using a SQL Server database in an application, but who are uncertain which edition of SQL Server best meets their needs. SQL Server comes in a variety of editions, each of which build upon the features of the previous edition. This allows you to purchase an edition that provides only the features you need, and upgrade to another edition in the future if you require additional features. The exception to this rule are SQL Server Compact Edition and SQL Azure, which offer features such as embedding or integration with the Azure cloud platform that are not found in other editions.
The table below shows the relationship between the various editions of SQL Server.
For more in-depth information on the available editions of SQL Server, see http://www.microsoft.com/sqlserver/2008/en/us/editions-compare.aspx.
Ultimately, the decision as to which edition of SQL Server to use will be based on the set of requirements of your application. The number of simultaneous users, whether you require a highly scalable database, support for specialized data types, all are critical to determining which edition is suitable for use with your application. However there are some easy questions that you can answer that will immediately narrow the list of SQL Server editions that are viable for your application.
The following table lists the editions of SQL Server that are the best answers for the above questions:
A remote database is a database that resides on a different computer from the application(s) that use it. Editions of SQL Server that provide remote database functionality are implemented as a service, and are capable of handling a large number of simultaneous connections from multiple users and applications. A remote database that is accessed over the network is typically desirable if:
These editions of SQL Server run in their own process space, and allocate system resources separately from those used by your application. By default, these editions will dynamically allocate memory as needed by the SQL Server process. Minimum and maximum memory values can be configured if desired.
To support critical applications that must be highly available, these editions of SQL Server allow you to perform database backups while the database is in use. They also support transactional recovery, which guards against data corruption, and advanced multi-user concurrency.
SQL Azure provides many of the same capabilities of SQL Server delivered as a cloud service on the Windows Azure Platform. Unlike other editions of SQL Server, you do not need to provision hardware for, install or patch SQL Azure; Microsoft maintains the platform for you. All you have to do is set up a subscription, provision your service, and start using SQL Azure database. You also do not need to architect a database installation for scalability, high availability or disaster recovery as these features are provided automatically by the service. Any application that uses SQL Azure must have Internet access in order to connect to the database. Ideally, applications that use SQL Azure Database are built for and deployed to the Windows Azure Platform. This provides the highest performance and reliability for database connections because all of the communication between the application tier and the data tier happen inside Microsoft data centers and use private high speed networks. You can configure SQL Azure to support connections from applications running on-premise, but the quality of the connection will be limited to the bandwidth and reliablity of your internet connection. If you know how to develop applications with SQL Server, ASP.NET and the .NET Framework you already have many of the skills required to build cloud applications on the Windows Azure Platform. Give it a try today! Note that MSDN subscribers get great discounts on trial Windows Azure subscriptions (which include SQL Azure).
A local database is a database that resides on the same computer as the application(s) that use it. A local database is most often used when:
While both SQL Server Compact and SQL Server Express are suitable for providing a local database, there are many differences between the two products that will determine which one is more suitable for your application. SQL Server Express is a general purpose edition that is suitable for use as either a local or remote database (additional configuration is required to service remote connections,) and provides optional features such as full text indexing and reporting. SQL Server Compact is a special purpose edition that is designed specifically for use as a local database that is embedded as part of the application.
Specific differences in how these editions provide local database functionality are listed in the following table:
All editions of SQL Server other than Compact run as a service. They require a separate installation, consume their own resources, and usually are configured to run continuously, even when no applications are accessing the database. While this is desirable for many scenarios, it may be unnecessary if the application requires only a local database.
A SQL Compact database is hosted by the application and runs in the application's process space. This can simplify the installation requirements of the application, as the Compact assemblies and database are part of the application itself instead of requiring a separate installation of SQL Server. It also removes inter-process calls that are normally involved with accessing other editions of SQL Server that run as a service.
While not a member of the SQL Server family, the Microsoft Access Database Engine (also known as the Microsoft Jet Database Engine,) is also suitable for providing a local database for an application. The Microsoft Access Database Engine is similar to SQL Server Compact edition, in that it is designed primarily for local database scenarios and runs in-process within the host application. While databases created using the Microsoft Access Database Engine cannot be directly upgraded to an edition of SQL Server, they can be migrated to SQL Server by using a tool such as the SQL Server Migration Assistant (http://www.microsoft.com/sqlserver/2008/en/us/migration.aspx).
The Microsoft Access Database Engine is installed with Microsoft Access, part of the Microsoft Office family of products. While many associate the Microsoft Access Database Engine with Microsoft Access, the engine can also be used by non-Access applications, such as C# or VB.NET applications created using Visual Studio.
For information on using the Microsoft Access Database Engine with a C# application, see the Samples and Tutorials section. For information on Microsoft Access as a development environment, see the Development Platforms section.
Use the following links to discover the features available in the editions of SQL Server 2005, 2008, 2008 R2 and SQL Server Compact 3.5 and 4 (CPT 1):
Microsoft provides two development platforms that install one or more editions of SQL Server as part of the development platform installation. This is provided as a convenience to the developer, and in no way limits the development environment to only using the edition of SQL Server that came with it. Other development platforms, such as Microsoft Office, can also use SQL Server but do not install it. This section primarily focuses on the development platforms that install SQL Server as part of their setup.
WebMatrix is an all-in-one package that streamlines the building and hosting Web sites using Windows. It includes IIS Developer Express, ASP.NET, and SQL Server Compact 4.0, as well as templates for Web sites and the ability to easily start Web sites based on popular open-source apps such as WordPress, mojoPortal, Drupal and Moodle.
Web sites created using WebMatrix can either be hosted directly using IIS Developer Express, or deployed to a hosting provider running IIS. Likewise, applications created using WebMatrix that use SQL Server Compact can continue using Compact after deployment, or can be easily migrated to another version of SQL Server, such as Web edition.
For examples and tutorials using WebMatrix, see the Samples and Tutorials section.
Where WebMatrix is tightly focused on one specific development scenario (Web sites,) Visual Studio is an integrated development environment that can be used to develop a variety of applications (Windows forms applications, Web applications, Web sites, Web services, console applications, etc.) for all platforms supported by Microsoft Windows, Windows Mobile, Windows CE, .NET Framework, .NET Compact Framework, Microsoft Silverlight, and Windows Phone 7. Visual Studio provides built-in support for programming languages such as C#, VB.NET, C++, as well as allowing for the installation of additional languages such as Python and Ruby.
Visual Studio installs both SQL Server Express and SQL Server Compact, the current version (Visual Studio 2010,) installs SQL Server 2008 Express SP1 and SQL Server Compact 3.5 SP2. While Visual Studio installs SQL Server Express and SQL Server Compact, it does not limit you to only these editions; you can create applications that target any edition of SQL Server.
For examples and tutorials using Visual Studio, see the Samples and Tutorials section.
While Microsoft Office does not install any version of SQL Server, applications created using Office products such as Access or Excel can be used to develop applications that connect to SQL Server. Some Office products, such as Access, provide specific features for integrating with SQL Server, while others can make use of Visual Basic for Applications (VBA) to connect to SQL Server.
Microsoft Access provides an easy way to create and access a database by including templates, tools for designing forms, and queries and reports that can be used with little or no coding. Access also includes features for developers who want to build redistributable Access based applications. By default, Access stores its data in the Microsoft Access Database Engine; however Access can connect to other data sources, including SQL Server.
For examples and tutorials using Access and Excel, see the Samples and Tutorials section.
Richard Mueller edited Revision 21. Comment: Fixed duplicate <a name> tags in HTML so that TOC works properly
Windows Azure Product Team edited Revision 20. Comment: update the sql azure business size limitation 150GB instead of 50GB
_RussH edited Revision 18. Comment: Unfeatured article
Ed Price - MSFT edited Revision 15. Comment: Preparing to feature.
Ed Price - MSFT edited Revision 11. Comment: Spacing
Ed Price - MSFT edited Revision 10. Comment: TOC
Larry Franks edited Revision 9. Comment: updating sql server editions table to put Datacenter and Azure as peers
Larry Franks edited Revision 8. Comment: fixing colors on tables and notes.
Larry Franks edited Revision 7. Comment: fixing typo, fixing link, clarifying text.
Larry Franks edited Revision 5. Comment: Adding hover text.
Larry Franks edited Original. Comment: fixing formatting
Larry Franks edited Revision 1. Comment: more fixing formatting.
Larry Franks edited Revision 3. Comment: more formatting fixes
Larry Franks edited Revision 4. Comment: test for hover text