scarpacci
scarpacci

Reputation: 9194

SQL Server PDF Full-Text Search not working on FileStream PDF File

I cannot get the Full-Text search to work on PDF files I am loading into my SQL Db via FileStream.

Version: SQL Server 2008 R2 (Developer Edition - doing proof of concept) OS: Windows 7

Steps I have taken.

Doesn't return any results for PDF, but works fine for word (docx)?

What am I doing wrong?

Upvotes: 9

Views: 7272

Answers (1)

scarpacci
scarpacci

Reputation: 9194

Ok so I figured it out....I needed to run these steps:

EXEC sp_fulltext_service @action='load_os_resources', @value=1; -- update os resources 
EXEC sp_fulltext_service 'verify_signature', 0 -- don't verify signatures 
EXEC sp_fulltext_service 'update_languages'; -- update language list 
EXEC sp_fulltext_service 'restart_all_fdhosts'; -- restart daemon 
EXEC sp_help_fulltext_system_components 'filter'; -- view active filters

But Also needed to run this!!!!

reconfigure with override

Upvotes: 5

Related Questions