Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 SQL Server Administration (2005)
 Create a local server on SQL Server 2005 Dev ed

Author  Topic 

snez
Starting Member

16 Posts

Posted - 2008-10-17 : 11:32:13
How do you create a server locally after the initial installation of SQL Server 2005 Developer Edition and application of service packs?

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2008-10-17 : 11:39:21
If you installed the engine, then it's already there. You just need to connect to it. If you didn't install the engine, then you need to run setup again.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog
Go to Top of Page

afrika
Master Smack Fu Yak Hacker

2706 Posts

Posted - 2008-10-17 : 11:40:58
Run Management studio and login.
Go to Top of Page

snez
Starting Member

16 Posts

Posted - 2008-10-17 : 12:09:31
By engine do you mean named instance? I can see the instance in my "Network Servers" tab but not in my "Local Servers" tab in Management Studio which leads me to believe it is on my network but not locally on my machine.
Go to Top of Page

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2008-10-17 : 12:27:08
Well the database engine could be a default instance or a named instance. Just register your instance in Management Studio.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog
Go to Top of Page

snez
Starting Member

16 Posts

Posted - 2008-10-17 : 12:33:42
How do you register the instance in Mgmt Studio? When I open Mgmt Studio I get the Connect to Servers screen. I select Database Engine for Server Type and Select <Browse for more > in Server Name which then brings up the Browse for Servers screen. It is at this point that I'm thinking I should see my instance in the "Local Servers" tab rather than in the "Network Servers" tab.
Go to Top of Page

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2008-10-17 : 13:18:53
Don't browse for it, just type in the information.

If you installed a named instance, use HostName\InstanceName or (local)\InstanceName.

If you installed the default instance, use HostName or try (local).

Also verify that the SQL Server service is started. Let us know if you don't find the service as that would indicate the engine isn't installed yet.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog
Go to Top of Page

snez
Starting Member

16 Posts

Posted - 2008-10-17 : 13:36:16
I can connect either way. Using HostName\InstanceName or (local)\InstanceName. I think what was throwing me was that I did not see my instance on the "Local Servers" tab. Still not sure why that is.

Other developers cannot see my instance on their machines (on their "Network Servers" tab) which I think proves it is only local on mine. Thank you so much for all your help.
Go to Top of Page

SimpleSQL
Yak Posting Veteran

85 Posts

Posted - 2008-10-17 : 23:06:31
First verify if you have SQL installed on your local machine as follows.
Check Services, by going to Control Panel --> Administrative tool --> Services.

Check if you have SQL Server Serivce runnign on your local machine (if it is default instance for SQL Server 2005, service would show up as "SQL Server (MASQLSERVER)", for named instance, you would have a service as "SQL Server (NAMEOFINSTANCE)"

If the services are present, this means you have SQL installed locally on your machine.

You should be able to connect to them via SQL Server Management Studio as

. <-- for local using Windows Auth (assuming your account has correct privilege to connect to SQL), or using .\instancename for named instance.
Go to Top of Page
   

- Advertisement -