1

I try to use blobs as little as possible. When possible I replace blobs by a link to a file. I can only think of a few times that I needed a blob. I used to put zipped pickled python objects in there, but I use mongo or couchdb these days for that. One thing I still use it for is to store wkb (gis) objects. This made me wonder, what do other people put in their blob fields?

SiggyF
  • 22,088
  • 8
  • 43
  • 57

3 Answers3

2

Whatever binary data needs to be stored - typically images & documents (Word, PDF).

OMG Ponies
  • 325,700
  • 82
  • 523
  • 502
1

BLOB accepts any data, all the items stored in the BLOB are stored in whole disk pages in separate disk areas from normal row data. Normally in a BLOB you can store any data generated by your program, images, graphics, video, audio or different types of documents.

PSK
  • 17,547
  • 5
  • 32
  • 43
1

They have disadvantages..., so tried to ignore them, especially now file-stream exists in SQL2008.

Community
  • 1
  • 1
Mr Shoubs
  • 14,629
  • 17
  • 68
  • 107