 |
|
 |
|
Next: SQLCMD can't connect to SQL Server Express SP2
|
| Author |
Message |
External

Since: Dec 03, 2007 Posts: 8
|
(Msg. 1) Posted: Thu Jan 24, 2008 7:21 am
Post subject: Unable to "enable" full text catalog creation - please help... Archived from groups: microsoft>public>sqlserver>fulltext (more info?)
|
|
|
Hi,
Hope u can help me with this one. I'm running SQL Server 2000.
I try to build a full text catalog by running:
sp_fulltext_catalog 'Cat_Desc', 'create'
but I get the following error message:
Server: Msg 15601, Level 16, State 1, Procedure sp_fulltext_catalog,
Line 17
Full-Text Search is not enabled for the current database. Use
sp_fulltext_database to enable Full-Text Search.
so I try to enable it by running the following command:
EXEC sp_fulltext_database 'enable'
but I get the following error message:
(1 row(s) affected)
(0 row(s) affected)
Server: Msg 7619, Level 16, State 2, Procedure sp_fulltext_database,
Line 61
The specified object cannot be found. Specify the name of an existing
object.
Yes, full text indexing is installed. I run the following command:
SELECT fulltextserviceproperty('IsFulltextInstalled')
and get the following as a result:
1
More Details:
1. SQL Server Version = Microsoft SQL Server 2000 - 8.00.194 (Intel
X86) Aug 6 2000 00:57:48 Copyright (c) 1988-2000 Microsoft
Corporation Standard Edition on Windows NT 5.0 (Build 2195: Service
Pack 4)
2. Server = MS Windows 2000 5.00.2195 Severice Pack 4
3. DB Owner = sa
4. I'm in as user: dbo. I determine this by running: SELECT
USER_NAME()
5. DB is runnign under user: LocalSystem. I determine this by running
the following command:
DECLARE @serviceaccount varchar(100)
EXECUTE master.dbo.xp_instance_regread
N'HKEY_LOCAL_MACHINE',
N'SYSTEM\CurrentControlSet\Services\MSSQLSERVER',
N'ObjectName',
@ServiceAccount OUTPUT,
N'no_output'
SELECT @Serviceaccount
Any suggestions/comments/ideas much appreciated...
Thanks,
Al. >> Stay informed about: Unable to ""enable"" full text catalog creation - please hel.. |
|
| Back to top |
|
 |  |
External

Since: Oct 09, 2005 Posts: 78
|
(Msg. 2) Posted: Fri Jan 25, 2008 5:04 am
Post subject: Re: Unable to "enable" full text catalog creation - please help... [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
can you try this;
sp_fulltext_service 'clean_up'
And then try again?
Is there any relevant history here? Did you restore this database from
another server?
On Jan 24, 10:21 am, "almu...@altavista.com"
wrote:
> Hi,
>
> Hope u can help me with this one. I'm running SQL Server 2000.
>
> I try to build a full text catalog by running:
>
> sp_fulltext_catalog 'Cat_Desc', 'create'
>
> but I get the following error message:
> Server: Msg 15601, Level 16, State 1, Procedure sp_fulltext_catalog,
> Line 17
> Full-Text Search is not enabled for the current database. Use
> sp_fulltext_database to enable Full-Text Search.
>
> so I try to enable it by running the following command:
>
> EXEC sp_fulltext_database 'enable'
>
> but I get the following error message:
>
> (1 row(s) affected)
> (0 row(s) affected)
> Server: Msg 7619, Level 16, State 2, Procedure sp_fulltext_database,
> Line 61
> The specified object cannot be found. Specify the name of an existing
> object.
>
> Yes, full text indexing is installed. I run the following command:
>
> SELECT fulltextserviceproperty('IsFulltextInstalled')
>
> and get the following as a result:
> 1
>
> More Details:
>
> 1. SQL Server Version = Microsoft SQL Server 2000 - 8.00.194 (Intel
> X86) Aug 6 2000 00:57:48 Copyright (c) 1988-2000 Microsoft
> Corporation Standard Edition on Windows NT 5.0 (Build 2195: Service
> Pack 4)
>
> 2. Server = MS Windows 2000 5.00.2195 Severice Pack 4
>
> 3. DB Owner = sa
>
> 4. I'm in as user: dbo. I determine this by running: SELECT
> USER_NAME()
>
> 5. DB is runnign under user: LocalSystem. I determine this by running
> the following command:
> DECLARE @serviceaccount varchar(100)
> EXECUTE master.dbo.xp_instance_regread
> N'HKEY_LOCAL_MACHINE',
> N'SYSTEM\CurrentControlSet\Services\MSSQLSERVER',
> N'ObjectName',
> @ServiceAccount OUTPUT,
> N'no_output'
> SELECT @Serviceaccount
>
> Any suggestions/comments/ideas much appreciated...
> Thanks,
> Al. >> Stay informed about: Unable to ""enable"" full text catalog creation - please hel.. |
|
| Back to top |
|
 |  |
| Related Topics: | Unable to create full-text catalog - please help! - Folks, Please help! I am unable to create a full-text catalogue. When I run the following command: sp_fulltext_catalog 'Cat_Desc', 'create', 'f:\VENUS_SQL_DAT\MSSQL \FTData' I get the following command: Server: Msg 7619, Level 16, State 2,..
How to enable full text search for symbols? - scenario: I have a user interface done in Coldfusion that access SQL server 2K store procedure on server 2003 that perform full text search on a field of a table. I have remove all content of noise.enu as user can use anything as a search index. Why...
How to enable an account to do a full-text search - I have a windows user account in SQL Server 2000 would like to use it to start MSSQLServer service and create a catalog in EM. But the status is always idle after several attempts of full population, how do I make it work?
Rebuilding Full Text Catalog - Hi, I have created a db install app that will install all datatables, build full-text catalogs and add job scheduler to populate the catalogs several times a day. However, I would also like my catalogs to be rebuilt every midnight and repopulated again...
sql 2000 full text catalog question - Hi all. I have two tables setup for full text indexing. If full text catalogs where created and are being populated once a week fully and incrementally every day. Would full text still work if Full - Text Search Engine is stopped? Thanks |
|
You can post new topics in this forum You can reply to topics in this forum You can edit your posts in this forum You can delete your posts in this forum You can vote in polls in this forum
|
|
|
|
 |
|
|