Numeric field overflow

G

Guest

I've overlayed a fixed length (width of columns) report and linked it as a
Table (the report is actually a download to TXT). When I Query this I
receive an error: "Numeric field overflow".

I noticed another posted question on "Numeric field overflow", but I've
used both IS NULL and IS NOT NULL (which was answer on posting). I still
receive the errors.

I'm pulling off 4 columns: 2 Text, 1 Long Integer and 1 Double. I'm
Qualifying 1 Text & Long Integer as IS NOT NULL and the other Text as IS
NULL, not Qualifying the Double field.

I've checked to make sure my fields are wide enough, but that shouldn't be a
problem since the fixed length overlay should control the fileds of data.

What does this error point to as the problem?

Thanks, Steve
 
D

Douglas J Steele

You say this is coming from a text file. Are you certain that the values in
the Long Integer field are valid? They must be between -2,147,483,648 and
2,147,483,647.

Doubles can be between -1.79769313486232E308 and -4.94065645841247E-324 for
negative values, or between 4.94065645841247E-324 and 1.79769313486232E308
for positive values, so I doubt that's the problem...
 

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

Similar Threads


Top