Showing posts with label images. Show all posts
Showing posts with label images. Show all posts

Wednesday, March 7, 2012

How to store images in sql server 2005? Urgent Please....

Hi Every 1

Please tel me How to store images in Sql Server2005?

please send me a solution.

Thanks in advance..

I don't know anything about this but since you seemed in a hurry and no one has responded...have you checked the following pages? It may have the information you need...if no - sorry for wasting your time.

http://www.eggheadcafe.com/articles/20030624.asp

http://www.codeproject.com/aspnet/PicManager.asp

-hth-

Smitha

|||

Hi,

You can find the solution at

http://chiragrdarji.wordpress.com/2007/03/05/storing-and-retrieving-image-in-sql-server/

If you want I can explain you in detail.

How to store images in sql server 2005? Urgent Please....

Hi Every 1

Please tel me How to store images in Sql Server2005?

please send me a solution.

Thanks in advance..

I don't know anything about this but since you seemed in a hurry and no one has responded...have you checked the following pages? It may have the information you need...if no - sorry for wasting your time.

http://www.eggheadcafe.com/articles/20030624.asp

http://www.codeproject.com/aspnet/PicManager.asp

-hth-

Smitha

|||

Hi,

You can find the solution at

http://chiragrdarji.wordpress.com/2007/03/05/storing-and-retrieving-image-in-sql-server/

If you want I can explain you in detail.

How To Store Images in a database table

Hello All,

My question is how to store images in a database table (in SQL Server), and how to retrieve them?...

Thanks,

Hi,

please take a look at this article:Storing Binary Files Directly in the Database Using ASP.NET 2.0.

Grz, Kris.

|||Thanks, I read the article...

How to store Images

Hey. I just wanted to know what the best way of storing images is- scores of
quite large jpegs. Are there any best practices I should know about?
Thanks
Cheers
Justin DutoitMachealth wrote:
> Hey. I just wanted to know what the best way of storing images is-
> scores of quite large jpegs. Are there any best practices I should
> know about?
> Thanks
> Cheers
> Justin Dutoit
Many advocate storing the images on disk and just storing a pointer to
the file in the SQL Server database. If you _must_ store in the
database, then you may want to place the table or just the image column
from the table on it's own filegroup (on a different set of drives).
David Gugick
Imceda Software
www.imceda.com|||Justin,
It all depends on the system and what the JPEG mean within the system. If
the file is an attribute of the data, then I advocate storing it in the
database.
The downside to storing files on disk with a pointer in the database:
> No referential integrity
> Filenames must be unique (this means you need to rename files as they
come in to something like 24_OriginalFileName.jpg where 24 is your Pointer ID)d">
> Portability & Backup Headaches
> Write file permissions required on special folder
But as David said, if your images are expected to be quite large, use a
different filestore for the table.
-- Alex Papadimoulis
"Machealth" wrote:

> Hey. I just wanted to know what the best way of storing images is- scores
of
> quite large jpegs. Are there any best practices I should know about?
> Thanks
> Cheers
> Justin Dutoit
>
>|||www.aspfaq.com/show.asp?id=2149