473,662 Members | 2,375 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Ffield Size Problem

I have a table with 95 fields. Today I went to increase the field size on
two of the fields from 20 to 50. When I try to save it I am told that I am
trying to save too many fields. The help tells me that I am over the 255.
However there are only the 95 fields I have quoted above.

Thank you for your help,

Bill.
Nov 12 '05 #1
8 1404
Not sure why (may have to do with indexes or some such), but the bigger
question is why 95 fields on one table? Not saying this is improper design,
but I can honestly say I've not seen one instance where it was necessary.

--
Scott McDaniel
CS Computer Software
Visual Basic - Access - Sql Server - ASP
"William Bradley" <br******@magma .ca> wrote in message
news:C-*************** *****@magma.ca. ..
I have a table with 95 fields. Today I went to increase the field size on
two of the fields from 20 to 50. When I try to save it I am told that I am
trying to save too many fields. The help tells me that I am over the 255.
However there are only the 95 fields I have quoted above.

Thank you for your help,

Bill.

Nov 12 '05 #2
"William Bradley" <br******@magma .ca> wrote in message
news:C-*************** *****@magma.ca. ..
I have a table with 95 fields. Today I went to increase the field size on
two of the fields from 20 to 50. When I try to save it I am told that I am trying to save too many fields. The help tells me that I am over the 255.
However there are only the 95 fields I have quoted above.


Two possibilities. The 255 field limit is over the lifetime of the table so
if you have deleted fields in the past they still count towards the limit.
There is also a limit on the total bytes allowed in a row and you might
have exceeded that.

Properly normalized tables rarely exceed even 50 fields. 95 fields
suggests that you are "committing spreadsheet", meaning that you are
storing your data as if you were using Excel instead of using a database.
If you post your table structure you will likely get some suggestions for a
different table design that not only solves your immediate problem, but
will make the data a lot easier to work with.
--
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com
Nov 12 '05 #3

"Rick Brandt" <ri*********@ho tmail.com> wrote in message
news:br******** ***@ID-98015.news.uni-berlin.de...
"William Bradley" <br******@magma .ca> wrote in message
news:C-*************** *****@magma.ca. ..
The table in question is a generic table to cover the manufacture of a
biological products that can take a number of forms, depending on what is
used in its manufacture. In any one product, a number of the fields are
unused. I would be happy to post the table structure but how is this done?
Simply make a list of the fields?

Thank you,

Bill.
I have a table with 95 fields. Today I went to increase the field size on two of the fields from 20 to 50. When I try to save it I am told that I

am
trying to save too many fields. The help tells me that I am over the 255. However there are only the 95 fields I have quoted above.


Two possibilities. The 255 field limit is over the lifetime of the table

so if you have deleted fields in the past they still count towards the limit.
There is also a limit on the total bytes allowed in a row and you might
have exceeded that.

Properly normalized tables rarely exceed even 50 fields. 95 fields
suggests that you are "committing spreadsheet", meaning that you are
storing your data as if you were using Excel instead of using a database.
If you post your table structure you will likely get some suggestions for a different table design that not only solves your immediate problem, but
will make the data a lot easier to work with.
--
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com

Nov 12 '05 #4
As a matter if interest, some time ago i designed a database for recipies
(well actually it was industrial flavourings) That had unlimited
combinations including using 1 flavouring as a subflavouring of another.
eg a salt and vineger flavouring might have had an ingredient of potasium
cyanide (not actually) and a flavouring of salt and a flavouring of vinegar.
In turn the salt flavouring had an ingredient of 100 parts Sodium Cloride, 1
patr potassium Cloride while the vinegar was made up of 100 parts malt
vinegar, 50 parts acetic acid. Non or this is true, but you get the drift

HTH

Phil
"William Bradley" <br******@magma .ca> wrote in message
news:1L******** ************@ma gma.ca...

"Rick Brandt" <ri*********@ho tmail.com> wrote in message
news:br******** ***@ID-98015.news.uni-berlin.de...
"William Bradley" <br******@magma .ca> wrote in message
news:C-*************** *****@magma.ca. ..
The table in question is a generic table to cover the manufacture of a
biological products that can take a number of forms, depending on what is
used in its manufacture. In any one product, a number of the fields are
unused. I would be happy to post the table structure but how is this done?
Simply make a list of the fields?

Thank you,

Bill.
I have a table with 95 fields. Today I went to increase the field size on two of the fields from 20 to 50. When I try to save it I am told that
I
am
trying to save too many fields. The help tells me that I am over the 255. However there are only the 95 fields I have quoted above.


Two possibilities. The 255 field limit is over the lifetime of the table

so
if you have deleted fields in the past they still count towards the

limit. There is also a limit on the total bytes allowed in a row and you might
have exceeded that.

Properly normalized tables rarely exceed even 50 fields. 95 fields
suggests that you are "committing spreadsheet", meaning that you are
storing your data as if you were using Excel instead of using a database. If you post your table structure you will likely get some suggestions

for a
different table design that not only solves your immediate problem, but
will make the data a lot easier to work with.
--
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com


