Enable Fulltext gives Timeout...any ideas why?

  • Any idea why this would give a timeout?

    declare @catalog_exists int;

    SELECT @catalog_exists = isnull(fulltextcatalogproperty('My fulltext', 'ItemCount'),-1);

    if @catalog_exists = -1 begin

    exec sp_fulltext_database 'enable';

    exec sp_fulltext_catalog 'My fulltext', 'Create';

    end;

    THANK YOU!

  • While it is running, run the procedure sp_who2 and make sure no processes are blocking it.

    DDL changes can get blocked by other processes pretty easily.

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

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