Hi,
I have MS SQL2008 R2 and am trying to implement full-text search on a PDF BLOB.
I have followed this thread :
And so far have the Adobe iFilter installed.
However, when I try to create a full-text index with...
I get this error
FileData is a VARBINARY(MAX) column and stores BLOBs of PDF's which is the whole point isn't it?
What am I doing wrong?
Thanks,
1DMF
"In complete darkness we are all the same, it is only our knowledge and wisdom that separates us, don't let your eyes deceive you."
"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!"
Free Electronic Dance Music
I have MS SQL2008 R2 and am trying to implement full-text search on a PDF BLOB.
I have followed this thread :
And so far have the Adobe iFilter installed.
However, when I try to create a full-text index with...
Code:
CREATE FULLTEXT INDEX ON Compliance_Updates
(
FileDesc
Language 1033,
FileData
TYPE COLUMN FileData
Language 1033
)
KEY INDEX PK_Compliance_Updates
ON Compliance_Updates_Catalog;
GO
I get this error
Column 'FileData' cannot be used as full-text type column for image column. It must be a character-based column with a size less or equal than 260 characters.
FileData is a VARBINARY(MAX) column and stores BLOBs of PDF's which is the whole point isn't it?
What am I doing wrong?
Thanks,
1DMF
"In complete darkness we are all the same, it is only our knowledge and wisdom that separates us, don't let your eyes deceive you."
"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!"
Free Electronic Dance Music