Re: No more indexing on text



do a select distinct std_indexing_type from Files

Check to make sure that you have an ifilter for each extension listed.

--
Hilary Cotter

Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html

Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com



"Larry Brown" <lbrown@xxxxxxx> wrote in message
news:%23Nr3wHFTHHA.4764@xxxxxxxxxxxxxxxxxxxxxxx
Hello,

I store text files into an SQL Express DB, in a varbinary field.

I have change the naming of some columns in my indexed DB, and I have
changed the indexed column: now, I have two varbinary(max) columns in my
table, one is indexed but not the other. All my files are text.

It appears that none of my files are indexed.Here is what I see in the
logs:
2007-02-09 14:38:02.74 spid21s Informational: Full-text Full
population initialized for table or indexed view
'[IndexingDB].[dbo].[Files]' (table or indexed view ID '37575172',
database ID '7'). Population sub-tasks: 1.
2007-02-09 14:38:15.44 spid21s Warning: No appropriate filter was
found during full-text index population for table or indexed view
'[IndexingDB].[dbo].[Files]' (table or indexed view ID '7', database ID
'37575172'), full-text key value 0x00016B0C. Some columns of the row were
not indexed.
2007-02-09 14:38:15.44 spid21s Warning: No appropriate filter was
found during full-text index population for table or indexed view
'[IndexingDB].[dbo].[Files]' (table or indexed view ID '7', database ID
'37575172'), full-text key value 0x00016B0D. Some columns of the row were
not indexed.
2007-02-09 14:38:15.44 spid21s Warning: No appropriate filter was
found during full-text index population for table or indexed view
'[IndexingDB].[dbo].[Files]' (table or indexed view ID '7', database ID
'37575172'), full-text key value 0x00016B0E. Some columns of the row were
not indexed.
2007-02-09 14:38:15.44 spid21s Informational: Full-text Full
population completed for table or indexed view
'[IndexingDB].[dbo].[Files]' (table or indexed view ID '37575172',
database ID '7'). Number of documents processed: 3. Number of documents
failed: 0. Number of documents need retry: 0.
2007-02-09 14:38:15.46 spid21s Changing the status to MERGE for
full-text catalog "CmpArchivorCat" (41) in database "IndexingDB" (7). This
is an informational message only. No user action is required.
2007-02-09 14:38:15.47 spid24s Informational: Full-text Auto
population initialized for table or indexed view
'[IndexingDB].[dbo].[Files]' (table or indexed view ID '37575172',
database ID '7'). Population sub-tasks: 1.

Here is the stored procedure I used to re-initialize my indexing:
exec sp_fulltext_table 'Files', 'drop'

drop index ui_ftindex on dbo.Files

DROP FULLTEXT CATALOG CmpArchivorCat

exec sp_fulltext_catalog 'CmpArchivorCat', 'create'

CREATE UNIQUE INDEX ui_ftindex ON dbo.Files(file_pk)

CREATE FULLTEXT INDEX ON Files
(file_text TYPE COLUMN std_indexing_type
LANGUAGE 0x0)
KEY INDEX ui_ftindex
ON CmpArchivorCat
WITH
CHANGE_TRACKING AUTO

exec sp_fulltext_service 'load_os_resources', 1;

exec sp_fulltext_service 'verify_signature', 0;

exec sp_fulltext_catalog 'CmpArchivorCat', 'start_full'

I was able to index files from all types in the same DB, but since I've
done my few changes, I can't get anything to work again. I have tried with
both text/plain and text/html in my file type column.

Please help!




.



Relevant Pages

  • No more indexing on text
    ... during full-text index population for table or indexed view ... DROP FULLTEXT CATALOG CmpArchivorCat ... exec sp_fulltext_catalog 'CmpArchivorCat', 'create' ... text/plain and text/html in my file type column. ...
    (microsoft.public.sqlserver.fulltext)
  • Re: No more indexing on text
    ... I store text files into an SQL Express DB, in a varbinary field. ... DROP FULLTEXT CATALOG CmpArchivorCat ... exec sp_fulltext_catalog 'CmpArchivorCat', 'create' ... with both text/plain and text/html in my file type column. ...
    (microsoft.public.sqlserver.fulltext)
  • Re: Running a DTS Job from a stored procedure
    ... We are running SQL Server 2000. ... -- Create a Pkg Object ... EXEC sp_DisplayOAErrorInfo @oPKG, @hr ...
    (microsoft.public.sqlserver.dts)
  • Re: Error 21776: After creating new login
    ... EXEC DATA0003.dbo.sp_addlogin 'test','pwd' ... > another SQL Server session is not visible to the SQL-DMO session. ... > Jasper Smith ... >> Users collection. ...
    (microsoft.public.sqlserver.security)
  • Re: Auto truncate a string to be inserted to SQL table
    ... EXEC p --Warning was not returned ... Tibor Karaszi, SQL Server MVP ... >> Tibor Karaszi, SQL Server MVP ... >>> message is given...i might need to just truncate the string without halting>>> the process... ...
    (microsoft.public.sqlserver.programming)