473,465 Members | 1,991 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Memo field not large enough


Hi and thanks,

I have a Journalist database for tracking writers from various
magazines and would like a field that could hold the text of their
articles as they are published. The Memo field would allow 65K
characters but with time even this would not provide the necessary
space.

The field need not hold graphics, although that would be nice if
possible, and I will not need to run queries against it. It is simply
to be a holding area for ongoing examples of articles they have
written.

Is this a case for an OLE field (which I have never used before)? By
embedding a Word object as a field does Access create a separate Word
document for each record or is this kept internally within the
Journalist database file?

I am running Access 2002 SP3 on XP Pro SP2.

Thanks again, Steve

Nov 13 '05 #1
4 2359
st***********@sbcglobal.net wrote:
Hi and thanks,

I have a Journalist database for tracking writers from various
magazines and would like a field that could hold the text of their
articles as they are published. The Memo field would allow 65K
characters but with time even this would not provide the necessary
space.

The field need not hold graphics, although that would be nice if
possible, and I will not need to run queries against it. It is simply
to be a holding area for ongoing examples of articles they have
written.

Is this a case for an OLE field (which I have never used before)? By
embedding a Word object as a field does Access create a separate Word
document for each record or is this kept internally within the
Journalist database file?

I am running Access 2002 SP3 on XP Pro SP2.

Thanks again, Steve


Does your DOCUMENT really need to be stored in Access? You could make
the document a HYPERLINK and open the document in whatever format it
came in...a text file, a Word Doc, a PDF.

Baring that, you could still save the doc as a text file on the network,
wherever. Then using Open...#1 you could get the file length. If the
filelen is less than 65K, store the value to the string and into a memo.
If greater than import in chunks...show in incrments of 65K. Have a
combo to list how many chunks there are and then have the user select
the chunk.

You might be better off using a Hyperlink. Then you don't need to worry
about images etc.
Nov 13 '05 #2
I would normally just cut and paste the article as plain text. The only
formatting I really need to retain is to keep the sentences in their
original paragraphs.

Nov 13 '05 #3
The Memo field's limit that you encountered is for text entry only; it will
hold much more if the information is stored from code -- see "Specification"
in Help.

You would have to load the OLE Object from code if you choose to use it as a
Binary Large Object (BLOB), because it is not a text field. There's some
example code for filling it with an image file in the examples at
http://accdevel.tripod.com.

Larry Linson
Microsoft Access MVP

<st***********@sbcglobal.net> wrote in message
news:11**********************@z14g2000cwz.googlegr oups.com...

Hi and thanks,

I have a Journalist database for tracking writers from various
magazines and would like a field that could hold the text of their
articles as they are published. The Memo field would allow 65K
characters but with time even this would not provide the necessary
space.

The field need not hold graphics, although that would be nice if
possible, and I will not need to run queries against it. It is simply
to be a holding area for ongoing examples of articles they have
written.

Is this a case for an OLE field (which I have never used before)? By
embedding a Word object as a field does Access create a separate Word
document for each record or is this kept internally within the
Journalist database file?

I am running Access 2002 SP3 on XP Pro SP2.

Thanks again, Steve

Nov 13 '05 #4
st***********@sbcglobal.net wrote in news:1125417061.302120.113330
@z14g2000cwz.googlegroups.com:
The Memo field would allow 65K
characters but with time even this would not provide the necessary
space.


There is no limit on the size of a memo field, up to the maximum for a .mdb
file of 2GB.

There is a limit on the default Access text box control, but there are lots
of ways round this. It sounds as if you could grab the text straight off
the clipboard and use AppendChunk to put it into the field. Look up help
for GetChunk and AppendChunk.

OLE fields have huge amounts of overhead (i.e. megabytes per record, iirc)
and would be a really bad way to store this kind of information.

Hope that helps.
Tim F

Nov 13 '05 #5

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

Similar topics

3
by: Alfredo Agosti | last post by:
Hi folks, I have an Access 2000 db with a memo field. Into the memo field I put text with bold attributes, URL etc etc What I need to to is converting the rich text contained into the memo...
6
by: Shyguy | last post by:
I want to create two buttons on a form. One would allow the user to Copy the contents of the current records memo field, the other would allow them to print. I set up a report based on the memo...
2
by: G.Gerard | last post by:
Hello Does anyone know how to get an entire memo field to be displayed in a combo box drop down list? Example - if the memo field contains the following : This is a test to see if
2
by: Bob Dydd | last post by:
Hi Everybody I have a Listbox that has a Memo field attached to it's 2nd column which on double click copies the memo field to another Memo Field. Forms!! = ListClassification.Column(1) My...
2
by: Kevin | last post by:
Thanks for the very quick response posting that I can use a memo datatype to store large amounts of text. I understand that I can turn on "Can Grow" for a memo type, but is there either a...
16
by: Mark | last post by:
Hello. I am attempting to use AppendChunk() to write binary data to a memo field in Access 2000. My initial call to AppendChunk() results in a data type conversion error. Any suggestions? Here...
4
by: Mark Reed | last post by:
Hi All, here is what I am trying to achieve. I have a memo field on a form which users will need to add to as and when. I do not want them to be able to edit information which already exists...
7
by: maffonso | last post by:
Hi guys, My table has a memo field. At the end of the month a run a report and I would like to concatenate the memo fields in a unique field by dept. Im thinking doing this through totals button...
10
by: ARC | last post by:
This is mainly a speed question. In this example: I have a QuotesHdr table that has a few memo fields. If these memo fields are used extensively by some users, and if their are a large number of...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
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...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
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: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...

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.