Useful FileBound SQL Scripts

1. List FileBound updates/upgrades applied and timeframe:   
select * from ScriptUpdates where ScriptName like 'SQL_Updates' 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;