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 / April 2005

Tip: Looking for answers? Try searching our database.

Sequence of Rebuild / Poupulate

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
wit1 - 24 Apr 2005 15:30 GMT
Can someone tell me which is better to say in QA:

Use Database
Go
EXEC sp_fulltext_catalog 'catalog_1', 'Rebuild'
EXEC sp_fulltext_catalog 'catalog_2', 'Rebuild'
EXEC sp_fulltext_catalog 'catalog_1', 'start_full'
EXEC sp_fulltext_catalog 'catalog_2', 'start_full'

Or to say
Use Database
Go
EXEC sp_fulltext_catalog 'catalog_1', 'Rebuild'
EXEC sp_fulltext_catalog 'catalog_1', 'start_full'
EXEC sp_fulltext_catalog 'catalog_2', 'Rebuild'
EXEC sp_fulltext_catalog 'catalog_2', 'start_full'

?
And Why

Thanks.
John Kane - 24 Apr 2005 22:16 GMT
Wit1,
While I've not tested this scenario, Rebuild deletes the FT Catalog &
re-creates it, but does not run a Full Population as start_full does
executes a Full Population. Start_full removes all entries, but does not
delete the FT Catalog, the difference between rebuild vs. start_full is akin
to DELETE vs. TRUNCATE for a SQL Server table. Basically, there is no need
to run a Rebuild prior to a start_full (unless you need to physically
deleted the FT Catalog files for some reason), and the best recommendation
is to only run the following:

use Database
go
EXEC sp_fulltext_catalog 'catalog_1', 'start_full'
EXEC sp_fulltext_catalog 'catalog_2', 'start_full'

Hope that helps,
John
Signature

SQL Full Text Search Blog
http://spaces.msn.com/members/jtkane/

> Can someone tell me which is better to say in QA:
>
[quoted text clipped - 17 lines]
>
> Thanks.
 
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.