D
Don
Hi -
I want to establish a car registry with just enough exceptions to create
problems. The VIN field can be "unique" -- almost.
VINs are generally 1 to 4 digit numbers, to be reported out in numerical
order, but with some duplicates, that can be made unique with trailing alpha
characters.
Here are some VINs
unk101 -- (this is the 101st car found with an unknown original vin)
101
125
254
1254
1254Replicar
These would all be different cars
In my one (car) to many (owners, past and present), I would search for 1254,
but need be able to see that there are TWO 1254 cars, from which I would have
to chose the one to work with.
Should I use a single TEXT field as my VIN and deal with the sorting issues?
That is, I can ( but would rather not) add a leading zero to my 3 digit vins,
and then strip it out in reports. Or should I try two fields that combined
become "unique" - 80% of the VINS are not duplicated.
While there likely are several ways to get the job done, I am looking for
the one with the least issues later on in adding cars and owners and
reporting sorted lists in the right order.
Thanks in advance for any thoughts. Don
I want to establish a car registry with just enough exceptions to create
problems. The VIN field can be "unique" -- almost.
VINs are generally 1 to 4 digit numbers, to be reported out in numerical
order, but with some duplicates, that can be made unique with trailing alpha
characters.
Here are some VINs
unk101 -- (this is the 101st car found with an unknown original vin)
101
125
254
1254
1254Replicar
These would all be different cars
In my one (car) to many (owners, past and present), I would search for 1254,
but need be able to see that there are TWO 1254 cars, from which I would have
to chose the one to work with.
Should I use a single TEXT field as my VIN and deal with the sorting issues?
That is, I can ( but would rather not) add a leading zero to my 3 digit vins,
and then strip it out in reports. Or should I try two fields that combined
become "unique" - 80% of the VINS are not duplicated.
While there likely are several ways to get the job done, I am looking for
the one with the least issues later on in adding cars and owners and
reporting sorted lists in the right order.
Thanks in advance for any thoughts. Don