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.
Use the jTDS JDBC driver, which is included with LabKey Server Premium Editions as part of the BigIron module.
Other JDBC drivers for Microsoft SQL Server have not been tested and have known issues.
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.
<Resource name="jdbc/mssqlDataSource" auth="Container"
type="javax.sql.DataSource"
username="USERNAME"
password="PASSWORD"
driverClassName="net.sourceforge.jtds.jdbc.Driver"
url="jdbc:jtds:sqlserver://localhost:1433/DATABASE_NAME"
maxTotal="20"
maxIdle="10"
accessToUnderlyingConnectionAllowed="true"
validationQuery="SELECT 1"/>
Now define a new schema from the SQL Server data source. For details see Set Up an External Schema
previousnext |
expand allcollapse all |