A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Database Design
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

2GB limit - Will it be true for a db with large number of images?



 
 
Thread Tools Display Modes
  #1  
Old August 24th, 2006, 05:38 PM posted to microsoft.public.access.tablesdbdesign
RRKEM via AccessMonster.com
external usenet poster
 
Posts: 1
Default 2GB limit - Will it be true for a db with large number of images?

Just a thought. If 2GB is the "upper limit " for Access db, it would appear
that this is beacuse at this size , there would be millions of records that
may overwhelm the Jet database engine. On the other hand, when images are
embedded in the record ( we will not dicuss the pros and cons of this), the
actual number of records may just be 10,000 - 20,000 by the time the 2GB
limit is reached. Will Acess still fail in the same way as while handling
millions of records at 2 GB? Food for thought or...?

--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...esign/200608/1

  #2  
Old August 24th, 2006, 05:51 PM posted to microsoft.public.access.tablesdbdesign
Allen Browne
external usenet poster
 
Posts: 11,706
Default 2GB limit - Will it be true for a db with large number of images?

Yes, it is completely impractical to store many images in an OLE Object
field in an Access database.

In Access 2007 this issue will be significantly improved, i.e. the database
will store the compressed image instead of converting it into an
uncompressed bitmap. The issue will still be there, but not as quickly as
with current versions.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"RRKEM via AccessMonster.com" u25639@uwe wrote in message
news:65415ea2b22c2@uwe...
Just a thought. If 2GB is the "upper limit " for Access db, it would
appear
that this is beacuse at this size , there would be millions of records
that
may overwhelm the Jet database engine. On the other hand, when images are
embedded in the record ( we will not dicuss the pros and cons of this),
the
actual number of records may just be 10,000 - 20,000 by the time the 2GB
limit is reached. Will Acess still fail in the same way as while handling
millions of records at 2 GB? Food for thought or...?



  #3  
Old August 24th, 2006, 06:59 PM posted to microsoft.public.access.tablesdbdesign
Jerry Whittle
external usenet poster
 
Posts: 4,732
Default 2GB limit - Will it be true for a db with large number of imag

Thanks for the info on A07 and compressing images. Very nice indeed.
--
Jerry Whittle
Light. Strong. Cheap. Pick two. Keith Bontrager - Bicycle Builder.


"Allen Browne" wrote:

Yes, it is completely impractical to store many images in an OLE Object
field in an Access database.

In Access 2007 this issue will be significantly improved, i.e. the database
will store the compressed image instead of converting it into an
uncompressed bitmap. The issue will still be there, but not as quickly as
with current versions.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"RRKEM via AccessMonster.com" u25639@uwe wrote in message
news:65415ea2b22c2@uwe...
Just a thought. If 2GB is the "upper limit " for Access db, it would
appear
that this is beacuse at this size , there would be millions of records
that
may overwhelm the Jet database engine. On the other hand, when images are
embedded in the record ( we will not dicuss the pros and cons of this),
the
actual number of records may just be 10,000 - 20,000 by the time the 2GB
limit is reached. Will Acess still fail in the same way as while handling
millions of records at 2 GB? Food for thought or...?




  #4  
Old August 24th, 2006, 07:41 PM posted to microsoft.public.access.tablesdbdesign
bob
external usenet poster
 
Posts: 34
Default 2GB limit - Will it be true for a db with large number of images?


Using the current OLE Embedding approach with it’s stupendous overhead it often only takes a few hundred
images to hit the 2GB limit, but as you point out, it’s usually possible to achieve 10,000-20,000 records
with compressed images at screen resolution, provided they are stored correctly as blobs (raw/long binary).
It’s always wise not to get too close to the limit though, otherwise Access can display a range of problems,
whatever you’ve filled the database with.

--
__________________________________________________ _____
DBPix 2.0: Add pictures to Access, Easily & Efficiently
http://www.ammara.com/dbpix/access.html



"RRKEM via AccessMonster.com" u25639@uwe wrote:
Just a thought. If 2GB is the "upper limit " for Access db, it would appear
that this is beacuse at this size , there would be millions of records that
may overwhelm the Jet database engine. On the other hand, when images are
embedded in the record ( we will not dicuss the pros and cons of this), the
actual number of records may just be 10,000 - 20,000 by the time the 2GB
limit is reached. Will Acess still fail in the same way as while handling
millions of records at 2 GB? Food for thought or...?

--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...esign/200608/1


  #5  
Old August 24th, 2006, 08:40 PM posted to microsoft.public.access.tablesdbdesign
Tim Ferguson
external usenet poster
 
Posts: 142
Default 2GB limit - Will it be true for a db with large number of images?

"RRKEM via AccessMonster.com" u25639@uwe wrote in
news:65415ea2b22c2@uwe:

On the other hand, when images are
embedded in the record ( we will not dicuss the pros and cons of
this), the actual number of records may just be 10,000 - 20,000 by the
time the 2GB limit is reached.


Rather fewer than that, with OLE objects.

Just as an aside, does anyone have actual experience of using GetChunk etc
to store the real binary data in a OLE (aka BLOB) field? Should be possible
and more efficient, but I've never tried it for real.

All the best


Tim F

  #6  
Old August 24th, 2006, 09:58 PM posted to microsoft.public.access.tablesdbdesign
bob
external usenet poster
 
