473,473 Members | 2,169 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

What's the best option?

Hi,
I need to store lots of product images. I was thinking of storing the paths
in the database but overtime it may become cumbersome as I'll be dealing with
lots of images.

I would need to display both a thumbnail and large versions. The average
size per image is 400kb and the max display is 1702 by 2542.

Would SQL Server be a good alternative?

Thanks
May 22 '07 #1
5 1533

Storing images ~inside the db will affect performance.

Most people do it for security. (your bank has an image of your check...
for example)

...

A good compromise is:

ImagePath
IPID int , Path string
101,"C:\folder1\"
102."C\folder2\"

Image
ImageID int
IPID int (fk to the above table)
RelativePath string
2001, 101 , "picture\girl.jpg"
2002,101, "pictures\boy.jpg"
3001, 102, "family\mom.jpg"
3002, 102, "family\dad.jpg"

The ImagePath gives you the ability move files, and not have to update a
million rows.

Select ip.Path + i.RelativePath as FullPathName from ImagePath ip join
Image i on ip.IPID = i.IPID

so you'd get back
C:\folder1\picture\girl.jpg
C:\folder1\pictures\boy.jpg
C:\folder2\family\mom.jpg
C:\folder2\family\dad.jpg

That's how I implement it. Esp in a big project where you have a zillion
images, the ImagePath table allows easier updating.
If you don't need security, I'd keep the files as (real) files ... and have
paths to them.

But that's me.

Its cheap (compared to pulling it out of the database) to send a url of a
file that already exists out to your client-browsers.


"Chris" <Ch***@discussions.microsoft.comwrote in message
news:E8**********************************@microsof t.com...
Hi,
I need to store lots of product images. I was thinking of storing the
paths
in the database but overtime it may become cumbersome as I'll be dealing
with
lots of images.

I would need to display both a thumbnail and large versions. The average
size per image is 400kb and the max display is 1702 by 2542.

Would SQL Server be a good alternative?

Thanks

May 22 '07 #2
See, I am dealing with tons of images. Do I then need to store these images
on our webserver?

I didn't mention this in my original question, I was also considering after
storing them in the database, I was considering creating a webservice to
handout the images as they will be used by quite a few applications
internally as well.

Thanks

"sloan" wrote:
>
Storing images ~inside the db will affect performance.

Most people do it for security. (your bank has an image of your check...
for example)

...

A good compromise is:

ImagePath
IPID int , Path string
101,"C:\folder1\"
102."C\folder2\"

Image
ImageID int
IPID int (fk to the above table)
RelativePath string
2001, 101 , "picture\girl.jpg"
2002,101, "pictures\boy.jpg"
3001, 102, "family\mom.jpg"
3002, 102, "family\dad.jpg"

The ImagePath gives you the ability move files, and not have to update a
million rows.

Select ip.Path + i.RelativePath as FullPathName from ImagePath ip join
Image i on ip.IPID = i.IPID

so you'd get back
C:\folder1\picture\girl.jpg
C:\folder1\pictures\boy.jpg
C:\folder2\family\mom.jpg
C:\folder2\family\dad.jpg

That's how I implement it. Esp in a big project where you have a zillion
images, the ImagePath table allows easier updating.
If you don't need security, I'd keep the files as (real) files ... and have
paths to them.

But that's me.

Its cheap (compared to pulling it out of the database) to send a url of a
file that already exists out to your client-browsers.


"Chris" <Ch***@discussions.microsoft.comwrote in message
news:E8**********************************@microsof t.com...
Hi,
I need to store lots of product images. I was thinking of storing the
paths
in the database but overtime it may become cumbersome as I'll be dealing
with
lots of images.

I would need to display both a thumbnail and large versions. The average
size per image is 400kb and the max display is 1702 by 2542.

Would SQL Server be a good alternative?

Thanks


May 22 '07 #3
Yes in many cases storing images in SQL Server is a good choice.
I wrote an article on the subject here:
http://SteveOrr.net/articles/EasyUploads.aspx

Since some of your images sound quite large, you may want to do some
performance testing to ensure it will meet your requirements.

