• ben111 (4/6/2013)


    I'm having a hard time figuring this out, and it's a very basic question, so maybe I'm just having a hard time understanding the basics of this concept. Any help would be greatly appreciated!

    I previously had SQL Server Express 2008 set up on my home computer (windows 7), and I've been using that for a while.

    I wanted to start working through a book on BI, so I installed the evaluation version of SQL Server Enterprise Edition 2008. It wouldn't let me upgrade Express (it was getting an error) so i instead chose to install a second instance of SQL Server (called MSSQLSERVER) on the machine.

    My basic question is, how do I control which instance I am using? As I go through my exercises with this BI book, do I need to make sure I am using the Enterprise version and not the Express? If so, how do i do that?

    In my programs menu, I only see one version of SQL Server 2008. When i open it, I am still able to connect using SSMS and see all the databases I saw before. It connects to this server:

    localhost\sqlexpress

    I know that both instances are installed on my machine, because if I go to Run > services.msc

    I see services for both instances, one called SQLEXPRESS and the other called MSSQLSERVER

    Using SSMS, I have tried to connect to

    localhost\sqlexpress\mssqlserver

    and

    localhost\mssqlserver

    however, neither of these will connect. How do I connect to this second instance?

    Thanks very much.

    Firstly, you don't "control" which instance you are working with. You simply connect to the instance you want to work with. That can easily be done through the SSMS.

    The next question is: Have you uninstalled SQLEXPRESS? What you are seeing are entries generated by (but not deleted) osql -l as you browse the LAN looking for SQL Servers. The instances you have displayed are default instances and are not necessarily positively refreshed when you browse the network. In order to connect to a default instance, you only have to provide the machine name and not the instance name. Perhaps that is the mistake you are making here.

    As for the BI stuff: Use the Enterprise version. As with any course it will assume you are working with the highest level of database software (in this case, Enterprise) and will present the material appropriately.