Possible Duplicate:
Storing Images in DB - Yea or Nay?
In terms of performance, scalability, etc.
Possible Duplicate:
Storing Images in DB - Yea or Nay?
In terms of performance, scalability, etc.
Don't save to the DB. You will regret it.
The file system is the best place for storing binary files. It's built to do it.
I've had my fingers burned before, writing a CMS system that stored files in the DB. The result was:
Generally speaking, manipulating binary files on the file system is easy. Using DB tools like SSMS, it's a nightmare.