all groups > sql server full text search > august 2005 >
You're in the

sql server full text search

group:

Server: Msg 2526, Level 16, State 3, Procedure sp_fulltext_table,



Server: Msg 2526, Level 16, State 3, Procedure sp_fulltext_table, Support
8/17/2005 6:08:27 AM
sql server full text search: Hello:
running SQL2000 SP3 (8.00.818)
first
1) when we upgraded our hardware, ie,rebuilt SQL on a new machine, we
noticed several system stored procedures were missing, including,
master..sp_fulltext_table
--I found a copy on our test machine and transfered it to production server
where it is now seen as dbo owner but not a system table rather a user
table....
2) when running...

EXEC sp_fulltext_table 'DOC', 'create', 'DOC', 'indx_intDOCunid'I get
Server: Msg 2526, Level 16, State 3, Procedure sp_fulltext_table, Line 122
Incorrect DBCC statement. Check the documentation for the correct DBCC
syntax and options.

... which is:
-- ADD TO CATALOG
DBCC CALLFULLTEXT ( 5, @ftcatid, @objid ) -- FTAddURL( @ftcatid, db_id(),
@objid )

QUESTION: how do I get out of this mess.
Thanks
Re: Server: Msg 2526, Level 16, State 3, Procedure sp_fulltext_table, John Kane
8/17/2005 7:39:50 AM
Terry,
How did you "rebuild" SQL on the new machine? Did you install it from the
SQL Server CD or install it as a disk image?
You should NEVER be missing "several" or any system stored proc's, some that
call internal system extended system procs that are in fact dll's and need
to be registered on your new machine. DBCC CALLFULLTEXT is one such internal
system stored proc and if this is not working correctly, then all of your
Full-text Search (FTS) functionality is suspect.

As how to get out if this mess... That would depend upon the level of
missing stored procs, if it is just MSSearch / FTS, you can use the
procedures in the following KB article to manually re-install FTS /
MSSearch:


827449 How to manually reinstall the Microsoft Search service for an
instance of SQL 2000
http://support.microsoft.com/default.aspx?scid=kb;EN-US;827449

Hope that helps!
John
--
SQL Full Text Search Blog
http://spaces.msn.com/members/jtkane/



[quoted text, click to view]

Re: Server: Msg 2526, Level 16, State 3, Procedure sp_fulltext_tab Support
8/17/2005 10:18:05 AM
John:
Thanks
we installed SQL from scratch and applied all the service packs and then ran
the "Copy Database Wizard"
So far, we have missed:

master..sp_addrole
master..sp_fullText_Table
master..sp_grantdbaccess

I will read the article.
Thanks
[quoted text, click to view]
Re: Server: Msg 2526, Level 16, State 3, Procedure sp_fulltext_table, Hilary Cotter
8/17/2005 11:12:08 AM
There have been cases where for some reason the service pack is incompletely
applied, but the upgrade process appears to complete successfully.

I would advise you to reapply the SP and watch to see if this proc is now
marked as a system object. This should indicate successful application.

--
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
[quoted text, click to view]

Re: Server: Msg 2526, Level 16, State 3, Procedure sp_fulltext_tab John Kane
8/17/2005 10:00:23 PM
You're welcome, Terry,
What you may be able to do is to use "ProcSyst.SQL" (in the \MSSQL\Install\
folder) and search for each of the below system stored procs and copy out
the code that creates these systems stored procs and create them
individually.

A service pack does not re-install these system stored procs, at best they
may update them, but unless there is a fix for these procs, most SP's don't
re-create them. If this fails resolve this problem, you may have to remove &
re-install SQL Server and be sure to be logged on as Admin or as a member of
the machine's Administrators group.

Hope that helps!
John
--
SQL Full Text Search Blog
http://spaces.msn.com/members/jtkane/


[quoted text, click to view]

AddThis Social Bookmark Button