I'm trying to indexing the word 'x++' in my fully indexed field, but I don't know how. I think the problem is that the '+' char is not included in indexing list chars.
Executing the query:
SELECT * FROM sys.dm_fts_index_keywords(DB_ID('my_db'), OBJECT_ID('my_table'))
I noticed that the work 'c++' is indexed, so I think there should be a way to ask my sqlserver to index specific word ('c++' is very similar to 'x++' ).
Thanks everybody in advance.