Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Development (2000)
 Searching a file stored as blob

Author  Topic 

gowrisankar
Starting Member

1 Post

Posted - 2005-11-17 : 00:57:11
Hi,

I stored my html file in the database as blob. I want to do search on the file content. Can anybody help me in solving the problem?

Thanks,
sankar

shallu1_gupta
Constraint Violating Yak Guru

394 Posts

Posted - 2005-11-17 : 01:03:26
Hi,
you can go through this link
http://www.microsoft.com/technet/prodtechnol/sql/2000/reskit/part3/c1161.mspx
Go to Top of Page

madhivanan
Premature Yak Congratulator

22864 Posts

Posted - 2005-11-17 : 01:20:31
I think it is easy to store only the path of the file than file itself so that you will be easily interact with the file using File system object in your presentation layer

Madhivanan

Failing to plan is Planning to fail
Go to Top of Page

Kristen
Test

22859 Posts

Posted - 2005-11-17 : 01:37:27
"http://sleeksoft.co.uk/public/techblog/articles/20051117_1.html"

TEXT or IMAGE?

For TEXT you can do SELECT * FROM myTable WHERE MyText LIKE '%keyword%'

Or you could use the Full Text tools in SQL Server

Kristen
Go to Top of Page
   

- Advertisement -