ASKER
CREATE TABLE dbo.Test (
ID int IDENTITY(1, 1) NOT NULL,
TextCol varchar(8000),
CONSTRAINT PK_Test_ID PRIMARY KEY CLUSTERED (ID)
)
-- create a catalogue for this table.
EXEC dbo.sp_fulltext_catalog 'TestCatalogue', 'create'
EXEC dbo.sp_fulltext_table 'dbo.Test', 'create', 'TestCatalogue', 'PK_Test_ID'
EXEC dbo.sp_fulltext_column 'dbo.Test', 'TextCol', 'add'
EXEC dbo.sp_fulltext_table 'dbo.Test', 'activate', NULL, NULL
EXEC dbo.sp_fulltext_catalog 'TestCatalogue', 'start_full'
DROP TABLE dbo.Test
ASKER
ASKER
ASKER
Microsoft SQL Server 2005 is a suite of relational database management system (RDBMS) products providing multi-user database access functionality.Component services include integration (SSIS), reporting (SSRS), analysis (SSAS), data quality, master data, T-SQL and performance tuning. It includes support for managing XML data and allows a database server to be exposed over web services using Tabular Data Stream (TDS) packets encapsulated within SOAP (protocol) requests.
TRUSTED BY
http://msdn.microsoft.com/en-us/library/ms189801.aspx - sp_fulltext_catalog
http://msdn.microsoft.com/en-us/library/ms187960.aspx - sp_fulltext_table
Sample below
Open in new window