Emil,
The answer to your question for SQL Server 2000 (RTM to current SP3a) is no.
I've tested this with both an accent sensitive database and an accent
insensitive database collation using the same data and same server
configuration:
select TextCol, VarcharCol, CharCol from FTSAccent
/*
TextCol VarcharCol CharCol
----------------------- ------------------------- --------------------------
----
Kahlúa HalfPipe jam cafè cafe
Kahlua HalfPipe jam cafe cafe
Halfpipe Jam? classic-recipes CD-R
Halfpipe Jam classic recipes CD R
*/
-- Accent testing for "accent insensitive" results
select TextCol from FTSAccent where contains(TextCol,'Kahlua') --
non-accented word
-- Expected Returns: 2 rows - "Kahlua HalfPipe jam" and "Kahlúa HalfPipe
jam" as this database is accent-Insensitive
-- Actual Results : 1 row - "Kahlua HalfPipe jam"
select TextCol from FTSAccent where contains(TextCol,'Kahlúa') -- accented
word
-- Expected Returns: 2 rows - "Kahlua HalfPipe jam" and "Kahlúa HalfPipe
jam" as this database is accent-Insensitive
-- Actual Results : 1 row - "Kahlúa HalfPipe jam"
-- Accent specific testing for "accent sensitive" results...
select TextCol from FTSAccent where contains(TextCol,'Kahlua') --
non-accented word
-- Expected Returns: 1 row - "Kahlua HalfPipe jam" and NOT "Kahlúa HalfPipe
jam" as this database is accent-sensitive
-- Actual Results : 1 row - "Kahlua HalfPipe jam"
select TextCol from FTSAccent where contains(TextCol,'Kahlúa') -- accented
word
-- Expected Returns: 1 row - "Kahlúa HalfPipe jam" and NOT "Kahlua HalfPipe
jam" as this database is accent-sensitive
-- Actual Results : 1 row - "Kahlua HalfPipe jam"
As you can see the actual results differs from the expected results with
both accent sensitive and accent insensitive database collations and for the
accent insensitive database collation, only the accented or non-accented
search word was returned, but not both. This may or may not be fixed in a
future service pack for SQL Server 2000.
Additionally, for SQL Server 2005 (codename Yukon) will support accent
sensitive or insensitive fulltext search via new T-SQL:
CREATE FULLTEXT CATALOG fulltext_catalog_identifier ON FILEGROUP
filegroup_identifier
IN PATH <root path> WITH ACCENT SENSITIVE | INSENSITIVE AS DEFAULT
Regards,
John
[quoted text, click to view] "Emil Mustea" <emil@sonic.ro> wrote in message
news:OP22HkgKEHA.3392@TK2MSFTNGP10.phx.gbl...
> > It is not accent sensitive, or accent aware. searches on "acasã" will
not
> > match on row containing "acasa".
>
> So it's true: searches on "acasa" will return both "acasa" and
> "acasã".Correct?
>
>
> "Hilary Cotter" <hilaryk@att.net> wrote in message
> news:uZbXCiYKEHA.3316@tk2msftngp13.phx.gbl...
> > It is not accent sensitive, or accent aware. searches on "acasã" will
not
> > match on row containing "acasa".
> >
> > "Emil Mustea" <emil@sonic.ro> wrote in message
> > news:%239GG17WKEHA.2576@TK2MSFTNGP12.phx.gbl...
> > > Hi,
> > >
> > > I'm planning to store some romanian documents in SQL image. I
understand
> > > that I have to use neutral language.
> > > What I need to know if FTS is accent sensitive: some peoples writes
> > > "acasã"(means home), others simply "acasa".
> > > The query "acasa" returns "acasa" and "acasã" or only "acasa".
> > >
> > > Sorry for my bad english..
> > >
> > > Thank you.
> > >
> > > Best regards,
> > > Emil Mustea
> > >
> > >
> >
> >
>
>