I need to find out if full text search is installed on SQL Server 2005. I don't have permission to log into the box and fire up Setup to check. However I can run SQL Server Management Studio and connect to run queries with sysadmin permissions.
Does anyone know how to detect if this feature is installed?
IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled')) print 'INSTALLED' else print 'NOT INSTALLED'
(SQL Server 2005)
MSDN reference here.
I like
SELECT
overPRINT
So here is my take on this
Look at the list of services on the machine. If full text search is installed you'll see a service named SQL Server FullText Search ([instance]) where [instance] will be the name of the SQL instance that it is associated with.
If you have sql server management studio, you should be able to find out following the steps this MSDN article. If you find it already checked, then its enabled.