473,396 Members | 1,998 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

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 5631
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*******@volcanomail.comwrote in message
news:49**********************************@i24g2000 prf.googlegroups.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...@SeeSig.Invalidwrote:
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*******@volcanomail.comwrote in
news:49**********************************@i24g2000 prf.googlegroups.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*******@volcanomail.comwrote in
news:e2**********************************@s1g2000p rg.googlegroups.com
:
On Nov 5, 7:58*pm, "Allen Browne" <AllenBro...@SeeSig.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
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,...
1
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. ...
0
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...
1
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...
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...
9
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...
4
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...
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...
2
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...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
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
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,...

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.