Re: Find out which table columns are included



Hi Alan

I usually enable fulltext indexing on a table with the following
template:

USE MyDatabase
EXEC sp_fulltext_database 'enable'
EXEC sp_fulltext_catalog 'MyTable_Fulltext', 'create'
EXEC sp_help_fulltext_catalogs 'MyTable_Fulltext'
EXEC sp_fulltext_table 'MyTable', 'create', 'MyTable_Fulltext',
'MyTable_PK'
EXEC sp_fulltext_column 'MyTable', 'MyBinaryColumn', 'add', 0,
'MyFilenameColumn'
EXEC sp_fulltext_column 'MyTable', 'MyTextColumn1', 'add', 0
EXEC sp_fulltext_column 'MyTable', 'MyTextColumn2', 'add', 0
EXEC sp_fulltext_column 'MyTable', 'MyTextColumn3', 'add', 0

(note: google will wrap lines 5 & 6)

Using this, it's up to you to specify which columns are indexed.

Jack

.



Relevant Pages

  • Re: Find out which table columns are included
    ... Are there any messages in your event log from MSSCI or MSSearch or any ... RelevantNOISE.Com - Dedicated to mining blogs for business intelligence. ... EXEC sp_fulltext_column 'employee','fname','add', 0 ... I usually enable fulltext indexing on a table with the following ...
    (microsoft.public.sqlserver.fulltext)
  • Re: Find out which table columns are included
    ... Use Pubs ... EXEC sp_fulltext_column 'employee','fname','add', 0 ... I usually enable fulltext indexing on a table with the following ... it's up to you to specify which columns are indexed. ...
    (microsoft.public.sqlserver.fulltext)
  • My Addin isnt working... sorta
    ... I started with a template that uses a bunch of interesting stuff to populate ... w/an ini class to read an ini file and match the doc template name with ... nothing if there isn't a match so that my code doesnt exec for any other doc ... This is our first merge project using multiple addins and merging data ...
    (microsoft.public.word.vba.general)
  • Re: Letter Template
    ... Dave Kendall ... Your GSL or Exec should be able to supply you with this template as it ...
    (uk.rec.scouting)
  • Re: New User error...
    ... EXEC sp_addlogin 'MyLogin', 'Mypassword' ... USE MyDatabase ... --Windows authentication ...
    (microsoft.public.sqlserver.programming)