Error message - "Record is too large."

R

Randal

I am trying to import a VFP table and receive the error message "Record is
too large." I can link to the table, but when I try to use a make table
query I still get the message. I have tried to exclude an "memo" fields,
but still get the error. Any help is appreciated.
 
J

Joe Fallon

There may a difference in the number of fields and their size between what
Access allows and Foxpro allows.

Can you run a Make Table query off *some* of the fields in the table?
Just not *all* of the fields?

Are there over 255 fields?
 
R

Randal

249 fields. I suspect that one of the fields has more data than Access
allows, and would be happy to remove it from the query if I knew how to find
it?
 
J

Joe Fallon

It may not be any *one* field that is too large.
The combination exceeds Access ability to store the record.
249 fields in a single table is rather high for a relational database.

Check Help to see what Access can store in a single record.
(Number of fields is 255, but what about # of bytes?)

Use 2 make table queries and send 1/2 the fields to each table
(and the PK to both.)
Then in Access you should be able to re-link on the PK and query both
tables.
 
R

Randal

it works. Thanks.
Joe Fallon said:
It may not be any *one* field that is too large.
The combination exceeds Access ability to store the record.
249 fields in a single table is rather high for a relational database.

Check Help to see what Access can store in a single record.
(Number of fields is 255, but what about # of bytes?)

Use 2 make table queries and send 1/2 the fields to each table
(and the PK to both.)
Then in Access you should be able to re-link on the PK and query both
tables.
 

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