I am hoping this is not a repeat, but I created my index and need to include more columns from my table to the index. I have been searching around, however, the general response is to delete it and start over.
Is there any way to just alter the Full Text Index to include my new columns?
This is what I have been playing around with according to documentation:
USE [mydb]
GO
ALTER FULLTEXT INDEX ON [dbo].[output]
{
ADD ('col1', 'col2',' col3', 'col4', 'col5', 'col6') //Error is here
}
;
GO
The error I receive is : Msg 102, Level 15, State 1, Line 4 Incorrect syntax near '{'.