Im using FullTextSqlQuery to query my sharepoint site. It works fine when used in the following manner
QueryText = "SELECT Title,Path FROM SCOPE() where Title = 'Test'";
However as soon as I use scopes, it returns an error "Cannot connect to the Search Service" and the WSS Search Service crashes. It has to be manually restarted.
QueryText = "SELECT Title,Path FROM SCOPE() where \"scope\" = 'All Sites'";
Thanks in advance