Reputation: 23187
Is it possible for an access database to become corrupted if it is only hit with select queries? One of our databases got corrupted seemingly out of the blue. Is this possible?
Upvotes: 0
Views: 63
Reputation: 425278
I would have to say "no", because technically "corrupted" means "the data is inconsistent", which can only happen if it has changed (due to update).
However, you can get earlier disk failure due to excessive reading of the data from disk, so your database get still "die" due to that.
Upvotes: 2