R
Ray Martin
Using MS Access 2003 in 2000 mode. Small VB.Net application is inserting
reows from within a loop. Records 1 thru 113 approx are inserted very
quickly (perhaps less than 5 secs in total), but then it begins to slow down
so that by the time it's at records 200-300 it's taking almost 1 second per
insert, and taking longer and longer as each new row is added.
There is no functional difference in the code that executes the first 100
rows vs the rest - basically
For i = 1 to 300
SQL Insert a single row
next i
Are there any blocking parameters that should be set -is there some default
limit of say 100 that causes strange behaviour?
Any help or ideas would be appreciated.
reows from within a loop. Records 1 thru 113 approx are inserted very
quickly (perhaps less than 5 secs in total), but then it begins to slow down
so that by the time it's at records 200-300 it's taking almost 1 second per
insert, and taking longer and longer as each new row is added.
There is no functional difference in the code that executes the first 100
rows vs the rest - basically
For i = 1 to 300
SQL Insert a single row
next i
Are there any blocking parameters that should be set -is there some default
limit of say 100 that causes strange behaviour?
Any help or ideas would be appreciated.