I'm not extremely familiar with mySQL. I use it simply to store and retrieve records. That's it, so any help would be greatly appreciated.
I need to transfer the data from one DB to a DB on another server. The problem is that the DB sql dump file is much greater than the max post size allowed for PHP on the second server. I was thinking of simply setting up a PHP script that would go through all the records - read from server A and write to server B, but I realise that I will probably get a time-out on a large transfer (one of the tables is over 16M😎.
Since I don't have access to the php.ini (or any other configuration files, for that matter), what is the best approach to get the database copied?
Thanks!
Cameron