append to new table - autonumber field

S

smboyd

I have exceed the number of rows I can have in my design of a table. The
first field is an autonumber field that give the user a new job # once the
job info is entered. If I split the tables, what is the best way to join
them for queries. I have tried this before with no success.
 
S

smboyd

It gives me the error too many fields defined

Lynn Trapp said:
What do you mean you have exceeded the number of rows? There is no maximum
number of rows in an Access database. Do you mean you have exceeded the
maximum file size? If so, there may be any number of causes for that other
than the number of rows.

--
Lynn Trapp
MS Access MVP
www.ltcomputerdesigns.com
Access Security: www.ltcomputerdesigns.com/Security.htm
Jeff Conrad's Access Junkie List:
http://home.bendbroadband.com/conradsystems/accessjunkie.html
 
L

Lynn Trapp

Ah, then you have exceeded the number of columns, not rows. The maximum
number of columns is 256. What that suggests to me is that your table is not
normalized. If you need a table with more than 60 columns (or even fewer
than that) there is definitely some problem with your design. I would say
the first thing to look at is repeating fields. These might appear in a
Persons table where someone is trying to store the names of the person's
children and using fields like Child1, Child2, Child3,...ChildN. You would
break that out into 2 tables like this:

tblPersons
PersonID (PK)
LName
FName,
Address
----other fields specific to a person

tblChildren
ChildID (PK)
PersonID (FK)
ChildName
-----other fields specific to a child

These 2 tables would be related by PersonID. Can you post more information
about your table?

--
Lynn Trapp
MS Access MVP
www.ltcomputerdesigns.com
Access Security: www.ltcomputerdesigns.com/Security.htm
Jeff Conrad's Access Junkie List:
http://home.bendbroadband.com/conradsystems/accessjunkie.html
 
Top