Creating Database Using Microsoft SQL Server
To create and configure a Microsoft SQL Server instance, perform the following procedure:
- Procedure
- Create an SQL Server instance that is used to hold the BPM database.
- Configure the SQL Server instance to use mixed (Windows and SQL Server) authentication.
- Enable the TCP/IP network protocol for the SQL Server instance. For example,
- In SQL Server Configuration Manager, expand SQL Server Network Configuration.
- Click Protocols for instance_name where instance_name is the name of the SQL Server instance.
- Right-click TCP/IP and click Enable.
- Restart the SQL Server instance.
- 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;