Question : Kick out all the users from Access

I have an Access db on a shared drive and it is impossible to do any maintenance because users are always logged in.

Is there a way kick evrybody out with vba?

Answer : Kick out all the users from Access

1:
2:
3:
4:
5:
6:
delete 
from tblBusinessListings
where businessID not in 
(select min(businessID)
from tblBusinessListings
group by businessName, [business ZipCode])
Random Solutions  
 
programming4us programming4us