I use SQL Server 2008 Management studio to generate full-text index. The script like:

CREATE FULLTEXT INDEX ON [dbo].[MyTable](
[ID] LANGUAGE [English], 
[Name] LANGUAGE [English], 
...
KEY INDEX [MyTable_PK]ON ([AMSFullTextSearchCatalog], FILEGROUP [PRIMARY])
WITH (CHANGE_TRACKING = AUTO, STOPLIST = SYSTEM)
GO

Then I try to run this script and got error said:

Msg 102, Level 15, State 1, Line 11
Incorrect syntax near '='.

Not sure why. How to fix it?

link|improve this question

46% accept rate
1  
Can you show the whole query please – Abe Miessler Oct 19 '11 at 16:08
feedback

1 Answer

Try replacing this line:

WITH (CHANGE_TRACKING = AUTO, STOPLIST = SYSTEM)

with this:

WITH STOPLIST = SYSTEM , CHANGE_TRACKING AUTO

This is the syntax they use on MSDN's documentation

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.