- 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
Useful FileBound SQL Scripts
1. List FileBound updates/upgrades applied and timeframe:select * from ScriptUpdates where ScriptName like 'SQL_Updates' order by DateExecuted desc;
3. List all FileBound version script updates/upgrades applied in descending order:
select * from ScriptUpdates order by DateExecuted desc;
2. Check to see if your MS SQL database has "Full Text Search" installed (0=no, 1=yes):
select ServerProperty('IsFullTextInstalled') as IsFullTextInstalled;