Wrox Programmer Forums
Go Back   Wrox Programmer Forums > SQL Server > SQL Server 2000 > SQL Server 2000
|
SQL Server 2000 General discussion of Microsoft SQL Server -- for topics that don't fit in one of the more specific SQL Server forums. version 2000 only. There's a new forum for SQL Server 2005.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the SQL Server 2000 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old February 23rd, 2005, 03:06 AM
Registered User
 
Join Date: Feb 2005
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to jdebelen Send a message via Yahoo to jdebelen
Default "New Full-text Catalog" Disabled

Hi, I'm using SQL Server Enterprise Manager. I want to create a full-text catalog, but it seems that it is disabled. I right clicked on "Full-Text Catalogs" and could not click on "New Full-Text Catalog". Aside from this, here are the other options that are currently disabled:


     1. Rebuild All Catalogs
     2. Repopulate All Catalogs
     3. Remove All Catalogs


Please help. How can I enable these features?
I am currently using:


     Microsoft Management Console 1.2
     Version 5.0 (Build 2195: Service Pack 4)





 
Old February 23rd, 2005, 11:51 PM
Friend of Wrox
 
Join Date: Nov 2003
Posts: 625
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to jemacc
Default

To disable full text catalog
Code:
USE your database name
EXEC sp_fulltext_database 'disable'
To enable full text catalog
Code:
USE your databasename 
EXEC sp_fulltext_database 'disable'
Jaime E. Maccou
 
Old February 24th, 2005, 02:19 AM
Registered User
 
Join Date: Feb 2005
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to jdebelen Send a message via Yahoo to jdebelen
Default

But how do I enable/disable using Enterprise Manager?

 
Old February 24th, 2005, 06:53 AM
Friend of Wrox
 
Join Date: Nov 2003
Posts: 625
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to jemacc
Default

sorry for the error


--------------------------------------------------------------------------------

To disable full text catalog

USE your database name ]-- This is the name of your Database
EXEC sp_fulltext_database 'disable'


To enable full text catalog

USE your database name -- This is the name of your Database
EXEC sp_fulltext_database 'enable'

execute the statement using Query Analyzer

Jaime E. Maccou





Similar Threads
Thread Thread Starter Forum Replies Last Post
Full Text timing out coww_pie SQL Server 2005 1 October 29th, 2007 11:47 PM
how to enable full text indexing sharvari_mothe SQL Language 1 July 3rd, 2007 09:32 PM
Full text Search problem aldwinenriquez SQL Server 2005 0 February 21st, 2006 10:51 PM
FULL TEXT SEARCH PROBLEM jadoger SQL Server 2000 0 July 13th, 2004 03:46 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.