Nov 12 '05 #5
It appears that you have all of your data in one large table, so, Yes just
post your field list along with a little bit of detail about what you are
trying to accomplish with this database (i.e. "I want to track all the
vehicle maintenance procedures performed on my car") ... go into as much
detail as you wish, but remember that we probably know little about your
particular field.
--
Scott McDaniel
CS Computer Software
Visual Basic - Access - Sql Server - ASP
"William Bradley" <br******@magma .ca> wrote in message
news:1L******** ************@ma gma.ca...

"Rick Brandt" <ri*********@ho tmail.com> wrote in message
news:br******** ***@ID-98015.news.uni-berlin.de...
"William Bradley" <br******@magma .ca> wrote in message
news:C-*************** *****@magma.ca. ..
The table in question is a generic table to cover the manufacture of a
biological products that can take a number of forms, depending on what is
used in its manufacture. In any one product, a number of the fields are
unused. I would be happy to post the table structure but how is this done?
Simply make a list of the fields?

Thank you,

Bill.
I have a table with 95 fields. Today I went to increase the field size on two of the fields from 20 to 50. When I try to save it I am told that
I
am
trying to save too many fields. The help tells me that I am over the 255. However there are only the 95 fields I have quoted above.


Two possibilities. The 255 field limit is over the lifetime of the table

so
if you have deleted fields in the past they still count towards the

limit. There is also a limit on the total bytes allowed in a row and you might
have exceeded that.

Properly normalized tables rarely exceed even 50 fields. 95 fields
suggests that you are "committing spreadsheet", meaning that you are
storing your data as if you were using Excel instead of using a database. If you post your table structure you will likely get some suggestions

for a
different table design that not only solves your immediate problem, but
will make the data a lot easier to work with.
--
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com


Nov 12 '05 #6
Rick Brandt wrote:
"William Bradley" <br******@magma .ca> wrote in message Two possibilities. The 255 field limit is over the lifetime of the table
so if you have deleted fields in the past they still count towards the
limit. There is also a limit on the total bytes allowed in a row and you
might have exceeded that.


That is probably the problem as the table is old and has gone through a
number of renovations and changes. Is there a way to "clean" the table of
these old deleted fields.

Thanks,

Bill.
Nov 12 '05 #7
William Bradley <br******@magma .ca> wrote:
Two possibilities. The 255 field limit is over the lifetime of the table
so if you have deleted fields in the past they still count towards the
limit. There is also a limit on the total bytes allowed in a row and you
might have exceeded that.


That is probably the problem as the table is old and has gone through a
number of renovations and changes. Is there a way to "clean" the table of
these old deleted fields.


Compact.

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Nov 12 '05 #8
An************* ***@See.Comment .Header wrote:

Forgery

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Nov 12 '05 #9

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

Similar topics

22
2449
by: Wynand Winterbach | last post by:
I think every C programmer can relate to the frustrations that malloc allocated arrays bring. In particular, I've always found the fact that the size of an array must be stored separately to be a nightmare. There are of course many solutions, but they all end up forcing you to abandon the array syntax in favour of macros or functions. Now I have two questions - one is historical, and the other practical. 1.) Surely malloc (and...
4
3487
by: tshad | last post by:
I am having trouble with links in my DataGrid. I have Links all over my page set to smaller and they are consistant all over the page in both Mozilla and IE, except for the DataGrid. Here is a snippet from my .css file: *************************** body { margin:0; padding:0;
16
3887
by: JD | last post by:
Hi guys What's the best way to specify font size using CSS? I try to avoid absolute units like pt and px because then users can't resize the fonts in IE, but % and em are a complete pain to use IMO. I read somewhere (a W3C tip I think) that the best way is to specify a "base" size and then have all your fonts relative that, but I'm not sure how that works. TIA
27
31366
by: Deephay | last post by:
Greetings all, I have a program that used the realloc() function to change the allocated size of a buffer, the program works with some arguments, but with some other arguments, it will show me the error message like: *** glibc detected *** realloc(): invalid next size: 0x0804c3a8 *** and then I inserted a perror("realloc") to see what happend, it says that:
9
1496
by: klausklausenator | last post by:
Hi all, I have a php-generated webpage with images. My problem is: the Internet Explorer cannot calculate the correct image size. Because of this the images are not cached. So everytime a user clicks on some link all the images gets retransfered and the page loads very slow. You can check it if you right-click on an image and select properties. Is there a possibility to send the image and its actual size-information to the browser?
7
1891
by: Kai-Mikael Jää-Aro | last post by:
Here is an example HTML file: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Test!</title> </head> <body> <p>fluffier <tt>firefly</ttfisticuffs</p>
12
5820
by: NOO Recursion | last post by:
Hi everyone! I am trying to write a program that will search a 12x12 for a thing called a "blob". A blob in the grid is made up of asterisks. A blob contains at least one asterisk. If an asterisk is in a blob, an asterisk that is contiguous to it is in the same blob. If a blob has more than two asterisks, then each asterisk in the blob is contiguous to at least one other asterisk in the blob. For example this 12x12 grid has 6 blobs. ...
5
1994
by: Vibhesh | last post by:
I am facing problem with TimeSpan structure when DirectX is used. Following is the sample code that causes the problem: *************************************************************************************************************** { ........................... PrintTimeSpanProblem(); device = new Device(0, DeviceType.Hardware, this, CreateFlags.SoftwareVertexProcessing, presentParams); PrintTimeSpanProblem();
4
2943
by: liberty1 | last post by:
Hi everyone. I appreciate your effort at helping newbies like me. I have the following problems and will appreciate urgent help. PROBLEM NUMBER 1: Using PHP and MySQL, I am able to upload picture successfully unto the server but not so with the file name of the picture even though other parameters in my form got inserted successfuly in the database. I have read several posts on this topic including here on this site but I can't get around...
0
8856
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...
1
8545
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,...
0
8633
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6185
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
5653
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
4179
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 last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4347
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1992
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1747
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.