Service Broker must be enabled in Microsoft® SQL Server for databases created when new TextMap SQL cases are created or registered in the CaseMap Admin Console. Enabling Service Broker ensures indexing success when transcripts are imported into a SQL case file. If Service Broker is disabled, indexing and re-indexing will not occur during import or case creation.
When new TextMap SQL cases are created, the new case will have Service Broker enabled. However, if a database administrator restores a SQL database, the restored SQL database will have Server Broker disabled. After a SQL database is restored from a backup, database administrators need to enable Service Broker for the database.
SELECT is_broker_enabled FROM sys.databases WHERE name = 'Database name' A value of 0 indicates it is off, 1 is on. |
Alter Database [DB_NAME] Set ENABLE_BROKER |
![]() |