Row/Source Type

superrob5

Registered User.
Local time
Today, 21:48
Joined
May 8, 2003
Messages
99
Duplicates

I want to know in order to have a field not be duplicated access forces it to be indexed is there a reason??


Rob
 
Last edited:
I've never investigated it, but I have also noticed that both with and without quotations seems to work for text values. For numbers, stick to without.
 
thanks
 
Bored and did some "digging"...

Create indexes for fields you sort, join, or set criteria for. You can make dramatic improvements in the speed of queries by indexing fields on both sides of joins, or by creating a relationship between those fields and indexing any field used to set criteria for the query. Finding records through the Find dialog box is also much faster when searching an indexed field.

Indexes aren't appropriate in all cases, however. Indexes add to the size of the .mdb file, reduce concurrency (the ability of more than one user to modify a page at the same time) in multiuser applications, and decrease performance when you update data in fields that are indexed, or when you add or delete records. It's a good idea to experiment to determine which fields should be indexed. Adding an index may speed up a query one second, but slow down adding a row of data by two seconds and cause locking problems. Or it may add negligible gains depending on which other fields are indexed. For example, adding an index to a PostalCode field may provide very little performance gain if a CompanyName field and LastName field in the table are already indexed. Regardless of the types of queries you create, you should only index fields that have mostly unique values.

May not answer your question completely, but it might add some insight
 

Users who are viewing this thread

Back
Top Bottom