Is there a way to specify no lock when constructing a sql statement to execute on an Access DB? I have some statements causing major locking probs in a linked table.
States is a linked table from another Access DB. When this query executes it causes MANY problems by creating lots of locking records in the db that contains States. Is there an equivalent to NOLOCK that I can use to eliminate this?
Quote:
| SELECT Referrals.Auditor, Referrals.1, Referrals.2, States.State FROM Referrals INNER JOIN States on States.State = Referrals.State |
