liptonIcedTea
Well-known member
- Joined
- Jan 18, 2007
- Messages
- 89
- Programming Experience
- 1-3
Hi,
I have SQL Server 2000, and I've been told that storing images or large clunks of data into your database is inefficient. Is this true?
I have some user uploaded custom images that I would like to display on a personalised website and I have two ways to store it.
(1) just in a table in my database
(2) in a file on a directory on my web server. This file is named after a GUID which is referenced by a table in my database. So when the user wants to access this image, it'll ask the database for the GUID and then retrieve the corresponding file from the web server.
Could anyone give me any opinion about the advantages/disadvantage of each method?
I have SQL Server 2000, and I've been told that storing images or large clunks of data into your database is inefficient. Is this true?
I have some user uploaded custom images that I would like to display on a personalised website and I have two ways to store it.
(1) just in a table in my database
(2) in a file on a directory on my web server. This file is named after a GUID which is referenced by a table in my database. So when the user wants to access this image, it'll ask the database for the GUID and then retrieve the corresponding file from the web server.
Could anyone give me any opinion about the advantages/disadvantage of each method?