How to enable Full-Text Search

95% of our servers already come with Full-Text search capabilities. If you receive an error from the below commands, please contact support to have it enabled on your server. You may use the article available at http://msdn.microsoft.com/en-us/library/ms189520.aspx to enable full-text search by inputting the commands into your MSSQL Management Studio client once you've connected to our MSSQL server. An example set of commands is as follows - USE Database_Name; GO CREATE FULLTEXT CATALOG Database_Name AS DEFAULT; GO CREATE FULLTEXT INDEX ON dbo.Table(Column) KEY INDEX PK_Index_Name; GO
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Do you allow remote MSSQL access?

Yes. We do allow remote access to the MSSQL. It is offered on the regular port...

Helm shows MSSQL 2005. I thought you offered MSSQL 2008?

Yes. The MSSQL server is 2008 however since Helm's theme/skin does not offer a way to add MSSQL...

Is there a limit to the size of a database that I can have?

Yes. MSSQL databases are limited to a size of 3 GB.

Do you have a connection string I can use to connect to the local MSSQL database?

 Yes. Please use the following connection string and fill in the necessary spots with your...