Michel
Дата: 16.01.2001 16:07:18
Народ, помогите пожалуйста, сабж !
после full population каталог остается пустым, хотя данных в таблице полно. neutral language установил в 1, не помогло :о(
Что делать, как быть ?
Artvs
Дата: 20.01.2001 01:24:48
--Find out if the database has been enabled for full-text processing by executing this statement:
SELECT DatabaseProperty ('Northwind', 'IsFulltextEnabled' )
go
-enable if no
sp_fulltext_database 'enable'
go
--Create a full-text catalog named NWCatalog, opting for the default directory, by executing this stored procedure:
sp_fulltext_catalog 'NWCatalog', 'create'
go
--Register table for full-text processing by executing this stored procedure once for each table:
sp_fulltext_table 'Employees', 'create', 'NWCatalog', 'PK_Employees'
-- specify the names of the columns that are to support full-text queries by executing this stored procedure once for each column:
sp_fulltext_column 'Employees', 'LastName', 'add'
--Create a full-text index for these tables by executing this stored procedure once for each table:
sp_fulltext_table 'Employees', 'activate'
--Start a full population of the NWCatalog full-text catalog by executing this stored procedure:
sp_fulltext_catalog 'NWCatalog', 'start_full'
--Verify the progress of the population of the NWCatalog full-text catalog by executing this statement:
SELECT FulltextCatalogProperty ( 'NWCatalog', 'PopulateStatus')
-- Check if the column enabled for fill-text search
SELECT ColumnProperty ( Object_Id('Employees'), 'LastName', 'IsFullTextIndexed' )
-- start gathering catalogue
sp_fulltext_catalog 'NWCatalog', 'start_incremental'
AlexD
Дата: 04.05.2001 12:58:38
Следует ли так понимать, что построить в SQL2000 full-text индексы в Enterprise Manager не судьба, а можно только
через исполнение скриптов?
AlexD
Дата: 04.05.2001 14:35:28
Молчит, как рыба об лед ;-(
Следую рекомендациям, приведенным выше, - Full population прошло подозрительно быстро,
но после start incremental наблюдается некоторая активность, жду.
Дело в том, что там довольно большой каталог должен быть ;-(
ЕМ ноль эмоций.
Проверка PopulationStatus возвращает 0