A family of Microsoft relational database management systems designed for ease of use.
In my department we run 2 tools. One is a multi-user tool with a shared backend on a network drive and we have issues as described. Advancing to build 13801.21092 later today to see if that fixes the issue.Another is a tool that runs locally on PC hard drive with only 1 user. Even here we are affected - it is extremely slow. Have confirmed that rolling back from 16.0.13801.21072 to 16.0.13801.21050 solves the issue. I have logging in place and a loop like this is much slower. Fingers crossed that 21092 will solve this as well.
set rs = CurrentDb.OpenRecordset(name:="LocalDBTable", Type:=RecordsetTypeEnum.dbOpenDynaset)
For each bla in blaCollection.items 'count = 400 items
With rs
.AddNew
!FieldA = bla.aNewValue
'....
!FieldZ = bla.zNewValue
.Update
End With
Next bla
rs.Close
set rs = nothing