I would like to know if it's possible to create another instance of SQLServer 2005, to have 2 instances running on the same system ? thanks
|
migrated from stackoverflow.com Feb 16 '10 at 21:02
|
Sure. One is the default instance, the other(s) is(are) a named instance. This really does belong on serverfault. |
|||
|
|
|
Yes it is, that is what the Instance name is used for, when installing make sure you don't pick the default instance name but specify your own. You can then connect to the instance using |
|||||
|
|
No one has mentioned that this is done by doing a second install, from install media, of whatever version of SQL Server you want your additional instance to be. You don't do it by opened SSMS and making a new instance. You install the product again, and it makes a new install directory, a new SQL service, a new agent service, etc. |
|||
|
|
You need to run the installer again, then choose a "named instance". You can install as many instances of SQL Server on the same machine as you like. |
|||
|
|
|
Definitely you can. To add to the other answers, a few things to watch out for when using multiple instances:
|
|||
|
|