I need to delete about 2 million rows from my PG database. I have a list of the IDs that I need to delete, however any way I try to do this is taking days.
I tried putting them in a table and doing it in batches of 100. However 4 days later, this is still running with only 297268 rows deleted (I had to select 100 id's from an ID table, delete where IN that list, delete from ids table the 100 I selected).
I tried doing DELETE FROM tbl WHERE id IN (select * from ids) and that also is taking forever (hard to gauge how long, since I can't see its progress till done, but 2 days later the query was still running.
Just kind of looking for the most effective way to delete from a table when I know the specific ID's to delete, and there are millions of IDs.