Numeric Field Overflow

G

Guest

I keep receiving the error "Numeric Field Overflow" I understand that this
means that one of the columns contain data that exceeds the maximum of the
field. Does anyone know how to determine which filed is causing the problem
I have over 100 fields of data of which all are either TEXT or DOUBLE INT.
 
J

John Vinson

I keep receiving the error "Numeric Field Overflow" I understand that this
means that one of the columns contain data that exceeds the maximum of the
field. Does anyone know how to determine which filed is causing the problem
I have over 100 fields of data of which all are either TEXT or DOUBLE INT.

Well, it's got to be an INT field - might you be trying to store a
ten-digit number in a LONG INT? They're limited to 2 billion odd.

If you have 100 fields in your table - you almost surely need to
normalize your table structure. Or are you importing from a wide-flat
datasource into normalized tables? If so, maybe you can link to the
datasource and use Append queries to migrate the data - this will give
you a chance to go field by field and identify the culprit.

John W. Vinson[MVP]
 

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