Update Query

C

ChrisRel

Hi

I;m trying to update the fields in a table using a Query
from Access 2002

I have this message:
The field too small to accept the amount of data you
attempt to add. Try inserting or pasting less Data

Any help please about this message what this mean

Thanks
 
R

Rick Brandt

ChrisRel said:
Hi

I;m trying to update the fields in a table using a Query
from Access 2002

I have this message:
The field too small to accept the amount of data you
attempt to add. Try inserting or pasting less Data

Any help please about this message what this mean

It means pretty much exactly what it says. Examples would be...

Trying to put a number larger than 255 in a byte field.
Trying to put a number larger than 32767 in an integer field.
Trying to put the string "123456789" into a text field less than 9
characters wide.

Look in help at the FieldSize topic and you will see the ranges of values
allowed for the various DataTypes. Your query is obviously attempting to
insert a value that won't fit somewhere.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top