views:

255

answers:

5

Where is the configuration manager for SQL Express 2005? I need to configure SQL Server for TCP/IP but there is no configuration manager with the package. I see SQL Server Database Publishing Wizard, I see SQL Server Migration Assistant for Access, but no Configuration Manager. According to the MSDN, there should be one. I've even looked online for a download of the Configuration Manager for SQL Server 2005, but could not find one. Did I miss something in the download or should I just scrap SQL Server Express and download the full-blown SQL Server for Developers?

+1  A: 

This might be what you are looking for. I have used it with SQL Server Express 2005 although I am not sure if it configures the specific things you want to change and I just now verified that it does provide access to the communications options.

Mark Wilkins
That should be it. The GUI tools were not included.
eschneider
eschneider
+1  A: 

It should be installed as part of your SQL Express 2005 installation. Perhaps you arent looking at the right place. In a typical installation, you will find the configuration manager in here (word may not match as I just typed in as I can remember)

Start -> Program -> Microsoft SQL Server 2005 -> Configuration Tool -> Configuration Manager
Fadrian Sudaman
For the full version, but for Express; I don't think it was included.
eschneider
express edition has this option.
drorhan
A: 

My SQL Server 2005 Express Configuration Manager shortcut launches:

C:\WINDOWS\system32\mmc.exe /32 "C:\WINDOWS\system32\SQLServerManager.msc"

If you don't have the start menu shortcuts, try running that from the run menu/command prompt. Check in the C:\WINDOWS\system32\ folder to make sure the SQLServerManager.msc file exists.

adrianbanks
A: 

run this

C:\WINDOWS\system32\mmc.exe /32 "C:\WINDOWS\system32\SQLServerManager.msc"

and here is the sql 2005 express edition

SQL 2005 express

drorhan
A: 

Thanks Guys. I found the mmc.exe file with the configuration manager. Thanks again.

~joe b.

brohjoe