I am trying to enable Full-text indexing in SQL Server 2005 Express. I am running this on my laptop with Vista Ultimate.
I understand that the standard version of SQL Se
All I needed to get full-text indexing to work was the...
CREATE FULLTEXT CATALOG [myFullText] WITH ACCENT_SENSITIVITY = ON
After that I could run a CREATE FULLTEXT INDEX query or use the Manage FullText Index in MSSQL Management Studio.