I have a table featureData
in Access that has ~1.8 million rows. I have another table idNumbers
that has ~7000 rows. I want to delete records from featureData
using the following query:
delete from featuredata where stationId in (select id from previousStationId)
This query is very slow (I started running it an hour ago and the progress bar is still less than halfway complete). Note that stationId
is an indexed field, but it's slow even when I change its index setting to "No". Is there way I can speed this up?