--
I hope this helps,
Steve C. Orr,
MCSD, MVP, CSM, ASPInsider
http://SteveOrr.net
"Chris" <Ch***@discussions.microsoft.comwrote in message
news:E8**********************************@microsof t.com...
Hi,
I need to store lots of product images. I was thinking of storing the
paths
in the database but overtime it may become cumbersome as I'll be dealing
with
lots of images.

I would need to display both a thumbnail and large versions. The average
size per image is 400kb and the max display is 1702 by 2542.

Would SQL Server be a good alternative?

Thanks
May 23 '07 #4
Since the images are associated with products, yes, storing their paths in
the same database as the product data would be a good idea. As for the
thumbnails, you can create an HttpHandler that will open an image, create a
thumbnail, and return it to the browser. Or, you can store the thumbnails in
the same folder as the full-size images, and use a naming convention to get
them. For example:

ProductA.jpg
ProductA_thumb.jpg

This way you only have to store "ProductA.jpg" in the database, and use the
naming convention to alter the image file name for the thumbnail.

--
HTH,

Kevin Spencer
Microsoft MVP

Printing Components, Email Components,
FTP Client Classes, Enhanced Data Controls, much more.
DSI PrintManager, Miradyne Component Libraries:
http://www.miradyne.net

"Chris" <Ch***@discussions.microsoft.comwrote in message
news:E8**********************************@microsof t.com...
Hi,
I need to store lots of product images. I was thinking of storing the
paths
in the database but overtime it may become cumbersome as I'll be dealing
with
lots of images.

I would need to display both a thumbnail and large versions. The average
size per image is 400kb and the max display is 1702 by 2542.

Would SQL Server be a good alternative?

Thanks

May 23 '07 #5

If you want to "serve them up" to a client browser, then at some point the
file has to be on the webserver.

So it depends.

If you ~can just store them on the webserver, then that's the easier option.

Or , you can "copy them on demand".

See my modified example below to start out.

ImagePath
IPID int , Path string
101,"\\fileserver1\folderA\"
102."\\fileserver2\folderB\"

Image
ImageID int
IPID int (fk to the above table)
RelativePath string
2001, 101 , "picture\girl.jpg"
2002,101, "pictures\boy.jpg"
3001, 102, "family\mom.jpg"
3002, 102, "family\dad.jpg"

The ImagePath gives you the ability move files, and not have to update a
million rows.

Select ip.Path + i.RelativePath as FullPathName from ImagePath ip join
Image i on ip.IPID = i.IPID

so you'd get back
\\fileserver1\folderA\picture\girl.jpg
\\fileserver1\folderA\pictures\boy.jpg
\\fileserver2\folderB\family\mom.jpg
\\fileserver2\folderB\family\dad.jpg

So that gives you the ORIGINAL location of the files.

If someone requests the item (product in your case) that is represented by
the dad.jpg image... you can copy it on demand.

(File Copy) from
\\fileserver2\folderB\family\dad.jpg
To
( web server ) C:\inetpub\wwwroot\urlimages\

you'll have to figure out a way to have unique file names ... one way

change the filename (replace \ with _ )
fileserver2_folderB_family_dad.jpg
and you end up wiht the file:

C:\inetpub\wwwroot\urlimages\fileserver2_folderB_f amily_dad.jpg

That will end up being (as a web link)
http//www.mysite.com/urlimages/fileserver2_folderB_family_dad.jpg

The reason you want a consistent file name is so you don't unnecessarily
copy images.

the logic is

