I’ve been told that there is no way to connect to a SQL Server 2005 named instance from SQL Developer. That’s not necessary true, but it’s strange.

A bit of background information: SQL Developer is connecting to SQL Server through JTDS opensource driver. The driver said that it cannot support named instances. On the other hand, in the connection string, there is a syntax for named instance, like “instance=your_instance“.

What you’ll have to do to connect to a named instance is not putting the instance name in the server name, like ADANEASA-RO/SQLEXPRESS, but concatenate everything in the port field.
Your port should be like [PORT]/[DB_NAME];INSTANCE=[INSTANCE_NAME]namedinstancesd

Good luck!

Related posts:

  • Enable TCP/IP on SQL Server 2005 Express Edition
  • Oracle 10g/11g installation on Windows 2008 Server
  • Upgrade Oracle APEX 3.2.1 to 4.0.1 on Oracle Database 10g Express Edition (XE)
  • Oracle Database 11g Release 2 available on Windows… finally
  • Book review: SQL Developer 2.1 by Sue Harper (Packt Publishing)
  • Tags: , , , , ,
    Leave a Reply