Hi Guys.
We uploaded 18,000 names to the customer blacklist by mistake. We have 2.3 million subscribers so that is really a small number in comparison.
I have been trying to delete those names (I use the word "names" for email addresses...habit from 30 years in the direct mail business...long before email was invented) from the blacklist as well as setting the status back to "confirmed" for the corresponding emails in all-subscribers.
A couple questions related to this. Is there a way to do that from the dashboard?
1. Is there a way to look at settings and see if and when subscribers marked as blacklisted are removed from the mailing lists?
In lieu of that I have been trying to run sql scripts in phpmyadmin to delete the names from the blacklists. The scripts I am running finish in 2 seconds on our sql server. But this takes 29 minutes on the MW tables and responds that 0 records were affected.
delete from mw_customer_email_blacklist where email in (SELECT email from blacklist_remove);
When I use an inner join to accomplish the same thing it also takes a very long time.
There are only 122,000 names in the blacklist and 18000 in the blacklist_remove table.
Tiny by most database standards.
I hesitate to use the same query to change the status on our 2.3 million mw_list_subscriber.
Must I take the MW app offline to run these? Are the tables locked up maybe?
Any help would be appreciated.
Thanks
We uploaded 18,000 names to the customer blacklist by mistake. We have 2.3 million subscribers so that is really a small number in comparison.
I have been trying to delete those names (I use the word "names" for email addresses...habit from 30 years in the direct mail business...long before email was invented) from the blacklist as well as setting the status back to "confirmed" for the corresponding emails in all-subscribers.
A couple questions related to this. Is there a way to do that from the dashboard?
1. Is there a way to look at settings and see if and when subscribers marked as blacklisted are removed from the mailing lists?
In lieu of that I have been trying to run sql scripts in phpmyadmin to delete the names from the blacklists. The scripts I am running finish in 2 seconds on our sql server. But this takes 29 minutes on the MW tables and responds that 0 records were affected.
delete from mw_customer_email_blacklist where email in (SELECT email from blacklist_remove);
When I use an inner join to accomplish the same thing it also takes a very long time.
There are only 122,000 names in the blacklist and 18000 in the blacklist_remove table.
Tiny by most database standards.
I hesitate to use the same query to change the status on our 2.3 million mw_list_subscriber.
Must I take the MW app offline to run these? Are the tables locked up maybe?
Any help would be appreciated.
Thanks