i merged my ipb forum now i want to undo it i have a copy of the 50 thousand email addresses how can i remove them
If you can get them into a spreadsheet, you can use the concatenate command to create a list of queries to remove the addresses. Assuming they're in the A column, use something like this in the B column: =CONCATENATE("DELETE FROM mydatabase WHERE email ='",A1,"';") Then copy it into every adjacent B cell. Copy the whole B column and paste it into a sql command line window. It may be a good idea to do 5,000 - 10,000 at a time and not all 50,000 at once.
If you know the ID (your email table's primary key) of the last email address BEFORE you imported the 50k emails, then you can try to delete them like this: delete from email_table where id between x and x+50000 You should be sure what you are deleting, before executing something like this.