- IMS Knowledge Base
- FileBound
- Database
-
FileBound
- Add Content
- Active Directory
- Administration
- Automation Processes
- Basic Search & Retrieval
- Capture
- Clipboard
- Connect
- Database
- Document Actions
- DocuSign
- E-Forms
- Enterprise Service
- Full Text Search
- General
- HelloSign
- Https
- Importer Pro
- Installation
- Licensing
- Maintenance
- Office 365
- Records Management
- Reports
- SAML
- Web Viewer
- Windows Viewer
- Workflow
-
Windows Settings
-
Scanners
-
Psigen
-
Code Snippets
-
PaperVision
SQL Script to Determine if the Database has Full Text Search Installed
Run the SQL Script below to determine if Full Text Search is installed on the database.
SELECT
CASE
WHEN
FULLTEXTSERVICEPROPERTY('IsFullTextInstalled') = 1
THEN
'INSTALLED'
ELSE
'NOT INSTALLED'
END IsFullTextInstalled