This appears to be windows 2000. Can do any operations through tsql, such as
creating a table.
Can you try this for me
create database fulltextest
GO
use fulltextest
GO
sp_fulltext_database 'enable'
GO
create table fulltext
(pk int not null identity constraint pk primary key,
charcol char (20))
GO
sp_fulltext_catalog 'test','create'
GO
sp_fulltext_table 'fulltext', 'create', 'test','pk'
GO
sp_fulltext_column 'fulltext','charcol','add'
GO
sp_fulltext_table 'fulltext','start_full'
GO

Signature
Hilary Cotter
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html
Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com
>> can you create your catalog or fulltext indexes through the wizard?
>
> No. The wizard terminates after this error message appears.
Andrew - 27 Dec 2005 22:57 GMT
> This appears to be windows 2000. Can do any operations through tsql, such as
> creating a table.
>
> Can you try this for me
>
> create database fulltextest
The first step that broke was the one with sp_fulltext_database 'enable'. I
worked it out with a Microsoft support engineer, though.
Cammie Watson - 06 Mar 2006 14:52 GMT
Andrew,
Can you let us know how you resolved this as we are geting exactlythe same
problems.
Cammie
> > This appears to be windows 2000. Can do any operations through tsql, such as
> > creating a table.
[quoted text clipped - 5 lines]
> The first step that broke was the one with sp_fulltext_database 'enable'. I
> worked it out with a Microsoft support engineer, though.