views:

48

answers:

4

I was using a older version of SQL on my server, and it worked fine when only typing the servername,, I could directly connect to the server,

I recently installed a new instance of SQL, and Iam trying to connect to the new instance but it dowsne't work.

SERVERNAME/New_instance

CAn someone help me out? How can I reach the new SQL server?

+1  A: 

try servername\new_instance (notice the direction of the slash)

DForck42
I tried with this also, and it is still not working
Troj
A: 

You might also need to turn on the SQL Browser Agent or whatever it's called.

Lloyd
I have turned it on
Troj
+1  A: 

are you trying to connect to the instance from your desktop, or from the local machine the instance is installed on? if you're trying to connect from your desktop (aka remotely), you might not have remote connections enabled. try turning this on.

DForck42
A: 

You may need to allow both SQL Server & Windows Authentication

Do this by

  1. In SQL Server Management Studio
  2. Right click on Instance name
  3. Select 'Security'
  4. Select 'SQL Server and Windows Authentication mode'
Nathan Koop
Iasm trying to open with SQL managment studio but I can from my client,
Troj