Reputation: 35
I am try to migrate from access 2003 to 2016 When I am importing my objects everything is fine. Only,on the process of importing 3 tables, I am getting this error.
System resource exceeded
They are big tables too. There is no hotfix for access 2016, Total table quantity around 100 tables If you help me I really appreciate
Upvotes: 3
Views: 12581
Reputation: 31
Found solution here: https://answers.microsoft.com/en-us/msoffice/forum/all/ms-access-2016-system-resource-exceeded/df80f64a-f233-467e-89df-f05a8d58bc77
In short:
task manager/processes tab, find msaccess
, right click and select set affinity.... option. I had 6 CPUs ticked (0 to 5). I un-ticked them all and just ticked the 0 CPU.
Upvotes: 3
Reputation: 933
Since currently there is no hot fix for 2016 version you have to merge either to 2010 or 2013. Then you can try merging to 2016.
Please check this link:
Upvotes: 1
Reputation: 1621
Not sure if this will help you, but I've managed to resolve this error by wrapping fields referenced in the WHERE clause with Nz
e.g.
instead of
WHERE ReportDate = Date
use
WHERE Nz(ReportDate,ReportDate) = Date
It's strange but it seems to work for me, I've found the issue is often related to indexed fields, so I always add it to those fields first
Upvotes: 1