microsoft newsgroup web access
     dot net    |    ms sql    |    ms access    |    office    |    windows    |   
Microsoft ms sql group
sqlserver.ce
sqlserver.clients
sqlserver.clustering
sqlserver.connect
sqlserver.datawarehouse
sqlserver.dts
sqlserver.fulltext
sqlserver.msde
sqlserver.mseq
sqlserver.notificationsvcs
sqlserver.odbc
sqlserver.olap
sqlserver.programming
sqlserver.replication
sqlserver.reportingsvcs
sqlserver.security
sqlserver.server
sqlserver.setup
sqlserver.tools
sqlserver.xml
  
    

FullText Search data model for speed



Which method is faster for full-text search
One row big varchar field
comment VARCHAR(1000)

on lots of small varchar fieds
like 10 rows comment VARCHAR(100)

--
Message posted via http://www.sqlmonster.com

Thu, 13 Jan 2005 15:47:51 GMT "Kuido K?lm via SQLMonster.com"

Re: FullText Search data model for speed



Kuido,
Could you post the full output of the below SQL code as this is very helpful
to understanding your environment as well as troubleshooting SQL FTS issues
as both SQL Server version and the OS platform play a part in FTS
performance tuning:

use
SELECT @@version
SELECT @@language
SELECT count(*) from

The biggest factor in both FT Indexing and FT Searching is the number of
rows in your FT-enable table. Specifically, for a table with one row of
large text will be just as fast as 10 rows with smaller text. Furthermore,
in this situation (1 row table vs. 10 row table), T-SQL LIKE will be faster
as with very small tables all the rows will fit in one or a couple of data
pages, while t

Thu, 13 Jan 2005 08:01:26 -0800 "John Kane"

Re: FullText Search data model for speed



SQL FTS query performance is most sensitive to the number of rows returned
in a query. So if you can limit the number of rows returned you will get
better performance. So 1 big varchar field would probably offer better
performance.

However if you can partition your table into sub tables, you will get even
better performance this way as long as you are only doing a single hit on
MSSearch.

--
Hilary Cotter
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html
"Kuido K?lm via SQLMonster.com" wrote in message
news:35824a78f71441eda1460869a906ea07@SQLMonster.com...
> Which method is faster for full-text search
> One row big varchar field
> comment VARCHAR(1000)
>
> on lots of small varchar fieds
> like 10 rows comment VARCHAR(100)
>
> --
> Message posted via http://www.sqlmonster.com




Thu, 13 Jan 2005 10:53:19 -0500 "Hilary Cotter"

Re: FullText Search data model for speed



I'm just planning database application

SQL-server will be Microsoft SQL Server 2000

Language - eesti (Estonian)

and there will be 15 000 000 rows in database

--
Message posted via http://www.sqlmonster.com220 14081 <677e90c6408e4927ad6a290c05d61745@SQLMonster.com>
From: "Kuido K?lm via SQLMonster.com"
Subject: Re: FullText Search data model for speed
Date: Fri, 14 Jan 2005 08:56:38 GMT
References: <35824a78f71441eda1460869a906ea07@SQLMonster.com>
Organization: http://www.SQLMonster.com
Message-ID: <677e90c6408e4927ad6a290c05d61745@SQLMonster.com>
X-Abuse-Report: http://www.SQLMonster.com/Uwe/NB/Abuse.aspx
Newsgroups: micro

Fri, 14 Jan 2005 08:56:38 GMT "Kuido K?lm via SQLMonster.com"

Re: FullText Search data model for speed



Kuido,
Then you should review all the SQL FTS links and resources at:
http://spaces.msn.com/members/jtkane/Blog/cns!1pWDBCiDX1uvH5ATJmNCVLPQ!305.entry

You should also review SQL Server 2000 Books Online (BOL) and using the
search tab, search on "full text" (with the double quotes) and especially
the BOL title: "Full-text Search Recommendations". Additional, since your
language will be Estonian, you will need to use the "neutral wordbreaker" as
Estonian is not one of the subset of languages supported by SQL FTS.
Specifically, for each of your FT-enabled columns, set the "Language for
Word Breaker" to Neutral.

Regards,
John
--
SQL Full Text Search B

Fri, 14 Jan 2005 07:03:38 -0800 "John Kane"


COPYRIGHT © 2004, EUROFRONT WORLDWIDE LTD., ALL RIGHT RESERVE
http://www.meetholland.com

advertisement:   complete list of microsoft newsgroup    |    uk based newsgroup    |