I've made a small demo site and are storing images in a image column in sql server. Is this a bad idea? Will it affect performance on my site when it grows? The alternative would be to store the image on disc and only store the reference to the image in the database. This must be a common dilemma many people have had. I'd welcome some advice and would actually be happy to make a mistake less if I could.
|
There's a really good paper by Microsoft Research called To Blob or Not To Blob. Their conclusion after a large number of performance tests and analysis is this:
If you decide to put your pictures into a SQL Server table, I would strongly recommend using a separate table for storing those pictures - do not store the employee photo in the employee table - keep them in a separate table. That way, the Employee table can stay lean and mean and very efficient, assuming you don't always need to select the employee photo, too, as part of your queries. For filegroups, check out Files and Filegroup Architecture for an intro. Basically, you would either create your database with a separate filegroup for large data structures right from the beginning, or add an additional filegroup later. Let's call it "LARGE_DATA". Now, whenever you have a new table to create which needs to store VARCHAR(MAX) or VARBINARY(MAX) columns, you can specify this file group for the large data:
Check out the MSDN intro on filegroups, and play around with it! |
||||
|
|
|
I would prefer to store the image in a directory then store reference to the image file in the DB. However if you do store the image in the db. You should partition your Database so the image column resides in a separate file. You can read more about using filegroups here http://msdn.microsoft.com/en-us/library/ms179316.aspx |
|||
|
|
|
I fell into this dilemma once, and researched quite a bit on google for opinions. What I found was that indeed many see saving images to disk better for larger images, while mySQL allows for easier access, specially from languages like PHP. I found a similar question MySQL BLOB vs File for Storing Small PNG Images? My final verdict was that for things such as a profile picture, just a small square image that needs to be there per user, mySQL would be better than storing a bunch of thumbs in the hdd, while for photo albums and things like that, folders/image files are better. Hope it helps Hope it helps. |
|||
|
|