the query SELECT 'language_id' AS "LCID" FROM sys.fulltext_index_columns; only returns the text 'language_id'instead it should be SELECT language_id AS "LCID" FROM sys.fulltext_index_columns; or even better SELECT language_id, column_id FROM sys.fulltext_index_columns;
↧