Does appending records skip indexes and constraints?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to compare the processing time for appending a record and inserting a
record, Which is faster.
I think if appending a record skips the index and db constraints then it
will be faster than inserting.

Thank you all
 
MasAccess said:
I want to compare the processing time for appending a record and inserting a
record, Which is faster.
I think if appending a record skips the index and db constraints then it
will be faster than inserting.

Appending and inserting (assuming you are talking about queries and coded
recordsets) both respect indexes. For large datasets, it is sometimes useful
to drop the indexes, do the append, and rebuild the indexes. Queries, btw,
are generally faster than adding new records via recordsets.
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top