max row size

  • Thread starter Thread starter mcnewsxp
  • Start date Start date
A row in a table is a record. A record may have a maximum of 255 fields,
although if you are anywhere near that you may want to have another look at
your table design. The maximum field size depends on the data type you
select in table design view, and on the choices you make within that
framework. For instance, the default limit for a text field may be 50
characters, but you can have up to 255. See
Microsoft Access Specification in Help for more information.
 
what is the max row size for access 2003?
tia,
mcnewsxp

The most critical limitation is not the 255 fields (as noted
elsethread, no relational table should ever need anywhere near that
many fields) but the 2000 characters per record limit. If you have
(say) ten 255-byte Text fields, Access will let you create the table
and add data - but the moment a user tries to fill all ten fields to
their limit, they'll get an error.

Memo fields (which have their own limitations) aren't subject to this
limit; each memo adds 16 bytes to the 2000 count, regardless of the
size of its content.

John W. Vinson[MVP]
 
Back
Top