Click here to Skip to main content
15,889,462 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Why blob (datatype) in SQLServer 2005 takes time for fetching data from database? and how to reduce the time?
Posted

BLOB will take time to get data as this is generally a huge amount of data ( a picture, a pdf or something similar).
You cannot reduce time on the actual fetching of the BLOB - a faster network or table structure optimization may help you - but this has nothing to do with the BLOB object per-se.
 
Share this answer
 
Because it is a lot of data?

Use smaller data when you write it to the database.

Alternatively, you need to look at where it is slow: It could be at the server end (unlikely, unless your database design is complete rubbish), in the transfer itself (possible, it depends on the connections and speeds involved) or in the query itself (quite likely, but without the relevant code fragment it is impossible to tell).
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900