This site contains the documentation that is relevant to older WSO2 product versions and offerings.
For the latest WSO2 documentation, visit https://wso2.com/documentation/.
Setting up with Microsoft SQL
The following sections describe how to replace the default H2 database with MS SQL.
Step 1: Setting up the MSSQL database and users
Follow the steps below to set up the Microsoft SQL database and users.
Enable TCP/IP
- In the start menu, click Programs and launch Microsoft SQL Server 2012.
- Click Configuration Tools, and then click SQL Server Configuration Manager.
- Enable TCP/IP and disable Named Pipes from protocols of your Microsoft SQL server.
- Double click TCP/IPÂ to open the TCP/IP properties window, and set Listen All to
Yes
on the Protocol tab. On the IP Address tab, disable TCP Dynamic Ports by leaving it blank and give a valid TCP port, so that Microsoft SQL server will listen on that port.
The best practice is to use port 1433, because you can use it in order processing services.
- Similarly, enable TCP/IP from SQL Native Client Configuration and disable Named Pipes. Also check whether the port is set correctly to 1433.
- Restart Microsoft SQL Server.
Create the database and user
- Open Microsoft SQL Management Studio to create a database and user.
- Click New Database from the Database menu, and specify all the options to create a new database.
- Click New Login from the Logins menu, and specify all the necessary options.
Grant permissions
Assign newly created users the required grants/permissions to log in, create tables, and insert, index, select, update, and delete data in tables in the newly created database, as the minimum set of SQL server permissions.Â
Step 2: Copying the JDBC driver
Download and copy one of the following drivers to the <MB_HOME>/repository/components/lib/
 directory.Â
- Microsoft SQL JDBC driver fileÂ
jtds-1.3.1.jar
 . Microsoft JDBC Driver 6.0, 4.2, 4.1, or 4.0. Be sure to use the JAR file that is compatible with your JRE version:
- If you are using JRE 7, use the
Sqljdbc41.jar
file. This supports the JDBC 4.1 API. - If you are using JRE 8, use the
Sqljdbc42.jar
file. This supports the JDBC 4.2. API.Â
- If you are using JRE 7, use the
Once this is done, the driver class relevant to the driver you use should be updated in the master-datasources.xml
 file when you set up the datasource configurations. By default the master-datasources.xml
 file is configured with the driver class for the jtds-1.3.1.jar
 driver, which is net.sourceforge.jtds.jdbc.Driver
. If you use the JDBC driver 6.0, 4.2, 4.1 or 4.0, you need to change the driver class configuration to com.microsoft.sqlserver.jdbc.SQLServerDriver
.
Step 3: Connecting the server to the MSSQL database
Once you have setup the physical database as explained in the previous step, the next step is to enable the connectivity between your MB server and the database. This can be done by simply copying the relevant database drivers to your server, and then configuring the datasources in MB to link to the new database. See the instructions given below.Â
Setting up datasource configurations
The connection between physical databases and the server is established through datasources. The master-datasources.xml
 file (stored in the <MB_HOME>/repository/conf/datasources
 directory) is the default datasource configuration file that is shipped with WSO2 products. In the case of WSO2 MB, since we use two databases (Carbon database for registry/user management data and the MB-specific database for storing MB data), the master-datasources.xml file should contain two separate datasource configurations corresponding to the two databases.
If you check the default master-datasources.xml
 file in the product, you will see that the configurations point to the embedded H2 databases. The following instructions explain how you can divert the default configurations to point to the external MySQL database you created in step 1.
Follow the steps given below to replace the Carbon datasource configuration with a new connection to the MSSQL database:Â Â
- Open the <
MB_HOME>/repository/conf/datasources/m
aster-datasources.xml
 file. Uncomment or add the following configuration to theÂ
master-datasources.xml
 file. Update the JDBC URL to correctly point to your database and enter the username and password for the MSSQL database user with the proper permissions. TheÂ<driverClassName>
 element should be updated according to the driver you used.<datasource> <name>WSO2_CARBON_DB</name> <description>The datasource used for registry and user manager</description> <jndiConfig> <name>jdbc/WSO2CarbonDB</name> </jndiConfig> <definition type="RDBMS"> <configuration> <url>jdbc:jtds:sqlserver://10.100.3.251:1433/wso2greg</url> <username>regadmin</username> <password>regadmin</password> <driverClassName>net.sourceforge.jtds.jdbc.Driver</driverClassName> <maxActive>80</maxActive> <maxWait>60000</maxWait> <minIdle>5</minIdle> <testOnBorrow>true</testOnBorrow> <validationQuery>SELECT 1</validationQuery> <validationInterval>30000</validationInterval> </configuration> </definition> </datasource>Â
The elements in the above configuration are described below:
Element Description url The URL of the database. The default port for a DB2 instance is 50000. username and password The name and password of the database user driverClassName The class name of the database driver maxActive The maximum number of active connections that can be allocated  at the same time from this pool. Enter any negative value to denote an unlimited number of active connections. maxWait The maximum number of milliseconds that the pool will wait (when there are no available connections) for a connection to be returned before throwing an exception. You can enter zero or a negative value to wait indefinitely. minIdle The minimum number of active connections that can remain idle in the pool without extra ones being created, or enter zero to create none. testOnBorrow
The indication of whether objects will be validated before being borrowed from the pool. If the object fails to validate, it will be dropped from the pool, and another attempt will be made to borrow another. validationQuery The SQL query that will be used to validate connections from this pool before returning them to the caller. validationInterval
The indication to avoid excess validation, and only run validation at the most, at this frequency (time in milliseconds). If a connection is due for validation, but has been validated previously within this interval, it will not be validated again. For more information on other parameters that can be defined in theÂ
<MB_HOME>/repository/conf/
datasources/master-datasources.xml
 file, see Tomcat JDBC Connection Pool.
Step 4: Creating the database tables
To create the database tables, connect to the database that you created earlier and run the following scripts.
To create tables in the registry and user manager database (
WSO2CARBON_DB
), use the below script:<MB_HOME>/dbscripts/mssql.sql
Restart the server.
You can create database tables automatically when starting the product for the first time by using theÂ
-Dsetup
 parameter as follows:For Windows:
<MB_HOME>/bin/wso2server.bat -Dsetup
For Linux:
<MB_HOME>/bin/wso2server.sh -Dsetup