dumping specific tables
|
|||
|
Rank: ? (49)
Member #: 15507 |
Hi everyone,
Hope someone could help me with this. How do I dump (to a .sql file) certain tables only from a database with lots of tables using mySQL command line? Thanks... |
||
|
|||
|
|||
|
Rank: ? (2172)
Member #: 11609 |
You cannot dump tables using the 'mysql' binary. You must use 'mysqldump'.
Code:
Example: mysqldump -h mydbserver.com -u root -p dbName table1 table2...
A guy gets on a bus and starts threatening everybody: "I'll integrate you! I'll differentiate you!!!" So everybody gets scared and runs away. Only one person stays. The guy comes up to him and says: "Aren't you scared, I'll integrate you, I'll differentiate you!!!" And the other guy says: "No, I am not scared, I am e to the power of x."
|
||
|
Please login or register to post a reply.