I have a DB server and it has a table of 90 GB. Now I want to take a back up of that table. But DB is almost full and I cannot take back up into the same server.
Is there any way of taking backup using mysqldump -u username -ppassword dbname tablename > different_server_location
I used to do it on same server these days.
example:
mysqldump -u username -ppassword dbname tablename > /tmp/file_name
Since there is NO space available on DB server, how can I take backup of a table which is 90 GB!
and can I take backup of a file in few pieces. I mean 10 GB at once and so on ?