Maystyle :
Admin : New post
Guestbook
Local
media
Catergories
Recent Articles
Recent Comments
Recent Trackbacks
Calendar
Tag
Archive
Link
Search
 
  fulltext_catalog 가 생성 되지 않을 경우 
작성일시 : 2007. 12. 29. 02:00 | 분류 : SQL Server/Administration

fulltext catalog를 사용하기 위해서는 해당 기능을 활성화 시켜야 합니다.
아래의 쿼리는 간단하게 해당 기능을 활성화 하는 것을 설명합니다.

관련 문서 : http://technet.microsoft.com/ko-kr/library/ms190321.aspx

[예제]

USE AdventureWorks;
GO
- 활성화 EXEC sp_fulltext_database 'enable'; GO
- 비 활성화



EXEC sp_fulltext_database 'disable';
GO
|