473,785 Members | 2,916 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Memo Fields In Multiuser Database

I've been asked to construct a database which will require several
memo fields. This database will be the standard frontend/backend mdb
configuration. I have read many posts describing the corruption
problems associated with memo fields, especially in a networked
environment. Am I asking for trouble if I go ahead with this project?
Nov 5 '08 #1
4 5668
No, you should be fine.

There was a problem with corrupting memos back in the early days of Access
97, but it was fixed in a service pack.

What you do need to do is ensure that all workstations use good, stable
network connections, not flakey ones (such as WiFi). For more details, see:
Preventing Corruption - Techniques to avoid corruption
at:
http://allenbrowne.com/ser-25.html

--
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.
"Wayne" <cq*******@volc anomail.comwrot e in message
news:49******** *************** ***********@i24 g2000prf.google groups.com...
I've been asked to construct a database which will require several
memo fields. This database will be the standard frontend/backend mdb
configuration. I have read many posts describing the corruption
problems associated with memo fields, especially in a networked
environment. Am I asking for trouble if I go ahead with this project?
Nov 5 '08 #2
On Nov 5, 7:58*pm, "Allen Browne" <AllenBro...@Se eSig.Invalidwro te:
No, you should be fine.

There was a problem with corrupting memos back in the early days of Access
97, but it was fixed in a service pack.

What you do need to do is ensure that all workstations use good, stable
network connections, not flakey ones (such as WiFi). For more details, see:
* * Preventing Corruption - Techniques to avoid corruption
at:
* *http://allenbrowne.com/ser-25.html
Thanks Allen. I've also read in this group that the memo fields can
be stored in a separate table as a precaution, but that is probably
also referring to earlier versions when memo field corruption was more
of a problem.
Nov 5 '08 #3
Wayne <cq*******@volc anomail.comwrot e in
news:49******** *************** ***********@i24 g2000prf.google groups.co
m:
I've been asked to construct a database which will require several
memo fields. This database will be the standard frontend/backend
mdb configuration. I have read many posts describing the
corruption problems associated with memo fields, especially in a
networked environment. Am I asking for trouble if I go ahead with
this project?
You might want to try one of three approaches (or a combination of
them):

1. store your memos in a separate table, with a 1:1 join between
your memo table and your table for the rest of your data. If a memo
pointer gets corrupted, you won't lose any data in the main table.

2. store your memos in a separate table, 1:N, where each record in
the memo table has a memo type (assuming you have more than one memo
field).

3. edit your memos with unbound controls. To do this, you read the
memo value from the form's recordset into an unbound textbox in the
form's OnCurrent event, and then save edits to the textbox back to
the underlying recordset in the textbox control's AfterUpdate event.

Those are the steps that can be taken to minimize the possibility of
memo corruption, and I think they work pretty well.

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
Nov 6 '08 #4
Wayne <cq*******@volc anomail.comwrot e in
news:e2******** *************** ***********@s1g 2000prg.googleg roups.com
:
On Nov 5, 7:58*pm, "Allen Browne" <AllenBro...@Se eSig.Invalid>
wrote:
>No, you should be fine.

There was a problem with corrupting memos back in the early days
of Acces
s
>97, but it was fixed in a service pack.

What you do need to do is ensure that all workstations use good,
stable network connections, not flakey ones (such as WiFi). For
more details, se
e:
>* * Preventing Corruption - Techniques to avoid corruption
at:
* *http://allenbrowne.com/ser-25.html

Thanks Allen. I've also read in this group that the memo fields
can be stored in a separate table as a precaution, but that is
probably also referring to earlier versions when memo field
corruption was more of a problem.
I don't know why Allen suggests that memo fields are safe. They may
be *safer* than they were in A97 without service packs, but they are
still not completely safe -- they are still more vulnerable to data
loss in Jet 4 than any other kind of data field. But they danger can
truly be minimized by implementing the approaches I outlined in my
reply to your original post.

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
Nov 6 '08 #5

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

Similar topics

2
4721
by: Jeremy | last post by:
I have a pretty straightforward database that is designed to record free-form information about products (date, source and a memo field). This is searched and updated via a form. For new records, the memo field is usually filled by cutting and pasting from e-mails, web content and spreadsheets. The only problem is that some of the memos can be just a few words, and some can be tens or hundreds of lines, and I've realised that zooming...
1
1687
by: RR | last post by:
Is there a way to combine text fields into one memo field? This is an existing database. Some people in the database may have several "contact" entries where they have a "note" in a text field. I would like to figure a way to combine all the "note" fields for each person into one memo field. Thank you
0
1755
by: htmlgeek | last post by:
I'm adding and updating records in an Access .mdb via WWW .asp page. Authored in Dreamweaver 2004 MX. Help is welcome on this one. I have a great set of pages that work fine, but it seems that insert or update pages don't always work now on some records . . . It seems that when lots of text is shoved into a memo fields the database ID for that record gets messed up. Intial record insertion goes OK, but updating is then hosed.
1
1888
by: Remco Groot Beumer | last post by:
Hello, In an Access 97 database, there is a table that has some Memo-fields. Some of the memo-fields (not all) with a lot of text in it, display the data blurred all over each other (two textlines are written over each other at the same time). These memo-fields become unreadable by this. Does anyone know how to solve this?
16
4886
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 is a VBA function which demonstrates the problem. Thanks -Mark
9
5740
by: RMC | last post by:
Hello, I'm looking for a way to parse/format a memo field within a report. The Access 2000 database (application) has an equipment table that holds a memo field. Within the report, the memo field is printed within the detailed area. The problem is, the apllication is not setup properly, thus the users are entering data within the memo field as: location1 1/1/2005 1/1/2006
4
3609
by: kaplan.gillian | last post by:
Hi everyone, I currently have an Access database that includes quite a few long memo fields. When I create a report of my data, Access does not allow the memo fields to be split with the page breaks. In other words, if my memo field is 3 paragraphs long and there is only space on a report page for 2 paragraphs, rather than putting 2 paragraphs on one page and the last one on the next page, all 3 paragraphs are moved to the next page...
10
3059
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 records in QuotesHdr, should I break out the memo fields into a separate table? The thinking here is that, for Quotes selection dropdowns that display all entries in QuotesHdr for selection, I would think that the entire record comes down over...
2
4770
by: steph | last post by:
I have a table with 250 fields. Of course you are wondering why 250 fields... what could I possibly be storing in so many fields? I am using this table as a general import table for files that vary based on user selections. The input files are CSVs and can number from 2 to 175 columns. Each field is usually able to fit into a Text field (< 255 characters) but every now and then a longer field creeps in. since I don't know in which column...
0
9645
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9480
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10330
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10153
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10093
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7500
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6740
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5511
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4053
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 we have to send another system

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.