Searching Binary data from sql server 2005

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • renjucool
    New Member
    • Jun 2007
    • 15

    Searching Binary data from sql server 2005

    hi,

    i am working electronic document management system store documents word excel adobe in database in binary format in sql server 2005.
    i want to search the contents from the binary data.I am storing word documents in binary format in sql server table...how to search the contents inside the word document.What will b the search query

    Renjur
    Kochi
  • Motoma
    Recognized Expert Specialist
    • Jan 2007
    • 3236

    #2
    Originally posted by renjucool
    hi,

    i am working electronic document management system store documents word excel adobe in database in binary format in sql server 2005.
    i want to search the contents from the binary data.I am storing word documents in binary format in sql server table...how to search the contents inside the word document.What will b the search query

    Renjur
    Kochi
    I do not know much about the Word document format, but I believe PDFs contain zipped XML.You should probably look up the .doc format and figure out how the data is stored to see if it is viable to search the binary data. A better bet would be to store keywords and phrases in the database as well, and perform searches on those, mapping back to the original documents.

    Comment

    • dadvir
      New Member
      • Jul 2007
      • 1

      #3
      Originally posted by renjucool
      hi,

      i am working electronic document management system store documents word excel adobe in database in binary format in sql server 2005.
      i want to search the contents from the binary data.I am storing word documents in binary format in sql server table...how to search the contents inside the word document.What will b the search query

      Renjur
      Kochi
      Have you managed to solve this? please let me know.

      Comment

      • renjucool
        New Member
        • Jun 2007
        • 15

        #4
        Originally posted by dadvir
        Have you managed to solve this? please let me know.

        I solved it my using SQL SERVER FULL TEXT SEARCH METHOD and using ifilters....can search any type of documents contents

        Comment

        Working...