Re: storing and searching office docs in SQL
From: Vishal Parkar (REMOVE_THIS_vgparkar_at_yahoo.co.in)
Date: 08/19/04
- Next message: Mark: "Re: username"
- Previous message: Bernie Yaeger: "Re: Using "Like" against an empty string '%%'"
- In reply to: aussie rules: "storing and searching office docs in SQL"
- Next in thread: John Kane: "Re: storing and searching office docs in SQL"
- Reply: John Kane: "Re: storing and searching office docs in SQL"
- Messages sorted by: [ date ] [ thread ]
Date: Thu, 19 Aug 2004 06:33:33 +0530
>> Can you store an office doc, like a word or excel document in a SQL
field,<<
you can store word documents using image datatypes in SQL Server, internally
sql server stores this data into binary format.
>> and then somehow search within the contents of the office document for
words.<<
Since content of the image datatype are binary in nature, you can not
straightaway search for the content of word document once you store them
image datatype.
all you can do is ,store documents in one column (image) and have another
column (text/varchar according to the size of the contents of the document)
column which will store the content of the word document (in pure text,
which will not have any kind of word fomatting). You can implement search
functionality in the document by running standard sql statement against this
column.
-- Vishal Parkar vgparkar@yahoo.co.in | vgparkar@hotmail.com
- Next message: Mark: "Re: username"
- Previous message: Bernie Yaeger: "Re: Using "Like" against an empty string '%%'"
- In reply to: aussie rules: "storing and searching office docs in SQL"
- Next in thread: John Kane: "Re: storing and searching office docs in SQL"
- Reply: John Kane: "Re: storing and searching office docs in SQL"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|