Posts: 34
Default 2GB limit - Will it be true for a db with large number of images?



does anyone have actual experience of using GetChunk etc
to store the real binary data in a OLE (aka BLOB) field?


Yes, lots. It generally works very well. Unlike OLE Embedding/Linking there’s essentially no overhead
(well, a few bytes due to allocation granularity, just like the file-system). If images are stored at
screen resolution (and not, for example, at full digital camera resolution) then the capacity is sufficient
for many applications - as the OP said, typically 10,000 to 20,000 images (e.g. digital photo downsampled
to 1024 x 768 at 80 JPEG Quality).

Performance can be a bit of an issue if you use the built-in Access Image Control – loading and decoding
JPEG synchronously results in a delay when scrolling through records that can range from ‘annoying’ to
‘unusable’, and this is compounded by having triple the disk I/O (read from database file, write to temporary
image file, then read into image control), but the bulk of the work is usually in the JPEG decoding process,
so this is not that much worse than using the Access Image Control with regular external image files (and
should be mitigated somewhat by disk caching). Larry Linson’s Imaging Examples include a demo of this
approach (see link below). I believe that there may also be commercial solutions available.

Larry Linson’s Imaging Sample:
http://members.tripod.com/accdevel/imaging.htm


--
__________________________________________________ _____
DBPix 2.0: Add Images to Access, Easily & Efficiently
http://www.ammara.com/dbpix/access.html




Tim Ferguson wrote:
"RRKEM via AccessMonster.com" u25639@uwe wrote in
news:65415ea2b22c2@uwe:

On the other hand, when images are
embedded in the record ( we will not dicuss the pros and cons of
this), the actual number of records may just be 10,000 - 20,000 by the
time the 2GB limit is reached.


Rather fewer than that, with OLE objects.

Just as an aside, does anyone have actual experience of using GetChunk etc
to store the real binary data in a OLE (aka BLOB) field? Should be possible
and more efficient, but I've never tried it for real.

All the best


Tim F


  #7  
Old August 24th, 2006, 09:59 PM posted to microsoft.public.access.tablesdbdesign
John Nurick
external usenet poster
 
Posts: 492
Default 2GB limit - Will it be true for a db with large number of images?

On Thu, 24 Aug 2006 12:40:28 -0700, Tim Ferguson
wrote:

Just as an aside, does anyone have actual experience of using GetChunk etc
to store the real binary data in a OLE (aka BLOB) field? Should be possible
and more efficient, but I've never tried it for real.


It's worked when I've played with it, but I haven't yet needed to use it
in an application.

--
John Nurick [Microsoft Access MVP]

Please respond in the newgroup and not by email.
  #8  
Old August 25th, 2006, 12:58 AM posted to microsoft.public.access.tablesdbdesign
Sylvain Lafontaine
external usenet poster
 
Posts: 528
Default 2GB limit - Will it be true for a db with large number of images?

I never used it personally but maybe that DBPix can help you:
http://www.ammara.com/ .

You will also find some interesting articles about Access and Images at this
location.

--
Sylvain Lafontaine, ing.
MVP - Technologies Virtual-PC
E-mail: http://cerbermail.com/?QugbLEWINF


"RRKEM via AccessMonster.com" u25639@uwe wrote in message
news:65415ea2b22c2@uwe...
Just a thought. If 2GB is the "upper limit " for Access db, it would
appear
that this is beacuse at this size , there would be millions of records
that
may overwhelm the Jet database engine. On the other hand, when images are
embedded in the record ( we will not dicuss the pros and cons of this),
the
actual number of records may just be 10,000 - 20,000 by the time the 2GB
limit is reached. Will Acess still fail in the same way as while handling
millions of records at 2 GB? Food for thought or...?

--
Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/For...esign/200608/1



  #9  
Old August 25th, 2006, 02:08 AM posted to microsoft.public.access.tablesdbdesign
Stephen Lebans
external usenet poster
 
Posts: 619
Default 2GB limit - Will it be true for a db with large number of images?

See:
http://www.lebans.com/loadsavejpeg.htm
A97LoadSaveJpeg.zip contains a database demonstrating how to use the Intel
Jpeg library with Access. Jpeg files are stored in their original compressed
state within a Binary OLE avoiding the Ole object "bloat" issue. Here is the
A2K version: A2KLoadSaveJpeg.zip

A standard Image control is used to display the contents of the field
containing the Jpeg file. The Intel DLL is used to load the contents of the
field directly into memory bypassing the need to create a temporary disk
file.

The contents of the Image control, containing any supported source Image
format, can be saved to disk as a Jpeg file.

Very large Jpeg files that could not be loaded into the standard Access
Image control directly can now be loaded through the Intel Jpeg library.
--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.



"Tim Ferguson" wrote in message
...
"RRKEM via AccessMonster.com" u25639@uwe wrote in
news:65415ea2b22c2@uwe:

On the other hand, when images are
embedded in the record ( we will not dicuss the pros and cons of
this), the actual number of records may just be 10,000 - 20,000 by the
time the 2GB limit is reached.


Rather fewer than that, with OLE objects.

Just as an aside, does anyone have actual experience of using GetChunk etc
to store the real binary data in a OLE (aka BLOB) field? Should be
possible
and more efficient, but I've never tried it for real.

All the best


Tim F



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 06:34 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.