Full-Text Catalog will not populate

  • Hi,

    I have an NT4.0 server running SQL Server 7.0. When starting full population on a Full-Text Catalog I get "Population of full text catalog started successfully". Viewing properties shows the status as idle. Event viewer shows the message "Unable to start crawl on project <SQLServer SQL0001100005>. No start pages have been specified." I've tried stop/start of server and deleting the catalog and re-establishing it, only to get same error. I can't find any documentation of this error message. Any ideas?

  • Have you checked to see if the population is done? You can do this by running the following code:

    SELECT fulltextcatalogproperty(catalog_name, 'ItemCount')

    replace catalog_name with the name of your catalog. This code will return 1 if the population isn't finished yet and 0 if it is done. You can get more information on this by searching in BOL for 'FULLTEXTCATALOGPROPERTY'. Don't try to do any searches until the population is done.

    Diane

  • Disk permissions are ok where the catalog is created?

    Andy

    http://www.sqlservercentral.com/columnists/awarren/

  • I had reviewed the status of the population via exec sp_help_fulltext_catalogs 'VLArchiveFTI' and it showed a status of 0 (idle).

    Disk permissions were not a problem.

    The following steps have resolved the problem, although I'm not sure why or which of the steps is actually necesary:

    1. exec sp_fulltext_table 'tablename', 'drop'

    2. rebuild all standard table indexes.

    3. sp_fulltext_catalog 'catalog', 'drop'

    4. sp_fulltext_service 'Clean_Up' (this might be key here)

    5. rebuilt the fulltext indexing environment via Enterprise Manager(EM) Full Text Wizard.

    6. manually started population via EM. This time the status changed to 'Population in Progress' in the EM display. Population completed successfully.

Viewing 5 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic. Login to reply