Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion Groups
DB Engine
SQL ServerMSDESQL Server CE
Services
Analysis (Data Mining)Analysis (OLAP)DTSIntegration ServicesNotification ServicesReporting Services
Programming
CLRConnectivitySQLXML
Other Technologies
ClusteringEnglish QueryFull-Text SearchReplicationService Broker
General
Data WarehousingPerformanceSecuritySetupSQL Server ToolsOther SQL Server Topics
DirectoryUser Groups
Related Topics
MS AccessOther DB ProductsMS Server Products.NET DevelopmentVB DevelopmentJava DevelopmentMore Topics ...

SQL Server Forum / Other Technologies / Full-Text Search / February 2005

Tip: Looking for answers? Try searching our database.

Implementing Incremental Population

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Mark Holahan - 25 Feb 2005 17:21 GMT
Hi,

I'd like to implement incremental population for a given table.

I don't understand if I need to use both "sp_fulltext_catalog" and "sp_fulltext_table" to accomplish this task. BOL is a bit nebulous in their explanation.

"sp_fulltext_catalog" has an @action value of "start_incremental"; "sp_fulltext_table" has an @action value of "start_change_tracking" and "start_background_updateindex"

Do I need to use all of these in a certain sequence?

Thanks.

Signature

--
Mark Holahan

Hilary Cotter - 25 Feb 2005 18:10 GMT
No, the start_incremental will be sufficient.

keep in mind that the first time you do an incremental population a full population will be done. Also keep in mind that you need a timestamp column on your table otherwise a full population will always be done.

Also keep in mind that change tracking with update index in background will probably offer the best performance for you as with it only the new or modified rows are indexed. With both a full and incremental population every row is extracted from the tables you are FTI'ing.

Signature

Hilary Cotter
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html

Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com

 Hi,

 I'd like to implement incremental population for a given table.

 I don't understand if I need to use both "sp_fulltext_catalog" and "sp_fulltext_table" to accomplish this task. BOL is a bit nebulous in their explanation.

 "sp_fulltext_catalog" has an @action value of "start_incremental"; "sp_fulltext_table" has an @action value of "start_change_tracking" and "start_background_updateindex"

 Do I need to use all of these in a certain sequence?

 Thanks.

 --
 --
 Mark Holahan
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2009 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.