Creating Database Using Microsoft SQL Server

To create and configure a Microsoft SQL Server instance, perform the following procedure:

    Procedure
  1. Create an SQL Server instance that is used to hold the BPM database.
  2. Configure the SQL Server instance to use mixed (Windows and SQL Server) authentication.
  3. Enable the TCP/IP network protocol for the SQL Server instance. For example,
    1. In SQL Server Configuration Manager, expand SQL Server Network Configuration.
    2. Click Protocols for instance_name where instance_name is the name of the SQL Server instance.
    3. Right-click TCP/IP and click Enable.
    4. Restart the SQL Server instance.
  4. Run the script as the database administrator to create the database instance, login, and bpmuser (user). TIBCO BPM Enterprise uses this role whenever it connects to the BPM database.
    CONFIG_HOME/tibco/cfgmgmt/bpm/database/mssql/createuser.sql
    Note: The BPME database tables are generated automatically using the BPME utility.
Note: If you are using Microsoft SQL Server 2022, it may be necessary to add the following code to the end of the injected JDBC URL to establish a connection:
;encrypt=true;trustServerCertificate=true;