all groups > sql server full text search > june 2003 >
You're in the

sql server full text search

group:

Can't create full text catalog in one database


Can't create full text catalog in one database google NO[at]SPAM alansilver.co.uk
6/30/2003 9:25:57 AM
sql server full text search:
Hello,

I have an SQL Server (7 SP2) running several databases with full text
indexed tables. One of the full text catalogs seems to have been lost
and I can't rebuild it.

I tried using QA and entering ...

EXEC sp_fulltext_database 'enable'
exec sp_fulltext_catalog N'Products_FullTextIndex', N'create'
exec sp_fulltext_table N'[dbo].[products]', N'create',
N'Products_FullTextIndex', N'PK_products'
exec sp_fulltext_column N'[dbo].[products]', N'pname', N'add'
exec sp_fulltext_column N'[dbo].[products]', N'description', N'add'
exec sp_fulltext_table N'[dbo].[products]', N'activate'
EXEC sp_fulltext_catalog 'Products_FullTextIndex', 'start_full'

but I got the following error ...

Server: Msg 7605, Level 17, State 2, Procedure sp_fulltext_database,
Line 63
Full-text catalog '' has been lost. Use sp_fulltext_catalog to rebuild
and to repopulate this full-text catalog.

Whatever I do, I get this error. I have tried running just the first
two lines, but the same thing happens. If I run only the first line,
it gives the same error, if I run just the second line, it gives ...

Server: Msg 15601, Level 16, State 1, Line 1
Fulltext Search is not enabled for the current database. Use
sp_fulltext_database to enable full-text search.

Seems I am stuck here. Whatever I do, I get an error.

I tried creating the catalog using EM, but got the first error message
as soon as I tried to create it. I can't see what to do. It tells me
to run sp_fulltext_catalog, but when I do it tells me I can't run it
!!

Any help very much appreciated. As I said, several other databases on
the server have free text catalogues and are working fine.

If possible, please send a copy of any replies to me as my news server
doesn't carry this group, so I am having to access it via Google,
which is a pain. I don't always notice replies this way.

Re: Can't create full text catalog in one database ashman666
7/10/2003 6:16:13 PM

under the folder Full Text Catalog you'll all catalogs. Right click on
the one which is 'lost' and choose rebuild. After that you should be
able to delete the full text indexing.

Hope this works for you

--
AddThis Social Bookmark Button