This topic explains how to configure LabKey Server to retrieve and display data from Microsoft SQL Server as an external data source.
Microsoft SQL Server can also be used as LabKey Server's primary data source.
We strongly recommend using Microsoft's JDBC driver, which is included with LabKey Server Premium Editions as part of the BigIron module. Support for the jTDS driver was removed in 23.3.0.
Add a <Resource> element to your installations labkey.xml configuration file. Use the template below as a general starting point, replacing the words in capitals with their appropriate values.
If you will be connecting to more than one data source, be sure that all have unique name parameters, i.e. mssqlDataSource1, mssqlDataSource2, or similar. This value will be used whenever you connect an external schema to this datasource so it must be unambiguous.
<Resource name="jdbc/mssqlDataSource"
auth="Container"
type="javax.sql.DataSource"
username="USERNAME"
password="PASSWORD"
driverClassName="com.microsoft.sqlserver.jdbc.SQLServerDriver"
url="jdbc:sqlserver://SERVER_NAME:1433;databaseName=DATABASE_NAME;trustServerCertificate=true;applicationName=LabKey Server;"
maxTotal="20"
maxIdle="10"
maxWaitMillis="120000"
accessToUnderlyingConnectionAllowed="true"
validationQuery="SELECT 1"
/>
Notes:
Now define a new schema from the SQL Server data source. For details see Set Up an External Schema.
previousnext |
expand allcollapse all |