I was trying to update approx 20,000 records in a table by using statements like this one, however, I got the message say 0 row(s) affected so it didn\'t work.<
0 row(s) affected
I had a similar trouble. The problem are the quotations marks " I Fixed my code as follow.
UPDATE Table SET Table.Field = "myreplace" WHERE (((Table.Field) Like '%A-16%'));
Regards, Alexwin1982