June 13, 2000 10:39 AM
Sample Full-Text Search Engine
Rating:

(0)
SQL Server Magazine
InstantDoc ID #8967
Suppose you want a table to hold all content for your dynamically populated Web site. In the following example, I'll create a simple SQL Server table and a full-text search engine to run against it. Following is the content table:
Create table content (
Pagename varchar(20) not null primary key,
URL archar(30) not null,
Description text null,
Keywords varchar(4000) null)
In...
You must be a paid Professional Member to access this entire article.
Already a Professional Member? Please log in now: