Cannot Rebuild full text catalog in SQL SERVER 2000

  • Hi ,

    Can anyone help, am trying to Rebuild full text catalog in sql server 2000 Enterprise Manager, but its giving error message because its pointing to a different path T:drive, which need to be changed to S:drive.

    The database was attached from a server on the T:drive to another server on an S:drive, so it seems to be hardcoded on T, hence we cannot do rebuild the full text search, neither can it be deleted.

  • Now fixed, we used the Stored Procedures below, executed them separately in query analyzer:

    **//Make sure you execute these scripts separately

    --1)

    sp_configure 'allow update', '1'

    RECONFIGURE WITH OVERRIDE

    --2)

    update sysfulltextcatalogs set path='S:\Text'

    --3)

    sp_configure 'allow update', '0'

    RECONFIGURE WITH OVERRIDE

Viewing 2 posts - 1 through 1 (of 1 total)

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