mysqldump --single-transaction --quick --skip-lock-tables -h IP.ADDRESS.OF.OLD.SERVER -u oldServerSQLuser -pOldServerSQLpass 'W_SSS$CCC$NN$LL'>'W_SSS$CCC$NN$LL.sql'
* Old server SQL instance must allow remote connections. Change my.conf accordingly
** Replace IP address, user and password with the right ones
*** Replace SSS CCC NN LL with the SCNL format of your channels. You will have to run this command for every channel you have!.
After command execution, you will have a huge .SQL file which you have to import into your new SQL instance:
mysql -D'W_SSS$CCC$NN$LL'<'W_SSS$CCC$NN$LL.sql'
Good luck!