In versions of SQL prior to 2008, following query would let us know whether full-text search service was running.
SELECT fulltextserviceproperty('ResourceUsage') --is running if get 1,2,3,4 or 5.
This query has been deprecated in SQL 2008 to always return zero.
Is there an alternative way to check this service from T-SQL ?
p.s. using C++, or other common programming languages', functions is not helpful in desired case.