D
d9pierce
Hi all,
I have many tables that are linked. I am trying to create a UID number
(UniqueID) becides the autonumber ID Primary Key!
I created an update Query to perform the following:
Update Query
Field: Expr1: CompanyUID
Table: Company
Update To: "111" &[CompanyID]
This produces the result Below on my table "Company"!
ID UID
1 1111
2 1112
3 1113
And so on.
Both are indexed YES (No Dups) and ID is Primary Key
Well, when applying this to my form after update event, DoCmd...
when I edit a record, it slows down the process something fierce! I am
sure it is searching through 23,000 records each time I edit or add a
record.
Is there a way I can do this without slowing down my db? I only need
this to update a new record when added. Maybe there is something else
that will do this function automatically?
I am not real familiar with these types of functions and how to make
them work smoothly!
I would really apriociate any suggestions and of course, examples are
so wonderful!
Thanks so mcuh,
Dave
I have many tables that are linked. I am trying to create a UID number
(UniqueID) becides the autonumber ID Primary Key!
I created an update Query to perform the following:
Update Query
Field: Expr1: CompanyUID
Table: Company
Update To: "111" &[CompanyID]
This produces the result Below on my table "Company"!
ID UID
1 1111
2 1112
3 1113
And so on.
Both are indexed YES (No Dups) and ID is Primary Key
Well, when applying this to my form after update event, DoCmd...
when I edit a record, it slows down the process something fierce! I am
sure it is searching through 23,000 records each time I edit or add a
record.
Is there a way I can do this without slowing down my db? I only need
this to update a new record when added. Maybe there is something else
that will do this function automatically?
I am not real familiar with these types of functions and how to make
them work smoothly!
I would really apriociate any suggestions and of course, examples are
so wonderful!
Thanks so mcuh,
Dave