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!