Posted by Alex Verboon on 7th March 2010
I got a bit confused by all the different SQL Server 2008 Express downloads that exist, so spend a little time in getting some insight. If you want to download SQL Server 2008 Express you have the following options:
| Package |
Download |
| Microsoft® SQL Server® 2008 Express Edition Service Pack 1 |
Download |
| Microsoft® SQL Server® 2008 Express with Tools |
Download |
| Microsoft® SQL Server® 2008 Express with Advanced Services |
Download |
Then I recommend reading the following blog posts. What’s up with SQL Server 2008 Express editions provides an overview of the supported feature of each distribution. The SQL Express 2008 family is getting bigger gives a good insight what the different installation packages do contain.
Tags: Download, Edition, Express, SQL, SQL Server 2008 Express
Posted in SQL, Tip | No Comments »
Posted by Alex Verboon on 20th November 2008
When you install SQL Server 2000 / 2005 / 2008 you can configure under what user account the services are running. In the past i’ve often seen people selecting “local system”, I also selected that….not thinking too much about security then and it was the easiest to do with no need to create an additional user account and as long as you don’t need to access any other domain resources that worked fine.
Today from a security perspective though running the SQL services under the local sysem account is probably not a good idea, as the local system account is equivalent to a local administrator, so bad code that might get into your SQL server might hit the underlying system as well. From reading various sql forum postings and articles and Microsoft Technet articles it appears to be the best to simply create standard users accounts, during installation these accounts are being given the necessary permissions on the system they need.
If you don’t need access to other domain resources, the creation of local user accounts on the system that hosts the SQL server is enough, if not create them in AD.
The article “Picking Service Accounts” describes it all in more detail. (note that you must register yourself to read articles on SQLServerCentral.com
Tags: Security, SQL
Posted in SQL, Security, Tip | No Comments »