rework the fileserver filename to the localfile name
see if the local filename exists
(C:\inetpub\wwwroot\urlimages\fileserver2_folderB_ family_dad.jpg)
if it doesn't , copy it
if it does, just keep moving
rework the url so you can give the client a url that actually works (
http//www.mysite.com/urlimages/fileserver2_folderB_family_dad.jpg )

And then you have to write a cleanup service that runs at night or
something.
It depends what your goals are.

The solution above is good for a webfarm, because you don't have to keep X
number of copies of images (per web server). And you don't fill up the
harddrive with images.

But it takes a little work.

And based on what you're saying, I'd go with the solution above.
I've done this exact same thing. My company has millions of images we have
to serve up internally (intranet), and we have huge fileservers to hold just
the images.
The "copy on demand" solution works well.

And I STRONGLY recommend the
ImagePath
IPID int , Path string
101,"\\fileserver1\folderA\"
102."\\fileserver2\folderB\"

inclusion. Because eventually you'll have to move images from one file
server to another. This way you update 1 or 2 records, not thousands (or
millions) of records doing string manipulation.
Good luck.
Read the other posts about the thumbnails also. I won't repeat that
information unnecessarily.


"Chris" <Ch***@discussions.microsoft.comwrote in message
news:AF**********************************@microsof t.com...
See, I am dealing with tons of images. Do I then need to store these
images
on our webserver?

I didn't mention this in my original question, I was also considering
after
storing them in the database, I was considering creating a webservice to
handout the images as they will be used by quite a few applications
internally as well.

Thanks

"sloan" wrote:

Storing images ~inside the db will affect performance.

Most people do it for security. (your bank has an image of your
check...
for example)

...

A good compromise is:

ImagePath
IPID int , Path string
101,"C:\folder1\"
102."C\folder2\"

Image
ImageID int
IPID int (fk to the above table)
RelativePath string
2001, 101 , "picture\girl.jpg"
2002,101, "pictures\boy.jpg"
3001, 102, "family\mom.jpg"
3002, 102, "family\dad.jpg"

The ImagePath gives you the ability move files, and not have to update a
million rows.

Select ip.Path + i.RelativePath as FullPathName from ImagePath ip join
Image i on ip.IPID = i.IPID

so you'd get back
C:\folder1\picture\girl.jpg
C:\folder1\pictures\boy.jpg
C:\folder2\family\mom.jpg
C:\folder2\family\dad.jpg

That's how I implement it. Esp in a big project where you have a
zillion
images, the ImagePath table allows easier updating.
If you don't need security, I'd keep the files as (real) files ... and
have
paths to them.

But that's me.

Its cheap (compared to pulling it out of the database) to send a url of
a
file that already exists out to your client-browsers.


"Chris" <Ch***@discussions.microsoft.comwrote in message
news:E8**********************************@microsof t.com...
Hi,
I need to store lots of product images. I was thinking of storing the
paths
in the database but overtime it may become cumbersome as I'll be
dealing
with
lots of images.
>
I would need to display both a thumbnail and large versions. The
average
size per image is 400kb and the max display is 1702 by 2542.
>
Would SQL Server be a good alternative?
>
Thanks

May 23 '07 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

699
by: mike420 | last post by:
I think everyone who used Python will agree that its syntax is the best thing going for it. It is very readable and easy for everyone to learn. But, Python does not a have very good macro...
125
by: Sarah Tanembaum | last post by:
Beside its an opensource and supported by community, what's the fundamental differences between PostgreSQL and those high-price commercial database (and some are bloated such as Oracle) from...
1
by: bigbob | last post by:
Assume you have a page that has the following three drop down lists List_Of_States (Contains 50 States) List_Of_Counties (Contains a list of counties in the selected state)...
1
by: Joe Attardi | last post by:
Hi all, On a form on one of my pages I have two <select> elements, and each one is paired up with a radio button. The idea is to choose an item from one list or the other and select the radio...
98
by: tjb | last post by:
I often see code like this: /// <summary> /// Removes a node. /// </summary> /// <param name="node">The node to remove.</param> public void RemoveNode(Node node) { <...> }
4
by: Vince C. | last post by:
Hi all. I can see the standard template library has changed a lot since I begun C++ 10 years ago... Now I'm facing with outputing the members of a struct, say Option, which contains 2 members...
2
yashg
by: yashg | last post by:
I am building a data backup application in C# using Sockets. It has a server component and a client component. The client is going to upload files to the server through TCP sockets. I've got all...
184
by: jim | last post by:
In a thread about wrapping .Net applications using Thinstall and Xenocode, it was pointed out that there may be better programming languages/IDEs to use for the purpose of creating standalone,...
10
by: timor.super | last post by:
Hi all, Imagine I've an array of int : int anArray = new int; I want to extract all the integer that are superior to 500 I can do :
2
by: Stewart Robert Hinsley | last post by:
I had revised some of my web pages 1) generate content from a CSV file using PHP 2) use PHP classses for ease of maintenance. I was looking at one of the scripts yesterday, as pages using...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.