I have a large database, and I want to dump the data after custom day, how would I do that?
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.
Use Mysqldump where
or try to export schema and data seperately for each table with below command
you will have one tablename.sql file containing each table’s schema (create table statement) and tablename.txt file containing the data in /tmp directory.
if you want a dump with schema only, add the –no-data flag: