I am using SQL Server 2008 R2, when I looked into the services for SQL Server I saw there are two different services with different instances.
SQLEXPRESSMSSQLSERVER
Can anyone help me to get clear the difference between #1 and #2?
Thanks in advance
|
I am using SQL Server 2008 R2, when I looked into the services for SQL Server I saw there are two different services with different instances.
Can anyone help me to get clear the difference between #1 and #2? Thanks in advance |
|||
|
|
You can install multiple copies of SQL Server onto the same machine. To keep them apart, all "copies" (called instances) except the first (default) one have to be named. So by default, when you install your first instance of SQL Server, you won't give it any instance name - it'll be the default instance that you connect to use the server name of Any further instance you want to install needs to get a separate, unique instance name. Visual Studio will by default install SQL Server Express onto your machine (unless you explicitly tell it not to), and that will be called the So most likely, in your case, you installed a "full" version of SQL Server onto your machine (as the default instance - service is called |
|||
|
|
|
MSSQLSERVER is the default instance (accessed via Did you install twice? |
|||
|