Recently I have dumped some data from a magento theme into mysql, I want to undump or remove that from mysql database and want to restore the previous database.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
check the tables used in dump.sql after unzipping the archive file. drop the tables that were created while installing the theme.
To check which tables were created, check create table statement in your dump.sql. After that delete data from other tables which were not created by your theme.
Make sure you don’t delete the entire table, use proper where clauses. If you need any more assistance, please post your dump.sql.
PS: Though I am not too sure if SO would allow large portion of code, though try it out.