cancel
Showing results for 
Search instead for 
Did you mean: 

MII 11.5.3b66 and SQL EXPRESS 2005

Former Member
0 Kudos

I'm trying to create a Data Server to SQL Express 2005 using the connection string:

jdbc:inetdae:HAMELS\SQLEXPRESS:1433?database=sandbox&sql7=true

When I try to save this Data Server, the page locks up. I have to restart the services and the servers.xml file is not updated.

I've narrowed the problem down to the "\" in the servername\named instance. Has anyone else successfully set up a connection to SQLEXPRESS or a named SQLSERVER instance with 11.5.3b66?

Accepted Solutions (1)

Accepted Solutions (1)

jamie_cawley
Advisor
Advisor
0 Kudos

Use the 2005 driver and verify that tcp/ip is on and dynamic ports is turned off.

JDBCDriver

com.microsoft.sqlserver.jdbc.SQLServerDriver

ServerURL

jdbc:sqlserver://HAMELS\SQLEXPRESS:1433;database=sandbox

Jamie

Former Member
0 Kudos

That will do it. Thanks.

Answers (1)

Answers (1)

Former Member
0 Kudos

Have used older version 11.5.2 b64 to create an ODBC connection to a DSN on the local xMII server, this allowed us to connect to remote SQLEXPRESS server to run Stored procedures etc.

Regards,

Emmett

Former Member
0 Kudos

Thanks for that information. I've thought about going that route too. Good to know that works.