Introduction to Development with SQL Server

Today's featured TechNet Wiki article can be found here. It was originally authored by Larry Franks.

===============

Intended audience: Application developers who are not familiar with Relational Database Management Systems (RDBMS) yet need more than what the filesystem offers.

If your applications require a more complex storage solution than directly reading and writing to a file, consider one of the editions of SQL Server. The links below describe the editions and how to install them. Other links describe simple database administration tasks that may be just enough to serve your current needs.

SQL Server Express

If you are not sure which features you need and want to begin developing with SQL Server immediately, you can start by installing SQL Server Express. This is a free edition that can be seamlessly upgraded to other editions if you discover that you need more features. If you are unfamiliar with SQL Server Express, or databases in general, a series of video tutorials on beginning development with SQL Server Express can be found at SQL Videos: SQL Server 2005 Express for Beginners on ASP.net. There is also a recently launched blog and video series that focuses on the new SQL Server user at https://learningsqlserver.wordpress.com/.

SQL Server

SQL Server is a RDBMS that provides a dedicated, robust storage solution that you can easily incorporate into your application. If you start out with the Express edition, you may later want to move to a more powerful storage solution that includes structured storage, fast search and retrieve, transactional reads and writes, as well as specialized functionality such as report generation, data analysis, or support for specialized data types such as geographic data.

SQL Server Editions and Features

Before you install SQL Server, make sure you understand the features your application needs. Some SQL Server features are available only with specific editions. You may also need other software, like language-specific SQL Server drivers.

Other Languages

This article is also available in the following languages:

=======================

Read the latest version of this Wiki article here, including links for installation and database administration.