AOB
Registered User.
- Local time
- Today, 05:34
- Joined
- Sep 26, 2012
- Messages
- 617
Hi there,
I have an Access DB which has been in production for several years. This morning, users reported issues loading it up and running any of the functionality. It appears that recordsets which were previously used for data manipulation, are no longer updatable (??)
These recordsets abide by the rules for updatability - the first one that fails is driven by a very simple select, i.e. :
But as soon as the recordset is loaded, if I debug and check the attributes, the Updatable flag is set to False (??)
Never been an issue before - like I say, this DB has been in play for a number of years - and no recent development changes so the code is as it has been all along.
Suggesting this may be a result of a patch by Microsoft?
KB4484119 springs to mind : https://support.office.com/en-gb/article/access-error-query-is-corrupt-fad205a5-9fd4-49f1-be83-f21636caedec
However, I'm not getting that specific error (no mention of corruption)
Any ideas? Causing me no end of grief as a lot of people depend on my DB's!
Thanks!
AOB
I have an Access DB which has been in production for several years. This morning, users reported issues loading it up and running any of the functionality. It appears that recordsets which were previously used for data manipulation, are no longer updatable (??)
These recordsets abide by the rules for updatability - the first one that fails is driven by a very simple select, i.e. :
Code:
SELECT *
FROM tblTable
WHERE fldField = "someValue"
But as soon as the recordset is loaded, if I debug and check the attributes, the Updatable flag is set to False (??)
Never been an issue before - like I say, this DB has been in play for a number of years - and no recent development changes so the code is as it has been all along.
Suggesting this may be a result of a patch by Microsoft?
KB4484119 springs to mind : https://support.office.com/en-gb/article/access-error-query-is-corrupt-fad205a5-9fd4-49f1-be83-f21636caedec
However, I'm not getting that specific error (no mention of corruption)
Any ideas? Causing me no end of grief as a lot of people depend on my DB's!
Thanks!
AOB