contains(name,'" 三"')
will not find the row in database with column named "name" and " 三" is sure there,but will find ' 三一',' 三二' why
name column is sure in the fulltext category and data population is finished!
contains(name,'" 三"')
will not find the row in database with column named "name" and " 三" is sure there,but will find ' 三一',' 三二' why
name column is sure in the fulltext category and data population is finished!
Full Text Search Engine in Chinese Simplied
TDH
select * from Table1 where freetext (*, N' 三')
Urban Jiri
select objectproperty(OBJECT_ID(N'<table_name>'), 'TableFulltextItemCount')
use <your_database_name_here>
go
SELECT @@language
SELECT @@version
EXEC sp_help_fulltext_catalogs
EXEC sp_help_fulltext_tables
EXEC sp_help_fulltext_columns
EXEC sp_help <your_FT-enable_table_name_here>
go
Please, note the LCID values from sp_help_fulltext_columns for the FULLTEXT_LANGUAGE column
. This information should help identify what the problem is for your Full Text Search (FTS) enabled table.Thanks,
John
SQL Full Text Search Blog
http://spaces.msn.com/members/jtkane/
cfspc
-------------------
1 三 男
2 三一 男
3 三二 女
4 三四 女
I execute the T-SQL Statement : contains(name, '" 三"'),and the Result :
ID Name Sex
-------------------
2 三一 男
3 三二 女
4 三四 女
Why the Row named 三 is not in result?