I have a big dump MySQL database (1.3 GB). How I may load dump only one table?
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.
If you have access to command-line, best do it that way if you can:
Otherwise use a gui tool like SQLyog (free community edition is available).
Using web-tools will almost definatley prove a huge pain.
To extract a single table, you’ll need to manipulate the file, here is a good perl script for it 🙂 http://blog.tsheets.com/2008/tips-tricks/extract-a-single-table-from-a-mysqldump-file.html which I’ve used successfully in the past.