Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
SQL Server Browser Service on Instances for sqljdbc Test
How to run SQL Server Browser service on my local computer? I want to use SQL Server instance name instead of port number in sqljdbc JDBC driver connection URL string.
✍: FYIcenter.com
If you are running multiple SQL Server instances on a single SQL Server host
with different TCP port numbers,
you can run SQL Server Browser service
to allow clients to lookup port number by instance name.
You can follow these steps to turn on Browser service to start using SQL Server instance name in your sqljdbc JDBC driver connection URL string:
1. Go to "Control Panel > Services".
2. Find "SQL Server Browser" and click "Start" to run it.
3. Find all "SQL Server (*)" services that are running and write down their instance names (inside parentheses). For example, if you see "SQL Server (SQLEXPRESS)" service, SQLEXPRESS will be the SQL Server instance name.
4. Go back to your sqljdbc JDBC connection URL string, and use one of the following formats:
1. Append instance name to server name without port jdbc:sqlserver://<server>\<instance> [;<property>=<value>[;...]] Example: jdbc:sqlserver://localhost\SQLEXPRESS;user=sa;password=fyicenter 2. Add "instanceName" property without port jdbc:sqlserver://<server>[;instanceName=<instance>] [;<property>=<value>[;...]] Example: jdbc:sqlserver://localhost;user=sa;password=fyicenter;instanceName=SQLEXPRESS
⇒ SqlServerInstanceJdbcUrl.java - sqljdbc JDBC URL for Instance
⇐ SqlServerJdbcUrl.java - sqljdbc JDBC Connection URL Example
2016-12-24, ∼1486🔥, 0💬
Popular Posts:
What Is ojdbc8.jar for Oracle 12c R2? ojdbc8.jar for Oracle 12c R2 is the JAR files of ojdbc.jar, JD...
JDK 11 java.management.jmod is the JMOD file for JDK 11 Management module. JDK 11 Management module ...
Xalan-Java, Version 2.7.1, is an XSLT processor for transforming XML documents into HTML, text, or o...
What Is mail.jar of JavaMail 1.3? I got the JAR file from javamail-1_3.zip. mail.jar in javamail-1_3...
iText is an ideal library for developers looking to enhance web- and other applications with dynamic...